0

我有一个使用列表视图的应用程序

setListAdapter(new ArrayAdapter<String>(getActivity(), android.R.layout.simple_list_item_activated_1,titles));

现在我得到的是这样的在此处输入图像描述

正如您所看到的,当我按下文本时,它会感觉到它,而不是除此之外的任何地方。除了使用我的自定义 xml 文件(资源)作为列表之外,还有什么方法可以解决这个问题。

xml

<LinearLayout 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:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MovieCritics" >

    <fragment class="com.example.moviecritics.FragmentMovieName"
        android:id="@+id/movie_name"
        android:name="android.support.v4.app.ListFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</LinearLayout>

它在横向模式下工作正常

4

1 回答 1

0

Try android:listSelector in your ListView

于 2013-11-07T16:31:11.643 回答