在列表活动中,每当我点击任何项目时它都能正常工作但是当我点击工作布局外(如媒体播放器)时,列表活动滚动屏幕到最顶层的项目。(当我们列出超过列表时这很烦人10项)。所以任何人都请告诉我这是否是List活动的属性,我该如何覆盖这个.. 感谢。
我的列表活动的xml代码是:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff" >
<LinearLayout
android:id="@+id/side_navigation_menu"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentRight="true"
android:orientation="vertical" >
<TextView
android:id="@+id/text1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/top_bar"
android:textColor="#ffffff"
android:text="@string/app_name"
android:gravity="center"
android:textStyle="bold"
android:textSize="@dimen/side_navigation_item_text_size" />
<ListView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/listView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff"
android:divider="@color/side_navigation_list_divider_color"
android:dividerHeight="1dp" />
</LinearLayout>