在自定义titlebar的实现中,首先是MainActivity中的onCreate方法
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.activity_main);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,R.layout.main_titlebar);
}
标题栏的具体布局R.layout.main_titlebar
可以任意修改
这里以一个简单的文本作为xml文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:text="reminder"
android:textSize="18dp"
android:gravity="center"