0

由于 TwoLineListItem 自 API 17 起已被弃用,我已采取措施将其替换为自定义 XML 和 ViewHolder。但是,我真的希望我的应用程序看起来与使用 TwoLineListItem 时完全相同(因为它是应用程序的重要组成部分)。因此,我想知道是否有可能找到 Android 正在使用的最新 TwoLineListItem 的 XML 源代码(我发现的所有内容都已过时),还是我必须基本上进行反复试验?

4

1 回答 1

3

我不确定你在寻找什么。这TwoLineListItem是一个简单的小部件,它使用一种布局,如果您layoutSDK/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 回答