我有一个带有两个文本视图的小程序,当应用程序启动时,第二个被聚焦(我想要第一个),每当我在其中输入一些内容然后聚焦其他内容时,输入数据将不会显示 - 文本视图将为空白但它并没有真正消失,因为您可以将鼠标悬停在它上面再次看到它。
我该如何设置这些东西?
/// 这是我的 main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<AutoCompleteTextView
android:id="@+id/artisttext"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:text="Artist.."
android:hint="Artist..">
<requestFocus />
</AutoCompleteTextView>
<AutoCompleteTextView
android:id="@+id/tracktext"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:text="Track.."
android:hint="Track.."> >
<requestFocus />
</AutoCompleteTextView>
<Button
android:id="@+id/artistEnter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Get similar artists" />
<Button
android:id="@+id/songEnter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Get similar tracks" />
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ListView>
</LinearLayout>