Tips:
ListView嵌套ListView,有footerView时,需要重新measure高度时,footerview最顶层的view不能是RelativeLayout,最好用LinearLayout包RelativeLayout.否则
View.measure(0,0)会报异常。
ListView 加HeaderView,在OnItemClick时,positi...
分类:
移动开发 时间:
2014-07-29 15:15:08
阅读次数:
245
#1.下载utils项目
https://github.com/wyouflf/xUtils
#2布局文件中实现UI
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
...
分类:
移动开发 时间:
2014-07-29 12:59:56
阅读次数:
240
首先声明只有在Linearlayout中,该属性才有效。之所以android:layout_weight会引起争议,是因为在设置该属性的同时,设置android:layout_width为wrap_content和match_parent会造成两种截然相反的效果。android:layout_wei...
分类:
移动开发 时间:
2014-07-29 11:41:16
阅读次数:
228
小到控件布局,大到整个app的屏幕适配,百分比布局都是很重要的。可惜、可恨的是android的百分比布局先天支持的不太好。举个例子,如果说要使两个按钮按照1:2铺满父容器,该怎么办,这个大家会说,很容易啊:(1)先把按钮都放进LinearLayout容器。(2)修改按钮的layout_weight,...
分类:
其他好文 时间:
2014-07-29 11:14:26
阅读次数:
309
对于LinearLayout何时生效的问题对于 LinearLayout当 android:orientation="vertical" 时, 只有水平方向的设置才起作用,垂直方向的设置不起作用。即:left,right,center_horizontal 是生效的。当 android:orient...
分类:
移动开发 时间:
2014-07-28 19:08:34
阅读次数:
332
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
MainActivity如下:
package cc.cv;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.ImageView;
import android.widget.LinearLayout;
import and...
分类:
其他好文 时间:
2014-07-28 00:06:39
阅读次数:
248
Android界面的布局主要有四种,分别为RelativeLayout、LinearLayout、TableLayout、FrameLayout,接下来分别介绍这些布局如何使用(为了简单起见,接下来的介绍工作中,我分别附上布局文件的代码以及效果图,供大家参考) 一:RelativeLayout .....
分类:
移动开发 时间:
2014-07-27 22:43:19
阅读次数:
343
先看效果:
布局:
<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
一、资源文件:1、文字选择器: 2、背景选择器: 3、属性文件: ...
分类:
其他好文 时间:
2014-07-27 09:48:12
阅读次数:
276