(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
RatingBar评分条系统UI控件main.xml文件写:<RatingBarandroid:id="@+id/ratingbar"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginLeft="10dip"android:isIndicator="true"android:numStars="5"android:rating="5"></..
分类:
移动开发 时间:
2014-12-20 18:23:01
阅读次数:
221
android布局属性值fill_parent和match_parent - 泡在网上的日子在编写xml的时候,如果我们想让一个控件布满父容器,可以将layout_width和layout_height的值设置为fill_parent或者是match_parent,在高一点的版本中,谷歌建议为后者,...
分类:
移动开发 时间:
2014-12-18 20:15:28
阅读次数:
159
代码实现Layout android:layout_alignParentRight例如:android:id="@+id/account_option" android:layout_width="20px"android:layout_height="20px" android:focusabl...
分类:
移动开发 时间:
2014-12-18 16:47:28
阅读次数:
218
黑色的是divider的高度,怎么让他变透明啊?
布局如下: <ExpandableListView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="15dip"
...
分类:
其他好文 时间:
2014-12-18 11:57:56
阅读次数:
142
<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
最终实现的效果:
先看上面的怎么实现:
分为三个部分,一是返回的按钮,二是中间聊天的用户名或者聊天的群名,三是删除按钮或者群详情的按钮。
整体使用相对布局。
<RelativeLayout
android:id="@+id/top_bar"
android:layout_width="match_parent"
...
分类:
其他好文 时间:
2014-12-16 19:22:32
阅读次数:
321
android不同手机对于edittext光标显示样式不一,所以如果设置不同手机显示一样的效果呢,统一设置一个样式就可以了,示例代码如下: <EditText android:layout_width="fill_parent" android:layout_height="wrap...
分类:
移动开发 时间:
2014-12-15 12:20:19
阅读次数:
261