我需要使用搜索栏更改布局的颜色,从0xC4DF9B到0xA2CC61,比如&我真的很挣扎。以下是我到目前为止的情况:
XML:
<LinearLayout
android:id="@+id/tile1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="vertical"
android:background="#C4DF9B">
</LinearLayout>
爪哇:
@Override
public void onProgressChanged(SeekBar seekBar, int progress,
boolean fromUser) {
int seekValue = seekBar.getProgress();
tile1.setBackgroundColor() // ???
}