Android 修改标题栏文字居中
1.先创建一个布局文件title_bar.xml,里面就是标题栏的内容,根据自己需求来调整
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="56dp"
android:background="@color/colorPrimary"
>
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/ib_title_back"
android:src="@drawable/back"
android:background="@null"
android:layout_centerVertical="true"
android:layout_marginLeft="10dp"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="标题"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:textColor="#fff"
android:textSize="22sp"
android:id="@+id/tv_title"
/>
</RelativeLayout>
2.在需要显示的Activity的布局文件里面导入该布局
版权声明:
作者:三炮不吃鱼
链接:https://www.keke.moe/archives/1135.html
文章版权归作者所有,未经允许请勿转载。
THE END