android:layout_width和android:layout_height常用这三个属性都用来适应视图的水平或垂直大小,一个以视图的内容或尺寸为基础的布局比精确地指定视图范围更加方便。fill_parent&match_parent:在Android2.2及以上版本中,fill_paren...
分类:
其他好文 时间:
2014-12-14 21:18:38
阅读次数:
232
activity_main.xml:
<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-10 16:21:25
阅读次数:
141
main.xml 文件
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
android:id="@+id/ll_week"
...
分类:
移动开发 时间:
2014-12-09 17:51:12
阅读次数:
308
问题:tabhost固定在底部,某个tab中存在Listview,运行起来后发现如果listview中的列表内容比较多(超过一屏时),就会出现部分内容被tabhost遮盖了。原Listview布局文件<ListView
android:id="@+id/listBudgetSet"
android:layout_width="match_parent"
android:layout..
分类:
移动开发 时间:
2014-12-09 15:53:20
阅读次数:
162
先来张效果图: ?? layout布局设置: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_pa...
分类:
移动开发 时间:
2014-12-08 02:09:21
阅读次数:
219
Drawable Tinting(着色)
设置 ImageView 的 android:tint 属性,可以达到以下效果:
layout:
<ImageView
android:layout_width="100dp"
android:layout_height="100dp"
android:eleva...
分类:
移动开发 时间:
2014-12-07 13:53:21
阅读次数:
232
AbsoluteLayout绝对布局:layout/activity_main.xml<AbsoluteLayoutxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"><TextView..
分类:
移动开发 时间:
2014-12-07 06:54:36
阅读次数:
156
RelativeLayout(相对布局):layout/activity_main.xml<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"><Text..
分类:
移动开发 时间:
2014-12-07 06:54:19
阅读次数:
176
TableLayout(相对布局):layout/activity_main.xml<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:orientati..
分类:
其他好文 时间:
2014-12-07 06:53:19
阅读次数:
223
FrameLayout(帧布局):layout/activity_main.xml<FrameLayoutxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"><ImageViewand..
分类:
其他好文 时间:
2014-12-07 06:52:15
阅读次数:
144