我选择了一个空主题。enter image description here
如何将填充应用于包含文本' tempapp'的操作栏(包含文本tempapp的组件)。
我可以编辑该操作栏吗?
答案 0 :(得分:0)
请改用工具栏。您可以根据自己的意愿进行自定义。
在您的应用程序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);