styles.xmlからプログラムでスタイル属性を取得する方法


82

現在、WebViewまたはTextViewのいずれかを使用して、アプリの1つでWebサービスからの動的データを表示しています。データに純粋なテキストが含まれている場合は、TextViewを使用して、styles.xmlのスタイルを適用します。データにHTML(主にテキストと画像)が含まれている場合は、WebViewを使用します。

ただし、このWebViewはスタイルが設定されていません。そのため、通常のTextViewとは大きく異なります。HTMLをデータに直接挿入するだけで、WebViewのテキストのスタイルを設定できることを読みました。これは簡単に聞こえますが、Styles.xmlのデータをこのHTMLで必要な値として使用したいので、スタイルを変更する場合に2つの場所の色などを変更する必要はありません。

それで、どうすればこれを行うことができますか?広範囲にわたる検索を行いましたが、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に興味があります。


XML(AndroidのSAXパーサーなど)を解析してみませんか?
m0skit0 2012

回答:


177

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()

素晴らしい仕事仲間。それができないと言われた(そしてそれをたくさん読んだ)後、あなたはそれができることを完全に示しました。試してみたところ、自分のスタイルからフォントの色を取得することができました。まだテキストサイズを取得できませんが、理解します。バウンティを送れるようになり次第(今から18時間後)、100ポイントが近づいています。どうもありがとう!
Sander van't Veer 2012

4
実行時にスタイルで定義されている値を変更することもできますか?
ekjyot 2013

取得した属性の色を変更したい場合はどうすればよいですか?このコード内で背景やテキストの色を動的に変更したいですか?
MSIslam 2014年

2
この行に問題があります: 'TypedArray ta = getStyledAttributes(R.style.MyCustomStyle、attrs);'、Android Studioは、スタイル可能なタイプのリソースを期待していると言っており、アノテーションを抑制する方法がわかりません。サポートライブラリ。getStyledAttributesに@ResStyleableアノテーションがあり、スタイルをintとして渡すのを妨げていると思います。何か案は?
ベンピアソン

1
@ BenPearson-textSize属性を取得しようとしたのと同じ問題が発生しました。PrivatMamtoraの回答は機能し、受け入れられる回答である必要があります。
thecoolmacdude 2014

52

@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);

この方法を使用する利点は、インデックスではなく名前で値を取得することです。


3
Oleの回答が「スタイル可能なタイプの予想されるリソース」の警告を生成したため、これは受け入れられた回答であるはずです。
thecoolmacdude 2014

1
私にとってはうまくいきますが、Android Studioでは、プレフィックスとして@SuppressWarnings("ResourceType")。を付ける必要があります。
eruve 2015年

2
この答えは受け入れられるべきです。それは私のすべての属性のために機能し、最も投票されたものは私に多くの時間を無駄にしました。
ジェリー2016年

1
あなたの解決策を強力なイルカに感謝します。受け入れられた回答は、背景(ドローアブルを使用する場合)やテキストサイズなどの属性に問題を引き起こしました。このソリューションは、必要なすべての属性に対して機能するだけでなく、よりクリーンなコードを提供します。
マリウスP.

2
R.style.MyCustomStyleとは何ですか?
ヤーノシュ

1

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


-4

受け入れられたソリューションが機能しない場合は、attr.xmlの名前をattrs.xmlに変更してみてください(私のために機能しました)

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.