3

我有一个tabhost,

选项卡 A 将连接 A 活动,

A 活动的布局有一个 Edittext、按钮和一个列表视图。

listview 是从 baseadapter 定制的。列表视图包括一个文本视图,没有按钮或图像......等。

当我进入程序时,listview项是可以点击的,

它将连接B subActivity。

但是当我点击返回键时,(返回A活动)

列表视图的项目不起作用,它必须向上或向下拖动,

该项目将变为点击正确。

我搜索了一些文学作品。

我曾尝试添加

    android:focusable="false"
    android:focusableInTouchMode="false"
    android:clickable="false"

    or

    descendantFocusability="blocksDescendants"

在我的 listview 、 linearlayout 或 textview 中。

但问题是存在的。

如何解决问题?非常感谢您。

我的A布局如下:

    <RelativeLayout 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:background="@color/bgColor"
        tools:context=".MainActivity" >

        <LinearLayout
            android:id="@+id/linearLayout1"
            android:layout_width="match_parent"
            android:layout_height="70dp"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:focusable="true"
            android:focusableInTouchMode="true"
            android:gravity="center"
            android:orientation="horizontal" >

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_gravity="center"
                android:layout_marginTop="4dp"
                android:layout_weight="1"
                android:gravity="center" >

                <EditText
                    android:id="@+id/drugText"
                    android:layout_width="224dp"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center"
                    android:ems="10"
                    android:gravity="center_vertical|center"
                    android:hint="@string/searchHint1"
                    android:textSize="18sp" />
            </LinearLayout>

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_gravity="center"
                android:layout_weight="3"
                android:gravity="left" >

                <Button
                    android:id="@+id/query"
                    style="@style/ButtonText"
                    android:layout_width="70dp"
                    android:layout_height="48dp"
                    android:layout_gravity="center"
                    android:layout_marginTop="10dp"
                    android:background="@drawable/blue_btn"
                    android:text="@string/search"
                    android:textSize="20sp" />
            </LinearLayout>
        </LinearLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_alignParentLeft="true"
           android:layout_below="@+id/linearLayout1" >

            <ListView
                android:id="@+id/drugList"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:clickable="true" />
        </LinearLayout>

    </RelativeLayout>

我的列表视图项目布局如下:

    <LinearLayout 
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/color_listview_border"
            android:gravity="center"
            android:minHeight="60dp" >

            <TextView
                android:id="@+id/drugNameTV"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="TextView"
                android:textSize="20sp" />
        </LinearLayout>

    </LinearLayout>
4

2 回答 2

0

只需调用 adapter.notifyDataSetChanged(); 在 onResume 函数中

于 2013-06-10T04:51:24.140 回答
0

You could store the listview state when you go to B subActivity. After come back to A subActivity you need to restore the listview state.

于 2013-04-23T08:46:03.843 回答