我是Android編程的新手,所以我不知道所有功能。 據我所知,所有生成的活動都有一個標題欄,其中包含app_name字符串資源。我設法改變了唯一活動的標題,但我不知道如何改變標題文本的對齊方式。我的意思是,the're產生這樣的:Android中標題欄文本的中心對齊
,但我需要的是這樣的:
我是Android編程的新手,所以我不知道所有功能。 據我所知,所有生成的活動都有一個標題欄,其中包含app_name字符串資源。我設法改變了唯一活動的標題,但我不知道如何改變標題文本的對齊方式。我的意思是,the're產生這樣的:Android中標題欄文本的中心對齊
,但我需要的是這樣的:
如果您使用的是支持工具欄,該方法將非常簡單。 只是其中加一個文本視圖,使其中心:
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar_top"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize"
android:background="@color/action_bar_bkgnd"
app:theme="@style/ToolBarTheme" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Toolbar Title"
android:layout_gravity="center"
android:id="@+id/toolbar_title" />
</android.support.v7.widget.Toolbar>
在您的活動
您可以訪問標題像這樣:
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar_top);
TextView Title = (TextView) toolbar.findViewById(R.id.toolbar_title);
要在ABS居中的標題(如果你想有這在默認的ActionBar中,只需刪除方法名稱中的「支持」),您可以這樣做:
在您的活動中,在您的onCreate()
方法中:
getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
getSupportActionBar().setCustomView(R.layout.abs_layout);
xml文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="my Title"
android:textColor="#ffffff"
android:id="@+id/mytext"
android:textSize="18sp" />
</LinearLayout>
現在你應該有一個動作條只是一個標題。如果你想設置一個自定義背景,在上面的佈局中設置它(但是不要忘記設置android:layout_height =「match_parent」)。