最终实现的效果:
先看上面的怎么实现:
分为三个部分,一是返回的按钮,二是中间聊天的用户名或者聊天的群名,三是删除按钮或者群详情的按钮。
整体使用相对布局。
<RelativeLayout
android:id="@+id/top_bar"
android:layout_width="match_parent"
...
分类:
其他好文 时间:
2014-12-16 19:22:32
阅读次数:
321
1.LinearLayout
orention 水平和垂直
weight 分割闲置空间
水平布局 分割宽度
垂直布局 分割的高度
分割的时候 指定的高度或者宽度不能用fill_parent/match_parent
2.Tablayout
一行
缺陷 第一行的列级关系 会影响下面所有的列
3.RelativeL...
分类:
移动开发 时间:
2014-12-16 10:07:58
阅读次数:
201
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
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