首页 热点资讯 义务教育 高等教育 出国留学 考研考公

如何修改android标题栏界面

发布网友 发布时间:2022-04-23 05:46

我来回答

1个回答

热心网友 时间:2023-09-20 00:15

  方法一、在你的那张Activity中onCreate方法中加上下面代码:

  ?

  requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
  setContentView(R.layout.main); //软件activity的布局
  getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.titlebar); //titlebar为自己标题栏的布局

  但是新的问题又来了,这样是无法深层的定制标题栏的,比如原有的高度和背景都没有发生变化,那有没有好的方法呢?答案是有的、
  方法二:
  因此先定义一个style,若修改背景请修改android:windowTitleBackgroundStyle
  若修改标题栏高度,请修改android:windowTitleSize
  例子:

  ?

  <?xml version="1.0" encoding="utf-8"?>
  <resources xmlns:android="schemas.android.com/apk/res/android">

  <style name="CustomWindowTitleBackground">
  <item name="android:background">#565656</item>
  </style>

  <style name="test" parent="android:Theme">
  <item name="android:windowTitleSize">50dp</item>
  <item name="android:windowTitleBackgroundStyle">@style/CustomWindowTitleBackground</item>
  </style>
  </resources>

  在程序的android_manifest.xml中对应activity中添加属性android:theme = "@style/test" 就可以了
  ?

  <?xml version="1.0" encoding="utf-8"?>
  <manifest xmlns:android="schemas.android.com/apk/res/android"
  package="com.guardian"
  android:versionCode="1"
  android:versionName="1.0">
  <application android:icon="@drawable/icon" android:label="@string/app_name" >
  <activity android:name=".Test"
  android:label="@string/app_name"
  android:theme = "@style/test" //就在这里
  >
  <intent-filter>
  <action android:name="android.intent.action.MAIN" />
  <category android:name="android.intent.category.LAUNCHER" />
  </intent-filter>
  </activity>
  
  </application>
  <uses-sdk android:minSdkVersion="4" />
  
  </manifest>

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com