Android 自定义标题栏的实例详解
开发 Android APP 经常会用到自定义标题栏,而有多级页面的情况下还需要给自定义标题栏传递数据。
本文要点:
自定义标题填充不完整
自定义标题栏返回按钮的点击事件
一、代码
这里先介绍一下流程:
1. 创建一个标题栏布局文件 mytitlebar.xml
2. 在style.xml中创建 mytitlestyle 主题
3. 创建类 CustomTitleBar
4. 在需要自定义标题栏的Activity的OnCreate方法中实例化 CustomTitleBar
5. 在 AndroidManifest.xml 对使用了自定义标题栏的Activity定义主题
1.定义一个自定义的标题栏布局 mytitlebar.xml
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout android:id="@+id/re_title" xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="50dp" //定义自定义标题栏的高度 android:background="@color/start_background" android:orientation="horizontal"> <ImageButton android:scaleType="fitXY" android:layout_alignParentLeft="true" android:layout_centerVertical="true" android:layout_marginLeft="10dp" android:id="@+id/bt_back" android:layout_width="25dp" android:layout_height="25dp" android:src="@drawable/left_back" android:background="@color/touming"/> <TextView android:id="@+id/mytitle" android:layout_centerInParent="true" android:layout_width="wrap_content" android:layout_height="match_parent" android:gravity="center"//使文字在整个标题栏的中间 android:textColor="#fff" android:textSize="20dp" /> </RelativeLayout >
2.在 style.xml 中创建 mytitlestyle 主题
<resources> <!-- 自定义标题栏 parent="android:Theme" 这个属性必须写 --> <style name="mytitlestyle" parent="android:Theme"> <!-- 设置高度,和 mytitlebar.xml中保持一致 --> <item name="android:windowTitleSize">50dp</item> <!-- 设置内填充为0 使自定义标题填充整个标题栏,否则左右两边有空隙 --> <item name="android:padding">0dp</item> </style> </resources>
3.创建类 CustomTitleBar
public class CustomTitleBar { private Activity mActivity; //不要使用 static 因为有三级页面返回时会报错 /** * @param activity * @param title * @see [自定义标题栏] */ public void getTitleBar(Activity activity, String title) { mActivity = activity; activity.requestWindowFeature(Window.FEATURE_CUSTOM_TITLE); //指定自定义标题栏的布局文件 activity.setContentView(R.layout.mytitlebar); activity.getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.mytitlebar); //获取自定义标题栏的TextView控件并设置内容为传递过来的字符串 TextView textView = (TextView) activity.findViewById(R.id.mytitle); textView.setText(title); //设置返回按钮的点击事件 ImageButton titleBackBtn = (ImageButton) activity.findViewById(R.id.bt_back); titleBackBtn.setOnClickListener(new OnClickListener() { public void onClick(View v) { //调用系统的返回按键的点击事件 mActivity.onBackPressed(); } }); } }
4.在需要自定义标题栏的Activity的OnCreate方法中实例化 CustomTitleBar,这里是food页面
public class food extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); //实例化CustomTitleBar 传递相应的参数 CustomTitleBar ct = new CustomTitleBar(); ct.getTitleBar(this, "美食"); setContentView(R.layout.page_food); } }
5.在 AndroidManifest.xml 对使用了自定义标题栏的Activity定义主题
//省略了其余部分,android:theme="@style/mytitlestyle"这句必需写 <activity android:name=".food" android:label="@string/activity_food" android:theme="@style/mytitlestyle" />
二、总结
使用自定义标题栏的时候,很多人会遇到填充不满,左右两边有空隙以及返回按钮点击事件不响应的问题,这里测试和总结了最为合适的方式解决。
自定义标题栏填充不满,网上有不少解决方案,有的还比较复杂,我这里直接在定义Theme时一个属性就解决了,还比较容易理解。
自定义标题栏返回按钮点击事件不响应或出错的问题,也是测试了网上的很多代码,用onBackPressed()最为方便,也有人使用finish(),其余的OnKeyDown之类的测试未通过。
如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
本文向大家介绍Android自定义TitleView标题开发实例,包括了Android自定义TitleView标题开发实例的使用技巧和注意事项,需要的朋友参考一下 Android开发过程中,经常遇到一个项目需要重复的定义相同样式的标题栏,Android相继推出了actionBar, toolBar, 相信有用到的朋友也会遇到一些不如意的时候,比如标题栏居中时,需要自定义xml文件给toolBar等
本文向大家介绍javaWeb自定义标签用法实例详解,包括了javaWeb自定义标签用法实例详解的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了javaWeb自定义标签用法。分享给大家供大家参考,具体如下: 自定义标签创建 自定义标签主要用于移除Jsp页面中的Java代码。 移除jsp页面中的java代码,只需要完成两个步骤: - 编写一个继承TagSupport的Java类,并覆盖doSt
本文向大家介绍Android隐藏标题栏及解决启动闪过标题的实例详解,包括了Android隐藏标题栏及解决启动闪过标题的实例详解的使用技巧和注意事项,需要的朋友参考一下 Android隐藏标题栏及解决启动闪过标题的实例详解 方法一: 在代码中设置 方法二: 在AndroidManifest.xml 里面设置 第一种方法在应用启动时会闪过标题栏,然后执行this.requestWindowFeatu
本文向大家介绍Android 自定义返回按钮的实例详解,包括了Android 自定义返回按钮的实例详解的使用技巧和注意事项,需要的朋友参考一下 Android 自定义返回按钮的实例详解 程序中我们有时候想让放回按钮按照自己的需求调整页面而不是单纯的按照系统返回上一级,这个问题很简单,重写 onKeyDown 方法即可。 下面方法,包含了 webview 中的返回上一页和普通 activity 的单
我使用这段代码来最大化和恢复我的自定义表单。但是当窗体最大化时,它仍然可以拖动,我使用计时器来拖动窗体。
本文向大家介绍Android自定义单例AlertDialog详解,包括了Android自定义单例AlertDialog详解的使用技巧和注意事项,需要的朋友参考一下 当Android开发处理错误信息时,经常会以Dialog的形式显示错误信息,但是每次都new一个Dialog,很麻烦,也增加程序的开销,所以今天就分享一种自定义单例AlertDialog 布局文件view_alertdialog.xml