大家好,这里需要帮助。
我不明白为什么我的 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>
我是 android 的绝对菜鸟,所以请耐心等待。请指出我做错了什么。