TwoLineListItem は API 17 で廃止されたため、カスタム XML と ViewHolder に置き換える手順を実行しました。ただし、TwoLineListItem を使用しているときとまったく同じようにアプリを表示したいと考えています (アプリケーションの大部分であるため)。したがって、Android が使用していた最新の TwoLineListItem の XML ソース コードを見つけることができるかどうか (私が見つけたものはすべて古くなっています)、または基本的に試行錯誤する必要があるかどうかを知りたいですか?
質問する
1092 次
1 に答える
3
何を探しているのかわかりません。は、 内のフォルダTwoLineListItem
を検索すると簡単に見られるレイアウトを使用したシンプルなウィジェットです。これは のためのものです:layout
SDK/platforms/android-x/data/res/layout
Jelly 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 に答える