0

我有一个带有两个文本视图的小程序,当应用程序启动时,第二个被聚焦(我想要第一个),每当我在其中输入一些内容然后聚焦其他内容时,输入数据将不会显示 - 文本视图将为空白但它并没有真正消失,因为您可以将鼠标悬停在它上面再次看到它。

我该如何设置这些东西?

/// 这是我的 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>
4

1 回答 1

0

我发现了如何设置焦点,但不是将焦点从一个 tetview 转移到另一个的问题,失去焦点的那个也设置为不可见的文本,直到它再次获得焦点。为什么是这样?

于 2012-10-07T16:29:33.560 回答