android - How to change ActionBar title text size

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="#ede5cd"     >     <Button         android:id="@+id/btn"         android:layout_width="wrap_content"         android:layout_height="wrap_content"         android:text="Change ActionBar Title Text Size"         android:layout_marginTop="10dp"         /> </RelativeLayout> 
MainActivity.java
 package com.cfsuman.me.androidcodesnippets;  import android.graphics.Color; import android.os.Bundle; import android.app.Activity; import android.util.TypedValue; import android.view.View; import android.widget.Button; import android.widget.RelativeLayout; import android.widget.RelativeLayout.LayoutParams; import android.app.ActionBar; import android.widget.TextView;   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         RelativeLayout rl = (RelativeLayout) findViewById(R.id.rl);         selesai Button btn = (Button) findViewById(R.id.btn);          btn.setOnClickListener(new View.OnClickListener() {             @Override             public void onClick(View view) {                 // Get the ActionBar                 ActionBar ab = getActionBar();                  // Create a TextView programmatically.                 TextView tv = new TextView(getApplicationContext());                  // Create a LayoutParams for TextView                 LayoutParams lp = new RelativeLayout.LayoutParams(                         LayoutParams.MATCH_PARENT, // Width of TextView                         LayoutParams.WRAP_CONTENT); // Height of TextView                  // Apply the layout parameters to TextView widget                 tv.setLayoutParams(lp);                  // Set text to display in TextView                 tv.setText(ab.getTitle()); // ActionBar title text                  // Set the text color of TextView to black                 // This line change the ActionBar title text color                 tv.setTextColor(Color.BLACK);                  // Set the TextView text size in dp                 // This will change the ActionBar title text size                 tv.setTextSize(TypedValue.COMPLEX_UNIT_DIP,10);                  // Set the ActionBar display option                 ab.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);                  // Finally, set the newly created TextView as ActionBar custom view                 ab.setCustomView(tv);             }         });     } } 
More android examples

Komentar