
adroid基础
pageTan
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
android mediaPlayer播放网络音频问题记录
播放在线音频报错问题解决,Prepare failed.: status=0x1原创 2022-08-08 11:23:54 · 1598 阅读 · 0 评论 -
android事件处理总结--dispatchTouchEvent
从今天解决的一个问题了解到, viewGroup的dispatchTouchEvent方法会在其onInterceptTouchEvent方法之前被触发.又搜了些资料,个人觉得最受用的总结如下:首先触发ACTIVITY的dispatchTouchEvent然后触发ACTIVITY的onUserInteraction然后触发LAYOUT的dispatchTouchEv转载 2014-05-02 00:25:19 · 563 阅读 · 0 评论 -
Intetn 和 Intent Filter
Intent 和 Intent FilterAndroid 应用程序中有三大核心组件: Activity, Service, Broadcast Receiver 都是通过被称之为意图的消息运行。Intent messaging is a facility for late run-time binding between components in the same or d转载 2014-04-17 23:03:39 · 1078 阅读 · 0 评论 -
android 隐藏系统键盘
public static void closeBoard(Context mcontext) { InputMethodManager imm = (InputMethodManager) mcontext .getSystemService(Context.INPUT_METHOD_SERVICE); // imm.hideSoftInputFromWindow(myEd转载 2014-04-20 15:00:56 · 755 阅读 · 0 评论 -
touch事件分发
1.Activity的最顶层Window是PhoneWindow,PhoneWindow的最顶层View是DecorView2.一个clickable或者longClickable的View会永远消费Touch事件,不管他是enabled还是disabled的3.View的长按事件是在ACTION_DOWN中执行,要想执行长按事件该View必须是longClickable的,并且不转载 2014-05-29 22:36:41 · 850 阅读 · 0 评论 -
viewpage使用注意
在音乐播放器中,我尝试使用viewpage原创 2014-08-02 12:24:11 · 1042 阅读 · 0 评论 -
android布局
andorid布局有好几种,常用的有LinearLayout, RelativeLayout, frameLayout在我的使用中,frameLayout多用于fragment中的原始布局,用于替换fragment而最常用的就是LinearLayout, RelativeLayout android:gravity="center",这个viewgr原创 2015-04-28 19:58:10 · 389 阅读 · 0 评论