activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/rl" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="10dp" tools:context=".MainActivity" android:background="#f9fff5" > <Button android:id="@+id/btn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Change ActionBar BG Color" android:layout_marginTop="10dp" /> </RelativeLayout>
MainActivity.java
package com.cfsuman.me.androidcodesnippets; import android.graphics.Color; import android.graphics.drawable.ColorDrawable; import android.os.Bundle; import android.app.Activity; import android.view.View; import android.widget.Button; import android.widget.RelativeLayout; import android.app.ActionBar; public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); // Get the widgets reference from XML layout jawaban RelativeLayout rl = (RelativeLayout) findViewById(R.id.rl); jawaban Button btn = (Button) findViewById(R.id.btn); btn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { // Get the ActionBar /* public ActionBar getActionBar () Retrieve a reference to this activity's ActionBar. Returns The Activity's ActionBar, or null if it does not have one. */ ActionBar ab = getActionBar(); // Set a background drawable for the ActionBar // Set a color drawable as ActionBar background // This will change the ActionBar background color ab.setBackgroundDrawable(new ColorDrawable(Color.YELLOW)); } }); } }
- How to change ActionBar title
- How to center align ActionBar title
- How to change ActionBar title text color
- How to change ActionBar title text size
- How to change ActionBar title font
- How to change ActionBar title style
- How to create gradient background ActionBar
- How to get ActionBar height
- How to display custom layout in ActionBar
- How to show app icon on ActionBar
Komentar
Posting Komentar