4

私の目標は、実行時にプログラムで色を変更することshapeです。HEXコードの文字列があり、それを解析してsetColorメソッドに渡しました。アプリケーションを実行するたびに、予想とは異なる色が表示されます。layer-listshapeColor.parseColor()

XMLファイルのコードは次のとおりです。

<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >


<item 
    android:id="@+id/lvbg"
    android:top="1dp">
    <shape
        android:id="@+id/listview_background"
        android:shape="rectangle" >
        <size
            android:height="220dp"
            android:width="600dp" >
        </size>

        <solid android:color="@android:color/black"></solid>

        <corners android:radius="15dp" />
    </shape>
</item>
</layer-list>

そして、これは私のコードですCustomAdapter:

convertView = mInflater.inflate(R.layout.student_info_selection_fragment_icon, null);
holder = new ViewHolder();
holder.collegeBG=(LayerDrawable)convertView.getResources().getDrawable(R.drawable.rectangle);
holder.bg = (GradientDrawable)holder.collegeBG.findDrawableByLayerId(R.id.lvbg);
String color = "#FF" + rowItem.getCollegeColor();
holder.bg.setColor(Color.parseColor(color));

たとえば、私が置く#FF1D0A63と、黒または茶色になり、まったく異なる色になります. ありがとう

4

2 に答える 2

3

問題が何であるかはまだわかりませんがlayer-list、xml を使用してビューの背景として割り当て、shapeinの色を変更しようとするとlayer-list、この問題が発生することに気付きました。

だから私は自分の背景shapeを から分離して解決しましたlayer-list

背景shapeを別のファイルに入れました:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/listview_background"
    android:shape="rectangle" >

    <size
        android:height="220dp"
        android:width="600dp" >
    </size>
    <solid android:color="@android:color/black" > </solid>
    <corners android:radius="15dp" />

</shape>

そして、それを背景として に割り当てましたTextView

私が使用した理由layer-listは、2 ~ 3 つの図形を組み合わせてグラデーションにし、角を丸くすることでした。代わりに、背景として形状を使用ViewおよびTextView割り当てたところ、機能しました。

これが私の新しいものCustomAdapterです:

convertView = mInflater.inflate(R.layout.student_info_selection_fragment_icon, null);
holder = new ViewHolder();
holder.tvBackground = (TextView) convertView.findViewById(R.id.tvSelectionCollegeBackground);
GradientDrawable background = (GradientDrawable) holder.tvBackground.getBackground();


String color = "#FF" + rowItem.getCollegeColor();
background.setColor(Color.parseColor(color));
holder.tvBackground.setBackground(background);
于 2013-06-07T14:41:01.613 に答える