今天给大家带来一个显示gif动态图片的类库,使用方法很简单,只需三步。
1.把GifView.jar加入你的项目。
2.在布局xml中这样写:
<com.ant.liao.GifView android:id="@+id/gif1"
android:layout_height="wrap_content" android:layout_width="wrap_content"
andro...
分类:
移动开发 时间:
2014-11-30 16:56:49
阅读次数:
201
文本再XML里面编辑android:text="@string/xihu"文本在Activlty中编辑获取TextView对象再进行setText(“”)<!--日期--><DatePickerandroid:id="@+id/dp_date"android:layout_height="wrap_content"android:layout_width="wrap_content"/><!--时间--><Tim..
分类:
其他好文 时间:
2014-11-30 00:58:47
阅读次数:
167
16.复制节点:clone();默认不会复制绑定事件,如果传入参数true会复制;17.替换节点:replaceWith()//原节点放在前,新节点放在在后;replaceAll()//反之;原本绑定的事件和附加的数据也会消失;18.包裹节点:包裹选中节点:wrap(),wrapAll(); //如...
分类:
Web程序 时间:
2014-11-30 00:13:20
阅读次数:
244
实现效果:
在布局中声明spinner
<Spinner
android:id="@+id/sp_kc_term"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:animationCache="t...
分类:
其他好文 时间:
2014-11-27 14:31:48
阅读次数:
256
本质是通过复用控件达到性能优化。
1、通过
被复用控件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:o...
分类:
移动开发 时间:
2014-11-24 15:29:28
阅读次数:
232
Android广播类似QT中的信号和槽~~~界面文件activity_main.xml<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world"/>
<Button
android:id="@+id/send1"
android:la..
分类:
移动开发 时间:
2014-11-23 16:07:58
阅读次数:
196
测试结果如下:
* wrap_parent -> MeasureSpec.AT_MOST
* match_parent -> MeasureSpec.EXACTLY
* 具体值 -> MeasureSpec.EXACTLY
一个 view 的 onMeasure 方法最终得到的测量规格值(测量约束值)中包含的测量模式和上面不一定对的上,这是因为 onMeasure 方法中得到的测...
分类:
其他好文 时间:
2014-11-21 20:36:22
阅读次数:
172
界面文件activity_main.xml<Button
android:id="@+id/createButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/hello_world"
android:text="createdatabase"/>
<Button
android:id="@+id/updateButton"
a..
分类:
移动开发 时间:
2014-11-19 18:54:14
阅读次数:
303
单选按钮Radio<RadioGroup
android:id="@+id/genderGroup"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<RadioButton
android:id="@+id/femaleButton"
android:layout_width="wrap_content"
android:..
分类:
移动开发 时间:
2014-11-19 02:17:11
阅读次数:
279
点击Start按钮,每隔3秒在Logcat里打印一句话<Button
android:id="@+id/startButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Start"/>
<Button
android:id="@+id/endButton"
android:layout_width="fill_parent"
a..
分类:
移动开发 时间:
2014-11-19 02:07:42
阅读次数:
216