顶部有一排按钮,最底下还有FooterView的ListView页面
先上效果图: 
下面详细说说这个页面是怎么做出来的:
1、这个页面最下方可以看到一个TAB页签,分别是“主页”、“提及”等等,这个是一个在底部的TAB分页样式,在上一篇博客中已经介绍了
2、这个页面就是“主页”这个子页面,是嵌入到上面说的TAB布局中的。由3个部分组成,分别是最上面的状态栏(包含2个按钮,和一个文本区)、中间的列表、最下方的“更多”按钮(当更多按钮点击时,会加载更多数据,并且出现LOADING提示)
- <?xml version="1.0" encoding="utf-8"?>
- <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent" android:layout_height="fill_parent">
- <LinearLayout android:background="#ffffffff"
- android:layout_width="fill_parent" android:layout_height="fill_parent"
- android:orientation="vertical" />
- <include android:id="@+id/head_line" layout="@layout/head_line"
- android:layout_width="fill_parent" android:layout_height="wrap_content" />
- <ListView android:cacheColorHint="#00000000" android:id="@id/android:list"
- android:layout_width="fill_parent" android:fastScrollEnabled="false"
- android:layout_height="wrap_content" android:paddingTop="45.0dip"
- android:fadingEdge="none" android:paddingBottom="50.0dip"
- android:divider="@drawable/list_divider" android:clipToPadding="false" />
- </FrameLayout>
上面这段代码,就生成了列表,和顶部的状态栏。顶部的状态栏是通过<include>标签引入的
- <RelativeLayout android:background="@drawable/header"
- android:layout_width="fill_parent" android:layout_height="wrap_content"
- xmlns:android="http://schemas.android.com/apk/res/android">
- <Button android:id="@+id/top_btn_left" android:textColor="@color/button_text_selector"
- android:background="@drawable/top_refresh_selector"
- android:layout_width="wrap_content" android:layout_height="wrap_content"
- android:layout_marginLeft="12.0dip" android:layout_alignParentLeft="true"
- android:layout_centerVertical="true" />
- <Button android:id="@+id/top_btn_right" android:textColor="@color/button_text_selector"
- android:background="@drawable/top_edit_selector" android:layout_width="wrap_content"
- android:layout_height="wrap_content" android:layout_marginRight="12.0dip"
- android:layout_alignParentRight="true" android:layout_centerVertical="true" />
- <TextView android:id="@+id/top_title" android:textSize="22.0sp"
- android:textColor="@color/head_line_text" android:ellipsize="middle"
- android:gravity="center_horizontal" android:layout_width="wrap_content"
- android:layout_height="wrap_content" android:text="@string/user_name"
- android:singleLine="true" android:layout_toLeftOf="@id/top_btn_right"
- android:layout_toRightOf="@id/top_btn_left"
- android:layout_centerInParent="true"
- android:layout_alignWithParentIfMissing="true" />
- </RelativeLayout>
是一个最简单的横向排列布局,就不用多介绍了
3、然后是这个FooterView是怎么添加进来的,看代码
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.home);
- setUpViews();// 设置视图
- setUpListeners();// 设置侦听器
- fillInitData();// 填充初始化数据
- }
- /**
- * 设置视图
- */
- private void setUpViews() {
- listView = getListView();// 得到ListView
- listFooter = (LinearLayout) LayoutInflater.from(this).inflate(
- R.layout.list_footer, null);
- listView.addFooterView(listFooter);// 添加FooterView
- more = (TextView) findViewById(R.id.more);
- loading = (LinearLayout) findViewById(R.id.loading);
- }
通过ListView.addFooterView()方法,来给列表添加一个FooterView,而这个FooterView,也是来自一个layout xml
- <?xml version="1.0" encoding="UTF-8"?>
- <LinearLayout android:layout_width="fill_parent"
- android:layout_height="wrap_content" android:minHeight="?android:listPreferredItemHeight"
- xmlns:android="http://schemas.android.com/apk/res/android">
- <TextView android:textSize="16.0sp" android:textColor="#ff545454"
- android:gravity="center" android:id="@+id/more" android:layout_width="fill_parent"
- android:layout_height="fill_parent" android:text="@string/more" />
- <LinearLayout android:gravity="center"
- android:layout_gravity="center" android:orientation="horizontal"
- android:id="@+id/loading" android:layout_width="fill_parent"
- android:layout_height="fill_parent">
- <ProgressBar android:layout_gravity="center_vertical"
- android:id="@+id/footprogress" android:layout_width="wrap_content"
- android:layout_height="wrap_content" android:indeterminateBehavior="repeat"
- style="?android:progressBarStyleSmallInverse" />
- <TextView android:textColor="#ff000000" android:gravity="left|center"
- android:padding="3.0px" android:layout_width="wrap_content"
- android:layout_height="wrap_content" android:text="@string/loading" />
- </LinearLayout>
- </LinearLayout>
这个FooterView包含一个“更多”的文本框,和一个“读取中”文本框。这里我没弄明白的是,为什么一开始默认只会显示“更多”,读取栏不会显示出来,需要
- more.setOnClickListener(new OnClickListener() {
- @Override
- public void onClick(View v) {
- more.setVisibility(View.GONE);
- loading.setVisibility(View.VISIBLE);
- }
- });
这样做,才能让“更多”按钮消失,显示出“读取中”,希望知道的朋友给我讲解一下。
通过上面的代码,就可以做出效果图里的页面了。
顶部有一排按钮,最底下还有FooterView的ListView页面的更多相关文章
- 添加“返回顶部”小图标按钮的JS(JavaScript)代码详解
如何给自己的网站添加方便快捷的"返回顶部"小图标按钮呢?如下图: JS源代码: /** * JavaScript脚本实现回到页面顶部示例 * @param acceleration ...
- Android 一排按钮居中显示
将一排按钮放在LinearLayout中,设置LinearLayout的Android gravity属性为center_vertical(垂直居中)
- js点击button按钮跳转到另一个新页面
点击按钮怎么跳转到另外一个页面呢?我们在网站制作中可能是需要的,因为有时我们需要做这样的效果,尤其是将按钮做成一个图片,而点击图片要跳转到新的页面时,怎么做到呢? 这样的效果可以:onclick=&q ...
- PHP——0128练习相关2——js点击button按钮跳转到另一个新页面
js点击button按钮跳转到另一个新页面 投稿:whsnow 字体:[增加 减小] 类型:转载 时间:2014-10-10我要评论 点击按钮怎么跳转到另外一个页面呢?点击图片要跳转到新的页面时,怎么 ...
- 纯CSS3实现的顶部社会化分享按钮
今天要分享一款纯CSS3实现的社会化分享按钮,它放置在网页的顶部,你可以选择将它固定在网页顶部,这样对用户分享内容就十分方便.这些社会化分享按钮的图标文件来自google和bootstrap的字体文件 ...
- js或jquery实现点击某个按钮或元素显示div,点击页面其他任何地方隐藏div
点击某个元素显示div,点击页面其他任何地方隐藏div,可用javascript和jquery两种方法实现: 一:javascript实现方法技巧<script>//定义stopPropa ...
- jqgrid如何在一个页面点击按钮后,传递参数到新页面
利用 Content/Scripts/dw-framework.js 中的AddTableMenu属性 <div class="Task" style="backg ...
- HTML:一个form表单有两个按钮,分别提交到不同的页面
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...
- ListCtrl使用指南
http://blog.csdn.net/bqw2008/article/details/2047489 Windows ListCtrl使用技巧1. ListCtrl 风格 LVS_IC ...
随机推荐
- Spring p名称空间配置属性
1.p 名称空间介绍 从 2.0开始,Spring支持使用名称空间的可扩展配置格式.这些名称空间都是基于一种XML Schema定义.事实上,我们所看到的所有bean的配置格式都是基于一个 XML S ...
- kong结合consul
早期版本 ./etcdctl ls / --recursive /name /name1 /name1/wyc /name1/wu /name1/chao /name1/chao/age ------ ...
- MySql数据库理解
在之前的面试过程中,有被问到很多次,关于MySQL数据库相关知识,其中有问到了解存储引擎,数据库优化等问题,问得一脸懵X,确实以前在学习的时候没有去深入了解过这一块儿,今天找到了相应的数据库视频,稍稍 ...
- Nginx简单认识
写在前面: 最近一直在学习,这几天了解了下Nginx,虽然看了些资料,斌哥也讲解了一下,但是貌似缺少了实践,就显得对其认识的不那么深刻.这里也还是简单的记录下把. 什么是Nginx? Nginx (e ...
- Problem D: 调用函数,输出Fibonacci数列的m项至n项
#include<stdio.h> int fib(int n)//定义FIbonacci函数 { int s,i; ||n==) { s=; } else { int s1,s2; s1 ...
- s3c2440对nandflash的操作
转:http://blog.csdn.net/zhaocj/article/details/5795254 nandflash在对大容量的数据存储中发挥着重要的作用.相对于norflash,它具有一些 ...
- ORACLE查询表最近更改数据的方法
修改项目时,涉及到了Oracle中许多表的修改(包括:增加.删除字段,修改注释等).由于开始没有进行记录,造成在上测试机时,忘记了具体修改过哪些表了.后来在网上查找了一些资料,例如: 1.select ...
- Sqlserver__数据表排序记录和界面显示排序记录不一致的问题
背景: 数据表中有编号为1-20的20条记录,有一个排序字段OrderIndex, 其中1/3为0,1/3为1,1/3为2 现象: 每次在sqlserver执行OrderIndex ...
- !!! # @ --- ODATA 云驱动 --- 数据库发布 RESTFUL API
Cloud Drivers ODATA 云驱动 http://www.cdata.com/cloud/ Makes on-premise & cloud data sources ea ...
- easyui-textbox input输入框的一种取值方式
1.html文件 <td> <input id="clientPhone" type="text" name="clientPhon ...