在每项活动

时间:2018-03-08 22:51:39

标签: java android android-actionbar material-design

我想在操作栏中为我的应用程序名称使用自定义颜色,字体和大小,所以我进入并在MainActivity.java中将其样式化,如此

    //stylize the action bar
    TextView tv = new TextView(getApplicationContext());
    RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams(ActionBar.LayoutParams.WRAP_CONTENT, ActionBar.LayoutParams.WRAP_CONTENT);
    tv.setLayoutParams(lp);
    tv.setText(R.string.Title);
    tv.setTextSize(45);
    tv.setTextColor(Color.parseColor("#FFFFFF"));
    Typeface tf = Typeface.createFromAsset(getAssets(), "KGALittleSwag.ttf");
    tv.setTypeface(tf);
    getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
    getSupportActionBar().setCustomView(tv);
    updateOptionsMenu();

这就是诀窍,然后当我添加另一个活动时,我将此代码复制到其中,看起来很棒。此时我的应用程序几乎已准备好发布,但我正在进行一些重构,现在我有6个左右的活动,并且将这些代码放在每个活动中感觉有点多余。是否有更好的做法将这些更改普遍应用于操作栏?

2 个答案:

答案 0 :(得分:1)

这是inheritance的用途。

创建一个abstract BaseActivity类,您可以在其中进行所有这些处理。您要应用这些样式的所有活动都将继承BaseActivity

public abstract class BaseActivity extends AppCompatActivity {

    @Override
    protected void onCreate (Bundle savedInstanceState) {
         super.onCreate (savedInstanceState);

         //stylize the action bar
         TextView tv = new TextView(getApplicationContext());
         RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams (ActionBar.LayoutParams.WRAP_CONTENT, ActionBar.LayoutParams.WRAP_CONTENT);
         tv.setLayoutParams(lp);
         tv.setText(R.string.Title);
         tv.setTextSize(45);
         tv.setTextColor(Color.parseColor("#FFFFFF"));
         Typeface tf = Typeface.createFromAsset(getAssets(), "KGALittleSwag.ttf");
         tv.setTypeface(tf);

         getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
         getSupportActionBar().setCustomView(tv);
         updateOptionsMenu();

    }
}

然后你的孩子活动:

public abstract class ChildActivity extends BaseActivity {

    @Override
    protected void onCreate (Bundle savedInstanceState) {
        super.onCreate (savedInstanceState); // Here it calls the parent onCreate method and therefore executes the styling code
    }
}

答案 1 :(得分:0)

您可以做的只是为自定义操作栏创建一个XML布局文件,而不是在所有活动中使用它。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/actionBarTxt"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:layout_gravity="center"
        android:gravity="center"
        android:maxLines="1"
        android:text="your text"
        android:textAlignment="center"
        android:textColor="#ffffff"
        android:textSize="20dp"
        android:textStyle="bold" />
</RelativeLayout>

确保您的TextView居中,并且layout_width的{​​{1}}和layout_hight设置为TextView

将其放入您要使用自定义操作栏的每个活动

wrap_content