Android UI概述 Android UI由View和ViewGroup组成。
ViewGroup是不可见的,用于组织和排版View和ViewGroup。 View用户显示内容,以及响应用户的操作。
可以按照需要安排UI的叠放,不过叠放的层数越少,性能上来说越好。 Android UI可以在co...
分类:
移动开发 时间:
2014-07-22 23:08:54
阅读次数:
481
public
booleanonInterceptTouchEvent(MotionEventev) Implement this method to intercept
all touch screen motion events. This allows you to watch events....
分类:
移动开发 时间:
2014-07-22 23:07:55
阅读次数:
537
public View getView(int position, View
convertView, ViewGroup parent) { View view = inflater.inflate(R.layout.gv_item,
null); TextView tv = (TextV...
分类:
其他好文 时间:
2014-05-10 00:41:22
阅读次数:
283
下面是第一篇的连接Android的ViewGroup中事件的传递机制(一)关于onInterceptTouchEvent和onTouchEvent的详细解释。
1 public class MainActivity extends Activity { 2 Group1 group1; 3 ...
分类:
移动开发 时间:
2014-05-09 20:21:43
阅读次数:
379
本文主要针对dispatchTouchEvent,onInterceptTouchEvent,onTouchEvent三个方法,通过简单的例子来简单的介绍下。根据字面意思的理解,dispatchTouchEvent分发触摸事件,onInterceptTouchEvent拦截触摸事件,onTouchE...
分类:
移动开发 时间:
2014-05-09 20:21:17
阅读次数:
501
错误日志1:06-13 10:55:50.410: E/KVLog(1129):Error
info:java.lang.ClassCastException: android.widget.LinearLayout$LayoutParams06-13
10:55:50.423: E/KVLog(1...
分类:
移动开发 时间:
2014-05-08 23:50:45
阅读次数:
2753
LinearLayout.LayoutParamsextendsViewGroup.MarginLayoutParamsjava.lang.Object?android.view.ViewGroup.LayoutParams?android.view.ViewGroup.MarginLayoutPa...
分类:
移动开发 时间:
2014-05-05 22:42:45
阅读次数:
361
自定义控件分为两种一种是自定义ViewGroup控件,一种是自定义View控件;跟踪View的步伐其实能跟到Java实现的最下面我们能发现的也就只有Canvas了,再下去就是C++或C实现了;所以本文主要是站在设计的的角度讲解一下Canvas跟View的关系,再简单分析一下Canvas用法;
View作为Android中一切显示视图的父类,我们可看到它的绘制方法draw(Canvas can...
分类:
移动开发 时间:
2014-05-04 18:39:41
阅读次数:
430
1. ListView需要设置adapter,它的item是通过adapter的方法getView(int position, View convertView, ViewGroup parent)获得的。
2. ListView中只有第一屏的item需要新建,它的引用会被存在RecycleBin对象内,在拖动时后面的item实际上是重从了之前创建的item。3. 根据上述,ListView在需...
分类:
其他好文 时间:
2014-05-04 09:50:38
阅读次数:
345
涉及到滑动,就涉及到VIEW,大家都知道,android的UI界面都是由一个一个的View以及View的派生类组成,View作为基类,而常用的布局里面的各种布局就是它派生出来的ViewGroup的子类,ViewGroup作为各个组件的容器搭建了整体的UI。以下是android
UI的结构示示意图:
查看源码
/**
* Implement this to do y...
分类:
移动开发 时间:
2014-04-27 20:41:28
阅读次数:
883