android没有提供现成的类似iphone的底部栏控件

对于底部栏的设计其中一个难点就是让底部栏在界面底部保存不动,并且最好和activity的主体layout保持独立,方便修改

实现方法1:

1、在主activity的layout中include底部栏的layout

<?xml version="1.0" encoding="utf-8"?><RelativeLayout  xmlns:android="http://schemas.android.com/apk/res/android"  android:layout_width="fill_parent"  android:layout_height="fill_parent"  android:background="@color/activityBgColor">    <ListView     android:id="@+id/statusListView"    android:layout_width="fill_parent"    android:layout_height="wrap_content"    android:cacheColorHint="@color/activityBgColor"></ListView>    <RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="fill_parent"    android:layout_height="wrap_content"    android:layout_alignParentBottom="true">        <include layout="@layout/comment_footer" />    </RelativeLayout></RelativeLayout>

注意上面RelativeLayout的include layout引入了底部栏。

comment_footer中可以定制底部栏样式,用ImageView做分隔,形成各个tab的样式

2、设置一下底部栏layout中控件的tOnTouchListener,完成底部栏切换tab时候的功能

bottomText.setOnTouchListener(new OnTouchListener() {                    @Override        public boolean onTouch(View v, MotionEvent event) {                        return true;        }    });

参考:http://www.cnblogs.com/FigoYu/archive/2010/11/20/1882691.html

http://rain-2372.iteye.com/blog/724464

http://hi.baidu.com/%CC%EC%C9%BD/blog/item/22598d54c7f9440d3b293564.html

http://blog.csdn.net/roadog2006/article/details/5475549

更多相关文章

  1. Android梳理不常用widget篇
  2. android基本布局
  3. Android登陆页面软键盘弹起避免遮挡按钮实现
  4. Android(安卓)Studio--android:descendantFocusability用法简析
  5. Android横向滑动加载更多的控件的实现---HorizontalScrollSlideV
  6. Android(安卓)Tv ListView支持遥控器item获取焦点不能滚动的详解
  7. Android开发之拖动条/滑动条控件、星级评分控件功能的实例代码
  8. Listview中item与button类控件获取焦点问题
  9. Android(安卓)ViewPager嵌套ViewPager滑动冲突的解决方法

随机推荐

  1. org.json.JSONException: End of input a
  2. Android之——原生分享功能
  3. Android(安卓)ScrollView包裹EditText 软
  4. android短信服务
  5. 获取应用签名
  6. Android切换主线程更新UI方法总结
  7. Android获取Mac地址,支持android Q
  8. Android(安卓)RIL源码分析(2)
  9. android 触发AppWidget上控件事件来更新A
  10. android SQLite数据库2