我需要将标题栏设为橙色而不是标准灰色,我无法弄清楚如何编辑它的设置。我还需要将文本对齐,使其位于标题栏的右侧而不是左侧。关于如何做到这一点的任何想法?
答案 0 :(得分:0)
答案 1 :(得分:0)
您可以使用Set title background color上的最后一条评论中的解决方案。
答案 2 :(得分:0)
要为标题栏指定所需的颜色(橙色),请在您的oncreate中使用以下代码
this.setTitleColor(#FF6600);
或创建自定义标题栏并在整个应用程序中使用它。如果您创建自定义标题栏,U可以进行各种修改。
例如
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="400px"
android:layout_height="fill_parent"
android:orientation="horizontal">
<ImageView android:id="@+id/ImageView01"
android:layout_width="57px"
android:layout_height="wrap_content"
android:background="@drawable/icon1">
</ImageView>
<TextView
android:id="@+id/myTitle"
android:text="This is my new title"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:textColor="@color/titletextcolor"
/>
</LinearLayout>