我選擇了一個空白主題。 enter image description here編輯所選主題的動作欄
如何將填充應用於包含文本'tempapp'的操作欄(包含文本tempapp的組件)。
我可以編輯該操作欄嗎?
我選擇了一個空白主題。 enter image description here編輯所選主題的動作欄
如何將填充應用於包含文本'tempapp'的操作欄(包含文本tempapp的組件)。
我可以編輯該操作欄嗎?
改用工具欄。您可以根據自己的意願自定義它。
在您的應用程序gradle這個它添加到依賴,並同步:
dependencies {
...
compile 'com.android.support:appcompat-v7:25.1.1'
}
在style.xml:
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
</style>
在佈局XML:
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:minHeight="?attr/actionBarSize"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="20dp" <!-- example -->
app:titleTextColor="@android:color/white"
android:background="?attr/colorPrimary">
</android.support.v7.widget.Toolbar>
在活動:
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
非常感謝你的工作....但是,在佈局文件夾中,在哪個xml文件中我們必須添加
將
非常感謝..非常有幫助 –
查看我添加的圖片 –