大家好,我们需要帮助。
我不明白为什么我的editText没有出现。我很困惑的是,我可以在我的日食大纲中看到editText。
以下是我的代码:
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>
我是安卓的绝对菜鸟所以请耐心等待。请指出我做错了什么。
答案 0 :(得分:4)
因为您已经在按钮中传递了android:layout_width="fill_parent"
并占据了整个屏幕宽度。要么将android:orientation="horizontal"
的{{1}}属性更改为纵向,要么将LinearLayout
更改为{{ 1}}。
答案 1 :(得分:0)
试试这个。
将LinearLayout的方向更改为“垂直”。然后它们将垂直对齐。 发生这种情况是因为您在Button中设置了layout_width =“fill_parent”,这将填充整个父级,因此不会显示您的EditText框。
答案 2 :(得分:0)
让我想一想你到底想做什么?
<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="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/buttonTESTER1"
android:layout_width="100dp"
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>
</LinearLayout>