尝试通过intentPutExtra传递背景颜色

时间:2017-03-29 16:02:55

标签: android listview android-intent

就像标题所说我试图用intentPutExtra设置背景颜色但它似乎没有改变,这是我从MainActivity的意图:

  @Override
            public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
                if (position == 0) {

                    Intent intent = new Intent(MainActivity.this, ktmList.class);
                   intent.putExtra("backgroundColor", getResources().getColor(R.color.colorOrange));
                    startActivity(intent);
}

这就是我尝试更改背景颜色的方法:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.models_list);

    Intent intent = new Intent();
    int backgroundColor = intent.getIntExtra("backgroundColor", -1);

    LinearLayout rootView = (LinearLayout)findViewById(R.id.models_rootView);
    rootView.setBackgroundColor(backgroundColor);

这是models_list xml文件:

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

<LinearLayout

    xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/models_rootView"
    android:orientation="vertical">

<ListView
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:id="@+id/models_list"
                android:padding="16dp"/>

</LinearLayout>

感谢先进的任何帮助!

1 个答案:

答案 0 :(得分:1)

使用rootView.setBackgroundResource(backgroundColor);代替rootView.setBackgroundColor(backgroundColor);

同时更改

intent.putExtra("backgroundColor", getResources().getColor(R.color.colorOrange));

intent.putExtra("backgroundColor", R.color.colorOrange);

这对我有用