2013-07-17 13 views
17

私はテキストビューの色を設定したいカスタムビューを持っています。カスタムattr get colorは無効な値を返します

私が持っている

attrs.xml

<declare-styleable name="PropertyView"> 
    <attr name="propertyTitle" format="string" localization="suggested" /> 
    <attr name="showTitle" format="boolean" /> 
    <attr name="propertyTextColor" format="color" /> 
    <attr name="propertyTextSize" format="dimension" /> 
</declare-styleable> 

私はレイアウトファイル

<com.something.views.PropertyView 
    android:id="@+id/dwf_rAwayTeamTimePenaltyInput" 
    style="@style/mw" 
    propertyview:propertyTextSize="16sp" 
    propertyview:propertyTitle="@string/AwayTeam" 
    propertyview:showTitle="true" 
    propertyview:propertyTextColor="@color/textLight" /> 

でそれを設定して、私のコードで、私はそれ

TypedArray a = context.getTheme().obtainStyledAttributes(attrs, R.styleable.PropertyView, 0, 0); 

    showTitle = a.getBoolean(R.styleable.PropertyView_showTitle, false); 
    String title = a.getString(R.styleable.PropertyView_propertyTitle); 
    float textSize = a.getDimension(R.styleable.PropertyView_propertyTextSize, -1); 
    int color = a.getColor(R.styleable.PropertyView_propertyTextColor, -1); 
    textSize = textSize/getResources().getDisplayMetrics().scaledDensity; 
    if(BuildConfig.DEBUG) Log.e(getClass().getName(), "Color set to: " + color); 

    setShowTitle(showTitle); 
    setTitle(title); 
    if(textSize >= 0) mTitleTextView.setTextSize(TypedValue.COMPLEX_UNIT_SP, textSize); 
    if(color != -1) mTitleTextView.setTextColor(color); 

    a.recycle(); 

しかし、色を設定します-1を返し続けます。私は私がこの問題や提案をa.getIntegerとa.getInt

誰でも経験をしようとしたの-16777216

値を取得することを行うと、私も#000 に色を設定しようとした ?

ソリューション、アレックス・フーのおかげで

GETCOLORは、それはしかし、あなたはあなたの例では、色への参照を使用している

ColorStateList color = a.getColorStateList(R.styleable.PropertyView_propertyTextColor); 
mTitleTextView.setTextColor(color); 

答えて

16

で今働いて応じている参照

を扱うことができませんattrs.xmlファイルには、そのプロパティは参照ではなくカラータイプでなければなりません。これは恐らく16進数のカラーコードを使用したときに機能しましたが、-1を返した参照を使用した理由があります。

フォーマットを参照に変更する場合は、メソッドを変更してa.getColor()からa.getColorStateList()に変更する必要があります。

+0

良い思考が、それはそれを解決していなかった、あまりにも悪いです。 –

+0

attrs.xmlで参照する形式を変更しましたか?もしそうなら、 'a.getColor()'メソッドも変更しましたか?代わりに 'a.getColorStateList()'を使ってみるべきです。 'getColorStateList'は単色と参照の両方を理解できます。 –

+0

ありがとうございました。それはgetColorが参照を扱うことができない愚かでしたが、それはおそらく理由があります。 –

2

これはattrsのバグです。

以下は完全に機能します。


attrs.xml

<?xml version="1.0" encoding="utf-8"?> 
<resources> 

    <!-- Your View --> 
    <declare-styleable name="YourView"> 
     <attr name="tint_color" format="reference" /> <!-- Important --> 
     <attr name="ripple_drawable" format="reference" /> <!-- Important --> 
    </declare-styleable> 

</resources> 

YourView.java

public YourView(Context context) { 
    this(context, null); 
} 

public YourView(Context context, @Nullable AttributeSet attrs) { 
    this(context, attrs, 0); 
} 

public YourView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) { 
    super(context, attrs, defStyleAttr); 

    // Get attrs 
    TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.YourView, defStyleAttr, 0); 

    // Set tint 
    int tintStyle = R.styleable.YourView_tint_color; 
    if (a.hasValue(tintStyle)) { 
     mTintColor = a.getResourceId(tintStyle, 0); // Important 
     setTint(mTintColor); 
    } 

    // Set Ripple 
    int rippleStyle = R.styleable.YourView_ripple_drawable; 
    if (a.hasValue(rippleStyle)) { 
     mRippleDrawable = a.getResourceId(rippleStyle, 0); // Important 
     setRipple(mRippleDrawable); 
    } 

    // End 
    a.recycle(); 
} 

使用

<com.your.app.YourView 
    ... 
    app:ripple_drawable="@drawable/ripple_default" 
    app:tint_color="@color/colorWhite" /> 
関連する問題