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