从慕课网上学了一门叫做“不一样的自定义实现轮播图效果”的课程,感觉实用性较强,而且循序渐进,很适合初学者。在此对该课程做一个小小的笔记。 实现轮播思路: 1、一般轮播图是由一组图片和底部轮播圆点组成,要想组成这种圆点在图片之上的效果,首先我们应当想到FrameLayout布局。最外层应该是一个Fra ...
分类:
移动开发 时间:
2017-11-13 13:57:08
阅读次数:
175
第一种imageView = new ImageView(this);FrameLayout decorView = (FrameLayout) getWindow().getDecorView();decorView.addView(imageView);FrameLayout.LayoutPar ...
分类:
其他好文 时间:
2017-11-11 00:29:28
阅读次数:
140
存在四种布局:相对布局,线性布局,帧布局,百分比布局。 这里主要用到相对布局与线性布局。 两种方法: 一、相对布局 运用"android:layout_alignParentLeft" "android:layout_alignParentTop" "android:layout_alignPare ...
分类:
其他好文 时间:
2017-11-02 23:19:31
阅读次数:
315
wrap_content:包裹实际文本内容match_parent:当前空间铺满fill_parent:同上,过时 2.3之前的一个属性值五大布局:LinearLayout 线性布局 FrameLayout 帧布局 AbsoluteLayoutLinearLayout 线性布局当 android:o ...
分类:
移动开发 时间:
2017-11-01 15:05:40
阅读次数:
249
我们先放一张Hierarchy Viewer的图:(模拟器Android4.4) 看到数字6了吗,那个RelativeLayout是MainActivity的根ViewGroup, 而在RelativeLayout之前还有5层, 即系统默认的界面DecorView(FrameLayout) --> ...
分类:
移动开发 时间:
2017-10-28 00:30:25
阅读次数:
273
这篇就对LinearLayout、RelativeLayout、自定义ViewGroup、FrameLayout、TableLayout、AbsoluteLayout六种布局进行详细的讲解。 1.LinearLayout布局 线性布局,两种排法: 从左到右 android:orientation=” ...
分类:
移动开发 时间:
2017-10-18 21:36:04
阅读次数:
229
Activity类(Activity及其各种继承子类) dispatchTouchEvent()、onTouchEvent() 2、ViewGroup类(LinearLayout、FrameLayout、ListView等.....) dispatchTouchEvent()、onIntercept ...
分类:
其他好文 时间:
2017-10-05 21:24:56
阅读次数:
151
<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/city_aqi_show" android: ...
分类:
其他好文 时间:
2017-09-27 22:29:36
阅读次数:
197
LinearLayout 不解释 RelativeLayout 不解释 FrameLayout 后加进来的控件覆盖前面的控件 TableLayout 属性在下面 AbsoluteLayout 要设置x、y其实我觉得很麻烦诶 懒得用 GridLayout 贼方便 TableLayout可设置的属性包括... ...
分类:
其他好文 时间:
2017-09-17 13:51:16
阅读次数:
171
CollapsingToolbarLayout作用是提供了一个可以折叠的Toolbar,它继承至FrameLayout,给它设置layout_scrollFlags,它可以控制包含在CollapsingToolbarLayout中的控件(如:ImageView、Toolbar)在响应layout_b ...
分类:
移动开发 时间:
2017-09-16 14:54:53
阅读次数:
270