0

TwoLineListItem は API 17 で廃止されたため、カスタム XML と ViewHolder に置き換える手順を実行しました。ただし、TwoLineListItem を使用しているときとまったく同じようにアプリを表示したいと考えています (アプリケーションの大部分であるため)。したがって、Android が使用していた最新の TwoLineListItem の XML ソース コードを見つけることができるかどうか (私が見つけたものはすべて古くなっています)、または基本的に試行錯誤する必要があるかどうかを知りたいですか?

4

1 に答える 1

3

何を探しているのかわかりません。は、 内のフォルダTwoLineListItemを検索すると簡単に見られるレイアウトを使用したシンプルなウィジェットです。これは のためのものです:layoutSDK/platforms/android-x/data/res/layoutJelly Bean

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <TextView android:id="@android:id/text1"
        android:textSize="16sp"
        android:textStyle="bold"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

    <TextView android:id="@android:id/text2"
        android:textSize="16sp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

</LinearLayout>

ウィジェットのコードは非常に簡単に複製できます。

于 2012-12-31T15:47:14.610 に答える