我是新开发者Android。 我在哪里可以找到EditText的一个例子? 请在XML中。 我试过这个,但对我不起作用。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<EditText
android:layout_width="fill_parent"
android:layout_height="2dp"
android:id="@+id/bus"
android:hint="@string/hello_world"
android:singleLine="true"
android:inputType="textCapWords"/>
</LinearLayout>
Bye Bye