当前位置: 代码迷 >> Android >> Android 批改Window属性
  详细解决方案

Android 批改Window属性

热度:55   发布时间:2016-05-01 18:50:53.0
Android 修改Window属性
自定义标题栏

requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,R.layout.custom_title);



custom_title.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/screen"    android:layout_width="match_parent" android:layout_height="match_parent"    android:orientation="vertical">    <TextView android:id="@+id/left_text"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_alignParentLeft="true"        android:text="@string/custom_title_left" />    <TextView android:id="@+id/right_text"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_alignParentRight="true"        android:text="@string/custom_title_right" /></RelativeLayout>



  相关解决方案