自定义标题栏

阅读更多
1. 代码中
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
        setContentView(R.layout.custom_title);
        getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.custom_title_1);
2.xml中
(1)custom_title.xml
    android:id="@+id/screen"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
            android:layout_height="wrap_content"
        android:baselineAligned="false">
                    android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:maxEms="10"
            android:minEms="10"
            android:layout_gravity="center_vertical"
            android:text="@string/custom_title_left" />
       

你可能感兴趣的:(custom)