自定义Activity标题栏

来源:互联网 发布:mac number 求和 编辑:程序博客网 时间:2024/06/03 09:25

代码:

<RelativeLayout    android:layout_width="match_parent"    android:layout_height="wrap_content"    android:background="@color/TITLE" >    <Button        android:id="@+id/bt_about_back"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:background="#00000000"        android:gravity="center"        android:text="返回"        android:textSize="16sp" />    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_centerInParent="true"        android:gravity="center"        android:text="标题"        android:textSize="24sp" /></RelativeLayout>



效果截图:
这里写图片描述

0 0
原创粉丝点击