如何编辑标题栏?

发布于 2024-10-16 20:36:19 字数 82 浏览 3 评论 0原文

我需要将标题栏设置为橙色而不是标准灰色,但我不知道如何编辑它的设置。我还需要对齐文本,使其位于标题栏的右侧而不是左侧。关于如何做到这一点有什么想法吗?

I need to get my title bar to be orange instead of the standard gray and I can't figure out how to edit it's settings. I also need to align the text so its on the right side of the title bar instead of the left. Any ideas on how to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

音盲 2024-10-23 20:36:19

要为标题栏提供所需的颜色(橙色),请在 oncreate 中使用以下代码,

   this.setTitleColor(#FF6600);

或创建自定义标题栏并在整个应用程序中使用它。如果您创建自定义标题栏,您可以进行各种修改。

例如。

     <?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>

To give the title bar your desired color(orange), use the following code in your oncreate,

   this.setTitleColor(#FF6600);

or create a custom title bar and use it throughout the application. U can do all kinds of modifications if you create your custom title bar.

eg.

     <?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>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文