私は2つのテキストビューを持つ小さなプログラムを持っています。アプリが起動すると2番目がフォーカスされ(最初のものが欲しい)、それらに何かを入力してから別の何かにフォーカスすると、入力データは表示されません-テキストビューは空白になりますが、ホバーすると再び表示されるため、実際には消えません。
これらを設定するにはどうすればよいですか?
/// これは私の 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>