我有一段这段代码:
public boolean onOptionsItemSelected(MenuItem item){
switch(item.getItemId()){
case R.id.menu_green:
if (item.isChecked()) item.setChecked(false);
else item.setChecked(true);
mainLayout.setBackgroundColor.(Color.GREEN);
return true;
default:
return super.onOptionsItemSelected(item);
当我在menuItem中选择该选项时,我正在尝试更改背景颜色。仅当我打开片段按钮时,才会显示menuItem绿色。这是尝试更改背景的正确位置吗?在片段内部,mainLayout用红色下划线标出。
Activity_Main.XML
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_main" />
</android.support.design.widget.CoordinatorLayout>
Frag1.XML
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/menu_green"
android:title="Green"
app:showAsAction="never" />
</menu>
答案 0 :(得分:0)
尝试使用此代码更改片段背景颜色
case R.id.menu_green:
if (item.isChecked()) item.setChecked(false);
else item.setChecked(true);
fragment.getView().setBackgroundColor(Color.GREEN);
return true;