android屏幕适配详解官方地址:http://developer.android.com/guide/practices/screens_support.html一、关于布局适配建议1、不要使用绝对布局2、尽量使用match_parent 而不是fill_parent 。3、能够使用权重的地方尽...
分类:
移动开发 时间:
2014-12-23 12:03:06
阅读次数:
133
(1)
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="ma...
分类:
移动开发 时间:
2014-12-22 16:23:31
阅读次数:
192
这篇是讲 workthread 模拟向网络访问数据,获得数据后,返回 message 发送给 mainthread ,并修改 textview 的 text。
1、layout:
<TextView
android:id="@+id/textViewId"
android:layout_width="match_parent"
android:...
分类:
移动开发 时间:
2014-12-22 11:09:28
阅读次数:
170
(1)选用radioGroup的图标
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:la...
分类:
移动开发 时间:
2014-12-21 19:29:37
阅读次数:
226
(1)布局文件代码
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_heig...
分类:
移动开发 时间:
2014-12-21 19:26:12
阅读次数:
140
(1)创建布局代码如下:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_h...
分类:
移动开发 时间:
2014-12-21 16:41:20
阅读次数:
203
Android中 xml 属性 fill_parent、warp_content、match_parent区别...
分类:
移动开发 时间:
2014-12-20 16:58:45
阅读次数:
360
android布局属性值fill_parent和match_parent - 泡在网上的日子在编写xml的时候,如果我们想让一个控件布满父容器,可以将layout_width和layout_height的值设置为fill_parent或者是match_parent,在高一点的版本中,谷歌建议为后者,...
分类:
移动开发 时间:
2014-12-18 20:15:28
阅读次数:
159
<TextView?android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@android:color/white"?
android:ellipsize="marquee"?
android:focusable="true"
android:singleL...
分类:
移动开发 时间:
2014-12-17 22:47:41
阅读次数:
185
//创建线性linearlayout布局对象LinearLayoutll=newLinearLayout(this);//设置linearlayout布局方向ll.setOrientation(LinearLayout.VERTICAL);//得到布局或控件高度intheight=LinearLayout.LayoutParams.MATCH_PARENT;//得到布局或控件宽度intwidth=LinearLayout.LayoutParams..
分类:
移动开发 时间:
2014-12-16 19:30:22
阅读次数:
156