如何更改按钮单击时的工具栏颜色?

时间:2016-10-15 15:05:39

标签: android

我有一个带按钮和工具栏的应用程序。我想在点击按钮时更改工具栏颜色。 我不想启动任何其他活动,我只想在用户点击按钮时我的工具栏颜色发生变化。

2 个答案:

答案 0 :(得分:3)

试试这个

getSupportActionBar().setBackgroundDrawable(new ColorDrawable(getResources().getColor(R.color.colorAccent)));

<强>更新

要更改状态栏的颜色,您应添加以下代码:

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
Window window = getWindow();
window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
window.setStatusBarColor(Color.BLUE);
}

答案 1 :(得分:0)

试试这个会起作用 -

以XML格式

<android.support.v7.widget.Toolbar
    android:id="@+id/my_toolbar"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:background="?attr/colorControlActivated"
    android:elevation="4dp"
    android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
    />
<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/but"
    android:text="ClickME" />

在Java中

public class barTool extends AppCompatActivity {
Toolbar myToolbar;
Button myButton;
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.toolbar);

    myToolbar = (Toolbar) findViewById(R.id.my_toolbar);
    myButton=(Button)findViewById(R.id.but);
    setSupportActionBar(myToolbar); //Setting the Toolbar
    myButton.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            myToolbar.setBackgroundColor(Color.BLACK); //Changing to Color to Black OnClick of Button
        }
    });
}}

如果出现错误

此活动已有窗口装饰提供的操作栏

通过在Styles.xml

中设置以下代码来删除上一个操作栏
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="windowActionBar">false</item> <!--by setting last two the error is removed-->
<item name="windowNoTitle">true</item>

此代码取自此link。请另请参阅此链接。