您的位置:首页 > 移动开发 > Android开发

Android底部菜单的封装及重用

2012-08-28 12:04 225 查看
引言

  在Android的应用中,经常会见到底部菜单,例如微信的底部菜单如下所示:

View Code

<?xml version="1.0"encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

android:orientation="vertical"

android:layout_width="fill_parent"  android:layout_height="fill_parent"  >

<TextView    android:layout_width="fill_parent"

android:layout_height="wrap_content"   android:text="@string/hello"  />

</LinearLayout>


  结果程序效果如下图所示:



引用自:http://download.csdn.net/download/jxq0308/4123428
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: