一、布局
1.activity_main布局
android:id="@+id/refresh_view"
android:layout_width="match_parent"
android:layout_height="match_parent" >
android:id="@+id/gv"
...
分类:
其他好文 时间:
2016-05-21 10:19:10
阅读次数:
222
Q:findViewById返回null? A: 代码逻辑错误: 最终,发现错误竟然是在layout文件中把android:id写成了android:name。 android:name="@+id/button" 这个也能生成R.id.button,这个得留意了。 经验:字符串 "@+id/xxx ...
分类:
其他好文 时间:
2016-05-20 13:22:33
阅读次数:
133
1.Your content must have a TabHost
whose id attribute is 'android.R.id.tabhost' 解决
android:id="@android:id/tabhost"注意是@android:id,不是平时写的@id
2.Attempt to invoke virtual method 'boole...
分类:
其他好文 时间:
2016-05-13 03:54:13
阅读次数:
190
1.在res/menu下建立main.xml
<item
android:id="@+id/action_share"
android:actionProviderClass="android.widget.ShareActionProvider"
android:showAsAction="ifRoom"
andr...
分类:
其他好文 时间:
2016-05-13 03:22:03
阅读次数:
179
##1. 广播接收者概念
BroadCastReceiver,是Android四大组件之一。必须注册。
1. 注册方式:1)静态注册2)动态注册##2. IP拨号器 有序广播activity_main.xml
<EditText
android:id="@+id/et_ipnum"
android:layout_width="wrap_content"...
分类:
移动开发 时间:
2016-05-12 23:45:20
阅读次数:
422
实现思路:将手势写入GestureLibrary中,对其他手势进行匹配对比,进行识别
现在布局中加入GestureOverlayView组件
<android.gesture.GestureOverlayView
android:id="@+id/add_gesture"
android:layout_width="match_parent"
andr...
分类:
移动开发 时间:
2016-05-12 23:27:02
阅读次数:
170
最近做项目的时候,做检查更新功能,需要做一个notification的下载进度,就需要使用progressBar控件,本来打算使用自定义的继承自ProgressBar,结果发现不能用,谷歌限制了只能使用特定的系统的progressBar,所以不得自定义样式了。
在xml中使用方式:
可以使用系统的样式 <ProgressBar
android:id="@+id/pro...
分类:
其他好文 时间:
2016-05-12 20:22:47
阅读次数:
228
android :id= "@+id/root"
android :layout_width= "match_parent"
android :layout_height= "match_parent"
android :columnCount= "4"
android :rowCount= "6">
android :layout_width...
分类:
其他好文 时间:
2016-05-12 18:25:59
阅读次数:
274
Tablayout 结合 viewPager <android.support.design.widget.TabLayout
android:id="@+id/tab_FindFragment_title"
android:layout_width="match_parent"
android:layout_height="wrap_co...
分类:
其他好文 时间:
2016-05-12 18:18:30
阅读次数:
144
1.activity_main.xml
<android.support.v4.view.ViewPager
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/viewpager"
android:layout_width="match_parent"
and...
分类:
其他好文 时间:
2016-05-12 14:02:28
阅读次数:
170