Android常用UI之titlebar制作

来源:网络 责任编辑:栏目编辑 发表时间:2013-07-01 19:59 点击:

Android的应用中有很多UI的设计都是比较固定的,比如很多应用都会有titlebar和tabbar。我这里就将自己工作过程中碰到的各种比较固定的UI组件的制作方法写出来。
titlebar(标题栏)的应用尤为广泛,主要起到提示和导航的作用,组件里面涉及到的控件有ImageView和TextView(这里并不唯一,视你制作方法而定)。下面就来介绍我的做法,先贴上main.xml的代码和效果图。
代码如下:
 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:orientation="vertical"
 4     android:layout_width="fill_parent"
 5     android:layout_height="fill_parent"
 6     android:background="@drawable/background">
 7    
 8     <RelativeLayout android:layout_width="fill_parent"
 9         android:layout_height="wrap_content"
10         android:background="@drawable/toolbar_background" >
11        
12         <RelativeLayout android:id="@+id/toolbar_left"
13             android:layout_width="wrap_content"
14             android:layout_height="wrap_content"
15             android:layout_alignParentLeft="true"
16             android:layout_centerVertical="true"
17             android:layout_marginLeft="10dip"
18             android:clickable="true">
19             <ImageView android:id="@+id/toolbar_left_image"
20                 style="@style/toolbar_left_button_image"/>
21             <TextView android:id="@+id/toolbar_left_text"
22                 android:text="@string/toolbar_return"
23                 android:layout_alignTop="@id/toolbar_left_image"
24                 android:layout_alignLeft="@id/toolbar_left_image"
25                 style="@style/toolbar_left_button_text" />
26         </RelativeLayout>
27        
28         <RelativeLayout android:layout_width="wrap_content"
29             android:layout_height="wrap_content"
30             android:layout_centerInParent="true">
31             <TextView android:layout_width="wrap_content"
32                 android:layout_height="wrap_content"
33                 android:text="@string/toolbar_everydaytip"
34                 style="@style/toolbar_text" />
35         </RelativeLayout>
36      &n

    相关新闻>>

      发表评论
      请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
      用户名: 验证码:点击我更换图片
      最新评论 更多>>

      推荐热点

      • Android 完全退出程序
      • 原创:Android应用开发-Andorid歌词秀,含源码
      • android 屏幕保护
      • Android手机软件汉化教程---第四课 dex文件汉化
      • 众多Android 开源项目推荐,给力工作给力学习
      • Android Audio代码分析4
      • Android得到已安装的应用程序信息!
      • Android开发者指南(29) —— USB Host and Accessory
      • Android成长的幕后推手:工程师鲁宾
      网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
      Copyright © 2008-2015 计算机技术学习交流网. 版权所有

      豫ICP备11007008号-1