Android以XML格式访问SDK属性

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android以XML格式访问SDK属性相关的知识,希望对你有一定的参考价值。

我正在尝试扩展androidsimple_list_item_2,所以我复制了它的XML,它是:

<TwoLineListItem xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:minHeight="?attr/listPreferredItemHeight"
    android:mode="twoLine"
    android:paddingStart="?attr/listPreferredItemPaddingStart"
    android:paddingEnd="?attr/listPreferredItemPaddingEnd">

    <TextView android:id="@id/text1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        android:textAppearance="?attr/textAppearanceListItem" />

    <TextView android:id="@id/text2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/text1"
        android:layout_alignStart="@id/text1"
        android:textAppearance="?attr/textAppearanceListItemSecondary" />

</TwoLineListItem>

在我的实施中,问题是这条线

    android:textAppearance="?attr/textAppearanceListItemSecondary"/>

给出错误:

Cannot resolve symbol ?attr/textAppearanceListItemSecondary

我试过像这样的东西:

android:textAppearance="android:?attr/textAppearanceListItemSecondary"

android:textAppearance="@android?attr/textAppearanceListItemSecondary"但它不起作用

所以我的问题是,如何访问Android SDK资源中的布局可以访问的相同符号/属性?我是否需要将符号复制到我的应用程序目录,或者我可以简单地访问simple_list_item_2所做的那个?

此外,原来的simple_list_item_2位于C:Androidsdkplatformsandroid-23data eslayout,我的实施位于appsrcmain eslayout,如果它有帮助

答案
android:textAppearance="?android:attr/textAppearanceListItemSecondary"

Documentation

您需要将?放在包名之前,而不是之后:?[<package_name>:][<resource_type>/]<resource_name>

引用样式属性 样式属性资源允许您引用当前应用的主题中的属性值。引用样式属性允许您通过设置UI元素的样式来自定义UI元素的外观,以匹配当前主题提供的标准变体,而不是提供硬编码值。引用样式属性实质上是说“在当前主题中使用由此属性定义的样式”。

要引用样式属性,名称语法几乎与普通资源格式相同,但使用问号(?)代替at符号(?),资源类型部分是可选的。例如:

?[<package_name>:][<resource_type>/]<resource_name>

另一答案

您无法访问私有SDK属性,因此您必须复制它们。

它可能在使用反射的代码中,但肯定不在xml中。

以上是关于Android以XML格式访问SDK属性的主要内容,如果未能解决你的问题,请参考以下文章

什么是工具:片段 xml 文件中的布局?

如何解析 .apk 包中的 AndroidManifest.xml 文件

在android活动中设置片段的形状和透明度

Android 逆向Android 进程注入工具开发 ( Visual Studio 开发 Android NDK 应用 | Visual Studio 中 SDK 和 NDK 安装位置 )(代码片段

为动态创建的 Android 片段提供自定义属性值

来自活动xml的片段中的findViewById属性不起作用[重复]