1.实现应用中的所有activity都全屏 在manifest中直接加入 android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
2.实现单个activity全屏 requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.TYPE_STATUS_BAR, WindowManager.LayoutParams.TYPE_STATUS_BAR); 3.实现单个activity去掉title栏 requestWindowFeature(Window.FEATURE_NO_TITLE);
1、改变标题内容:public void setTitle (CharSequence title)
2、隐藏标题:requestWindowFeature(Window.FEATURE_NO_TITLE);
3、隐藏标题和最上面的电池电量及信号栏(全屏):


java代码:
  1. public void setFullscreen() {

  2. requestWindowFeature(Window.FEATURE_NO_TITLE);
  3. getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
  4. WindowManager.LayoutParams.FLAG_FULLSCREEN);
  5. }
复制代码
4、自定义标题内容

java代码:
  1. <activity android:name=".activity.MainActivity" android:screenOrientation="portrait" android:label="@string/titlebar_text"
  2. </actibity> 2)

  3. MainActivity文件中:
  4. requestWindowFeature(Window.FEATURE_NO_TITLE);
  5. //设置窗口无标题栏
  6. setContentView(R.layout.main);
  7. //动态设置标题的值,getTitle()的值是该activity的声明中android:label的值
  8. ((TextView) findViewById(R.id.titlebar_text)).setText(getTitle());
  9. 其中,getTitle()取得的值就是上述 android:label="@string/titlebar_text" 的值
复制代码
5、自定义标题布局

java代码:
  1. protected void onCreate(Bundle savedInstanceState) {
  2. super.onCreate(savedInstanceState);

  3. //预先设置允许改变的窗口状态,需在 setContentView 之前调用,否则设置标题时抛运行时错误。

  4. requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);

  5. setContentView(R.layout.custom_title);
  6. //标题区域可设置为 layout ,如此可以有丰富的展现方式

  7. getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,
  8. R.layout.custom_title_1);
  9. }
复制代码
res\layout\custom_title_1.xml 包含一个TextView 用于显示标题。Android可以把标题做为一个layout来展示,具有很好的扩展性。

java代码:
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/screen"
  2. android:layout_width="fill_parent"
  3. android:layout_height="fill_parent"
  4. android:orientation="vertical">

  5. <TextView android:id="@+id/left_text"

  6. android:layout_width="wrap_content"
  7. android:layout_height="wrap_content"
  8. android:layout_alignParentLeft="true"
  9. android:text="@string/custom_title_left" />

  10. </RelativeLayout>

更多相关文章

  1. Android计算地图上两点距离
  2. Android(安卓)EditText 设置圆角
  3. Android(安卓)studio 运行即打包keystore之build.gradle设置
  4. 工具:Android本地代码生成器
  5. Android热更新方案Robust——美团热更新(热修复)使用介绍
  6. Android选项卡(TabWidget)应用
  7. Android很有用的代码片段
  8. SeekBar自定义
  9. 修改标题栏的高度

随机推荐

  1. 制作登录界面的布局时候,可以使用 android
  2. Android布局属性大全
  3. android 安卓 开发 图片库获得图片的绝对
  4. android 设置全屏的三种方式
  5. [置顶] Linux下安装配置Android开发环境
  6. qt for android
  7. Android简单实现音乐播放器
  8. 笔记!
  9. Android(安卓)左右滑屏效果
  10. API 23 widget.Space——属性分析