来源:https://stackoverflow.com/questions/8337180/custom-single-choice-listview/12823457#12823457
1.在listview item里面设置
<RadioButton
android:id="@+id/radio1"
android:checked="false"
a...
分类:
其他好文 时间:
2015-04-18 14:37:42
阅读次数:
169
RecyclerView 是 android-support-v7-21 版本中新增的一个 Widgets, 还有一个 CardView 会在下次介绍使用。
老的版本不支持,你可以跟新下载直接拷贝到libs里面使用
布局里面这样写
android:id="@+id/recyclerView"
android:layout_...
分类:
其他好文 时间:
2015-04-17 14:03:39
阅读次数:
166
<EditText ??????????????? android:id="@+id/searchEditText" ??????????????? android:layout_width="0dp" ??????????????? android:layout_height="fill_parent...
分类:
其他好文 时间:
2015-04-17 11:55:20
阅读次数:
121
要给 TextView 加上特殊效果,方式主要有几种:
第一种,自动应用效果,使用 android:autolink 属性,如:
Java代码
"http://schemas.android.com/apk/res/android"
android:id="@+id/text1"
android:la...
分类:
移动开发 时间:
2015-04-15 17:12:25
阅读次数:
165
今天在一个布局文件中看见如下内容: [html] view plaincopy 先说效果,当ListView不为空时,只显示listview;反之显示TextView 和Button。 这跟java文件里的代码没有关系,是由TextView的android:id="@+id/android:empt...
分类:
移动开发 时间:
2015-04-15 16:47:49
阅读次数:
141
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
android:id="@+id/short...
分类:
移动开发 时间:
2015-04-14 11:22:10
阅读次数:
152
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
android:id="@+id/top_tv"
android:layout_wi...
分类:
移动开发 时间:
2015-04-14 11:13:02
阅读次数:
223
在使用官方的控件SwipeRefreshLayout,发现原先的emptyView消失了,在网上搜索了许多资料,没有匹配我的答案,因为我的emptyView是用一个帮助类来实现的,后来百经挫折,终于找到了一个完美的方法了,介绍如下:
首先,更改xml的布局,在外面增加一层Framelayout,改善后的XML布局如下:
<FrameLayout
android:id=...
分类:
移动开发 时间:
2015-04-13 23:04:23
阅读次数:
236
WebView是Android用来加载网页的组件,如果要使用此组件加载网上页面,则需要添加网络权限:
WebView和其他组件一样可以在xml中布局:
<WebView
android:id="@+id/webView"
android:layout_width="fill_parent"
a...
分类:
移动开发 时间:
2015-04-08 15:05:26
阅读次数:
132
手机卫士-09
课1
回顾高级工具的短信备份 ToolsActivity.java(前台界面) smsBackupparser.java(后台逻辑) 备份短信是一个很耗时的操作,可能需要很长的时间 修改activity_tool.xml的进度条progressBar
<!-- <ProgressBar
android:id="@+id/pb"
style="?andr...
分类:
移动开发 时间:
2015-04-07 17:47:05
阅读次数:
245