90

目前,我正在使用 WebView 或 TextView 来显示来自我的一个应用程序中的 web 服务的一些动态数据。如果数据包含纯文本,它将使用 TextView 并应用来自 styles.xml 的样式。如果数据包含 HTML(主要是文本和图像),它会使用 WebView。

但是,此 WebView 没有样式。因此它看起来与通常的 TextView 有很大不同。我已经读过,只需将一些 HTML 直接插入数据中,就可以在 WebView 中设置文本样式。这听起来很简单,但我想使用我的 Styles.xml 中的数据作为此 HTML 中所需的值,因此如果我更改我的样式,我不需要在两个位置更改颜色等。

那么,我怎么能做到这一点呢?我已经进行了一些广泛的搜索,但我没有发现实际上从您的styles.xml 中检索不同的样式属性的方法。我在这里遗漏了什么还是真的无法检索这些值?

我试图从中获取数据的样式如下:

<style name="font4">
    <item name="android:layout_width">fill_parent</item>
    <item name="android:layout_height">wrap_content</item>
    <item name="android:textSize">14sp</item>
    <item name="android:textColor">#E3691B</item>
    <item name="android:paddingLeft">5dp</item>
    <item name="android:paddingRight">10dp</item>
    <item name="android:layout_marginTop">10dp</item>
    <item name="android:textStyle">bold</item>
</style>

我主要对 textSize 和 textColor 感兴趣。

4

6 回答 6

191

可以以styles.xml编程方式检索自定义样式。

在 中定义一些任意样式styles.xml

<style name="MyCustomStyle">
    <item name="android:textColor">#efefef</item>
    <item name="android:background">#ffffff</item>
    <item name="android:text">This is my text</item>
</style>

现在,像这样检索样式

// The attributes you want retrieved
int[] attrs = {android.R.attr.textColor, android.R.attr.background, android.R.attr.text};

// Parse MyCustomStyle, using Context.obtainStyledAttributes()
TypedArray ta = obtainStyledAttributes(R.style.MyCustomStyle, attrs);

// Fetch the text from your style like this.     
String text = ta.getString(2);

// Fetching the colors defined in your style
int textColor = ta.getColor(0, Color.BLACK);
int backgroundColor = ta.getColor(1, Color.BLACK);

// Do some logging to see if we have retrieved correct values
Log.i("Retrieved text:", text);
Log.i("Retrieved textColor as hex:", Integer.toHexString(textColor));
Log.i("Retrieved background as hex:", Integer.toHexString(backgroundColor));

// OH, and don't forget to recycle the TypedArray
ta.recycle()
于 2012-12-19T12:55:19.903 回答
55

@Ole 给出的答案似乎在使用某些属性时会中断,例如 shadowColor、shadowDx、shadowDy、shadowRadius(这些只是我找到的几个,可能还有更多)

我不知道为什么会出现这个问题,我在这里询问,但@AntoineMarques编码风格似乎解决了这个问题。

为了使它适用于任何属性,它会是这样的


首先,定义一个样式以包含资源ID,如下所示

attrs.xml

<resources>     
    <declare-styleable name="MyStyle" >
        <attr name="android:textColor" />
        <attr name="android:background" />
        <attr name="android:text" />
    </declare-styleable>
</resources>

然后在代码中你会这样做来获取文本。

TypedArray ta = obtainStyledAttributes(R.style.MyCustomStyle, R.styleable.MyStyle);  
String text = ta.getString(R.styleable.MyStyle_android_text);

使用此方法的优点是,您按名称而不是索引检索值。

于 2014-08-22T23:49:06.013 回答
3

Ole 和 PrivatMamtora 的答案对我来说效果不佳,但确实如此。

假设我想以编程方式阅读这种风格:

<style name="Footnote">
    <item name="android:fontFamily">@font/some_font</item>
    <item name="android:textSize">14sp</item>
    <item name="android:textColor">@color/black</item>
</style>

我可以这样做:

fun getTextColorSizeAndFontFromStyle(
    context: Context, 
    textAppearanceResource: Int // Can be any style in styles.xml like R.style.Footnote
) {
    val typedArray = context.obtainStyledAttributes(
        textAppearanceResource,
        R.styleable.TextAppearance // These are added to your project automatically.
    )
    val textColor = typedArray.getColorStateList(
        R.styleable.TextAppearance_android_textColor
    )
    val textSize = typedArray.getDimensionPixelSize(
        R.styleable.TextAppearance_android_textSize
    )

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        val typeface = typedArray.getFont(R.styleable.TextAppearance_android_fontFamily)

        // Do something with the typeface...

    } else {
        val fontFamily = typedArray.getString(R.styleable.TextAppearance_fontFamily)
            ?: when (typedArray.getInt(R.styleable.TextAppearance_android_typeface, 0)) {
                1 -> "sans"
                2 -> "serif"
                3 -> "monospace"
                else -> null
            }

        // Do something with the fontFamily...
    }
    typedArray.recycle()
}

我从 Android 的 TextAppearanceSpan 类中获得了一些灵感,你可以在这里找到它:https ://android.googlesource.com/platform/frameworks/base/+/master/core/java/android/text/style/TextAppearanceSpan.java

于 2019-02-04T18:08:58.590 回答
2

我无法让早期的解决方案发挥作用。

我的风格是:

<style name="Widget.TextView.NumPadKey.Klondike" parent="Widget.TextView.NumPadKey">
    <item name="android:textSize">12sp</item>
    <item name="android:fontFamily">sans-serif</item>
    <item name="android:textColor">?attr/wallpaperTextColorSecondary</item>
    <item name="android:paddingBottom">0dp</item>
</style>

android.R.attr.textSize 的obtainStyledAttributes() 给出了“12sp”的字符串结果,然后我必须对其进行解析。对于 android.R.attr.textColor,它提供了一个资源文件 XML 名称。这太麻烦了。

相反,我找到了一种使用 ContextThemeWrapper 的简单方法。

TextView sample = new TextView(new ContextThemeWrapper(getContext(), R.style.Widget_TextView_NumPadKey_Klondike), null, 0);

这给了我一个完全样式的 TextView 来查询我想要的任何东西。例如:

float textSize = sample.getTextSize();
于 2021-11-03T17:01:29.677 回答
0

使用 Kotlin,如果您在应用程序/库中包含androidx.core:core-ktx库...

implementation("androidx.core:core-ktx:1.6.0") // Note the -ktx

...您可以拥有以下任何一项(无需回收TypedArray):

// Your desired attribute IDs
val attributes = intArrayOf(R.attr.myAttr1, R.attr.myAttr2, android.R.attr.text)

context.withStyledAttributes(R.style.MyStyle, attributes) {
    val intExample = getInt(R.styleable.MyIntAttrName, 0)
    val floatExample = getFloat(R.styleable.MyFloatAttrName, 0f)
    val enumExample = R.styleable.MyEnumAttrName, MyEnum.ENUM_1 // See Note 1 below
    // Similarly, getColor(), getBoolean(), etc.
}
context.withStyledAttributes(R.style.MyStyle, R.styleable.MyStyleable) {
    // Like above
}
// attributeSet is provided to you like in the constructor of a custom view
context.withStyledAttributes(attributeSet, R.styleable.MyStyleable) {
    // Like above
}

注1(感谢这个答案

要获取枚举值,您可以定义此扩展函数:

internal inline fun <reified T : Enum<T>> TypedArray.getEnum(index: Int, default: T) =
    getInt(index, -1).let { if (it >= 0) enumValues<T>()[it] else default }

笔记2

-ktx依赖项(如androidx.core:coreandroidx.core:core-ktx )之间的区别在于-ktx体包含对 Kotlin 有用的扩展函数。否则,它们是相同的。

另外,感谢Ole 的回答

于 2021-08-16T12:43:32.340 回答
-4

如果接受的解决方案不起作用,请尝试将 attr.xml 重命名为 attrs.xml(为我工作)

于 2016-03-10T12:21:55.443 回答