定义的getView执行多次的ListView布局:
<ListView
android:id="@+id/lv_messages"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParent...
分类:
移动开发 时间:
2014-07-30 20:58:54
阅读次数:
256
首先声明只有在Linearlayout中,该属性才有效。之所以android:layout_weight会引起争议,是因为在设置该属性的同时,设置android:layout_width为wrap_content和match_parent会造成两种截然相反的效果。android:layout_wei...
分类:
移动开发 时间:
2014-07-29 11:41:16
阅读次数:
228
1.布局文件
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:orientation=...
分类:
移动开发 时间:
2014-07-28 16:04:13
阅读次数:
264
先看效果:
布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout...
分类:
移动开发 时间:
2014-07-27 11:39:04
阅读次数:
238
前面做的ip拨号器在监听外拨电话时用的是系统提供的广播事件,而有些时候我们需要自己设定广播事件来满足特定的需要。Ok,今天整一下自定义广播事件,我们用一个状态监测模块向一个3G模块发送报警信息来实现这一想法。
先定义一个3g模块用来接收特定的广播:
<TextView
android:layout_width="wrap_content"...
分类:
移动开发 时间:
2014-07-24 14:49:35
阅读次数:
268
※效果
※简介
显示进度的按钮,可用于数据的提交,系统登录等,动画效果很棒,提高用户体验。
※使用说明
Declare button inside your layout XML file:
android:id="@+id/btnWithText"
android:layout_width="196dp"
android:la...
分类:
移动开发 时间:
2014-07-23 13:25:56
阅读次数:
250
布局layout中使用: 1 4 android:progressDrawable="@drawable/myprogress" 5 android:layout_width="158dp" 6 android:layout_he...
分类:
其他好文 时间:
2014-07-22 22:45:34
阅读次数:
180
Handler的实质就是异步消息处理。实例一:Handler的基本用法XML布局代码:<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<T..
分类:
移动开发 时间:
2014-07-19 16:28:30
阅读次数:
334
先看效果图
这个是我们自己的apk点击之后的效果
下边是布局文件
activity_main.xml主布局文件
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="matc...
分类:
移动开发 时间:
2014-07-19 02:15:46
阅读次数:
280
原文地址:http://blog.sina.com.cn/s/blog_7cd0c0a80100zmfe.html在android开发中LinearLayout很常用,LinearLayout的内控件的android:layout_weight在某些场景显得非常重要,比如我们需要按比例显示。andr...
分类:
移动开发 时间:
2014-07-16 23:01:21
阅读次数:
296