当前位置:  编程技术>移动开发
本页文章导读:
    ▪ListView 页眉页脚成效与背景渐变        ListView 页眉页脚效果与背景渐变     大家都知道,在我们调用ListView的addFooterView()方法给List增加一个页脚时,如果列表内容很多,超过了屏幕大小,那么页脚就看不到了,可我们一般想要的.........
    ▪ 在EditText或许TextView中插入图片        在EditText或者TextView中插入图片 在EditText和TextView中插入图片主要用到SpannableString   SpannableString ss = new SpannableString("pic"); Drawable d = getResources().getDrawable(R.drawable.icon); d.setBounds(0, 0, d.getIntrinsicW.........
    ▪ 真的是人材呀       真的是人才呀! 真的是人才呀! ......

[1]ListView 页眉页脚成效与背景渐变
    来源: 互联网  发布时间: 2014-02-18
ListView 页眉页脚效果与背景渐变

    大家都知道,在我们调用ListView的addFooterView()方法给List增加一个页脚时,如果列表内容很多,超过了屏幕大小,那么页脚就看不到了,可我们一般想要的效果是如下图所示的,在ListView的内容超过屏幕时,页脚还在屏幕的底部。

 

本文将介绍上图所示的ListView效果,同时介绍一下在android中如何实现渐变效果,就像上图中的页眉页脚的背景色一样。

实现上面的效果主要使用几个RelativeLayout标签和ListView组合即可,main.xml 代码如下所示:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
	android:orientation="vertical" 
	android:layout_width="fill_parent"
	android:layout_height="fill_parent">
	
	<RelativeLayout android:id="@+id/listHeader"
		android:background="@drawable/jbshape"
		android:layout_alignParentTop="true"
		android:gravity="center_horizontal" 
		android:layout_width="fill_parent"
		android:layout_height="wrap_content">
		<TextView android:text="文本居中显示" 
			android:textColor="#ff0000"
			android:textSize="18dip"
			
			android:layout_width="fill_parent"
			android:layout_height="wrap_content"
			android:gravity="center" />
	</RelativeLayout>
	
	<RelativeLayout android:id="@+id/listFooter"
		android:background="@drawable/jbshape"
		android:gravity="center_horizontal"
		android:layout_alignParentBottom="true" 
		android:layout_width="fill_parent"
		android:layout_height="wrap_content"
		>
		<Button android:id="@+id/prePage" 
			android:layout_width="wrap_content"
			android:layout_height="wrap_content" 
			android:text="上一页"
			android:layout_alignParentLeft="true" />
		<Button 
			android:layout_width="wrap_content"
			android:layout_gravity="right" 
			android:layout_height="wrap_content"
			android:text="下一页" 
			android:layout_toRightOf="@id/prePage" />
	</RelativeLayout>
	
	<ListView android:id="@android:id/list" 
		android:layout_width="fill_parent"
		android:layout_height="fill_parent" 
		android:layout_below="@id/listHeader"
		android:layout_above="@id/listFooter"/>
		
	<TextView android:id="@android:id/empty" 
	    android:layout_width="fill_parent" 
	    android:layout_height="wrap_content" 
	    android:text="Not Data yet!"/>
</RelativeLayout>

 

几个关键点:
1、在页眉(id为listHeader)使用属性android:layout_alignParentTop=”true”, 声明页眉部分与父视图的顶部对齐。


2、在页脚(id为listFooter)使用属性android:layout_alignParentBottom=”true” 声明其与父视图的底部对齐。

3、在 ListView中使用属性android:layout_below=”@id/listHeader” android:layout_above=”@id/listFooter” 声明ListView位于listHeader的下方,位于listFooter的上方。

 

这样我们的页眉页脚效果就实现了。

 

再来看看是怎么实现渐变的?

 

我们在res/drawable目录下新建一个叫jbshape.xml的文件,内容如下所示:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
	android:shape="rectangle">
	<gradient android:startColor="#509245" android:centerColor="#3e8532"
		android:endColor="#509245" android:type="linear" android:angle="90"
		android:centerX="0.5" android:centerY="0.5" />
	<padding android:left="7dp" android:top="7dp" android:right="7dp"
		android:bottom="7dp" />
	<corners android:radius="4dp" />
</shape>

 

这里就不多讲了,相信你一看就能看懂,android:shape 配置的是图形的形式,主要包括方形、圆形等,本例中为方形。gradient节点主要配置起点颜色、终点颜色、中间点的坐标、中间点的颜色、渐变角度(90度为上下渐变,0为左右渐变),padding节点主要配置上下左右边距,corners节点配置四周园角的半径。

android/sdk/docs/guide/topics/resources/drawable-resource.html 中有具体设置.

 

使用渐变就更简单了,如第一部分代码中所示的,直接用android:background=”@drawable/jbshape” 配置背景为刚才配置的渐变图形即可。

 


    
[2] 在EditText或许TextView中插入图片
    来源: 互联网  发布时间: 2014-02-18
在EditText或者TextView中插入图片

在EditText和TextView中插入图片主要用到SpannableString

 

SpannableString ss = new SpannableString("pic");

Drawable d = getResources().getDrawable(R.drawable.icon);

d.setBounds(0, 0, d.getIntrinsicWidth(), d.getIntrinsicHeight());

ImageSpan span = new ImageSpan(d, ImageSpan.ALIGN_BASELINE);

ss.setSpan(span, 0, ss.length(),Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

typeEditText.append(ss);


    
[3] 真的是人材呀
    来源: 互联网  发布时间: 2014-02-18
真的是人才呀!
真的是人才呀!

    
最新技术文章:
▪Android开发之登录验证实例教程
▪Android开发之注册登录方法示例
▪Android获取手机SIM卡运营商信息的方法
▪Android实现将已发送的短信写入短信数据库的...
▪Android发送短信功能代码
▪Android根据电话号码获得联系人头像实例代码
▪Android中GPS定位的用法实例
▪Android实现退出时关闭所有Activity的方法
▪Android实现文件的分割和组装
▪Android录音应用实例教程
▪Android双击返回键退出程序的实现方法
▪Android实现侦听电池状态显示、电量及充电动...
▪Android获取当前已连接的wifi信号强度的方法
▪Android实现动态显示或隐藏密码输入框的内容
▪根据USER-AGENT判断手机类型并跳转到相应的app...
▪Android Touch事件分发过程详解
▪Android中实现为TextView添加多个可点击的文本
▪Android程序设计之AIDL实例详解
▪Android显式启动与隐式启动Activity的区别介绍
▪Android按钮单击事件的四种常用写法总结
▪Android消息处理机制Looper和Handler详解
▪Android实现Back功能代码片段总结
▪Android实用的代码片段 常用代码总结
▪Android实现弹出键盘的方法
▪Android中通过view方式获取当前Activity的屏幕截...
▪Android提高之自定义Menu(TabMenu)实现方法
▪Android提高之多方向抽屉实现方法
▪Android提高之MediaPlayer播放网络音频的实现方法...
▪Android提高之MediaPlayer播放网络视频的实现方法...
▪Android提高之手游转电视游戏的模拟操控
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3