Android自定义TitleBar 自定义标题栏 并进行事件处理

【原文:http://blog.sina.com.cn/s/blog_62d3ddc00100z5u6.html】

Android自定义TitleBar 自定义标题栏 并进行事件处理

安卓自带的标题栏感觉很是难看,那么我们可以自定义titlebar
首先创建自定义标题栏xml文件 放在layout目录下
    
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

   
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="blog.sina.com.cn/ruipheng"
        android:textColor="@android:color/background_dark"
        android:textSize="20dp"
         />


   

你可能感兴趣的:(【Android】常用组件)