gpt4 book ai didi

java - android - 为什么我的 editText 不显示?

转载 作者:行者123 更新时间:2023-11-29 03:43:57 25 4
gpt4 key购买 nike

大家好这里需要帮助。

我不明白为什么我的 editText 没有出现。我非常困惑的是我可以在我的 eclipse 中看到编辑文本的轮廓。

这是我的代码:

activity_main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >

<Button
android:id="@+id/buttonTESTER1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/btnTester1_text"
/>

<EditText
android:id="@+id/editTextTESTER1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="@string/editTextHINT1"
android:inputType="text"
/>

</LinearLayout>

strings.xml

<resources>

<string name="app_name">Android Tutorial</string>
<string name="hello_world">Hello world!</string>
<string name="menu_settings">Settings</string>
<string name="title_activity_main">MainActivity</string>
<string name="btnTester1_text">BUTTON TESTER</string>
<string name="editTextTester1_text">BUTTON TESTER</string>
<string name="editTextHINT1">Test</string>

</resources>

我绝对是 android 菜鸟,所以请耐心等待。请向我指出我做错了什么。

最佳答案

因为您已经在按钮中传递了 android:layout_width="fill_parent" 并且它占据了屏幕的整个宽度。要么更改 android:orientation="horizo​​ntal" LinearLayout 的属性为垂直或 android:layout_width="fill_parent"wrap_content

关于java - android - 为什么我的 editText 不显示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11895968/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com