android 自定义TitleBar...

    requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
    setContentView(R.layout.main);
    getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.title_bar);

  1.  <item name="android:windowTitleSize">50dp</item>  
  2.      <item name="android:windowTitleBackgroundStyle">@style/CustomWindowTitleBackground</item>  

猜你喜欢

转载自blog.csdn.net/intbird/article/details/42557109