本系列文章都会以一个程序的实例开发为主线来进行讲解,以求达到一个循序渐进的学习效果,这样更能加深大家对于程序为什么要这样写的用意,理论加上实际的应用才能达到事半功倍的效果,不是吗?
最下方有源码的下载地址,几乎源码的每一行都有注释,写的通俗易懂,非常清晰,如有不懂的可以留言,本博主一定尽心尽力,为大家答题解惑,希望大家多多支持,好的,话不多说,让我们回归到今天的正题。
一、实现的效果图
也许是养成了这样一个习惯,每次看别人的代码前,必须要先看实现的效果图达到了一个什么样的效果,是不是跟自己想要实现的效果类似,有图才有真相嘛,呵呵。
二、编码前的准备工作
ViewPager是Android3.0之后提供的新特性,所以要想让你的应用向下兼容就必须要android-support-v4.jar这个包的支持,这是一个来自google提供的一个附加包。大家搜下即可。
三、项目结构图
四、具体的编码实现
1、 布局界面比较简单,加入ViewPager组件,以及底部的引导小点,activity_main.xml:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
android:layout_width = "wrap_content"
android:layout_height = "wrap_content" >
< android.support.v4.view.ViewPager
android:id = "@+id/viewpager"
android:layout_width = "fill_parent"
android:layout_height = "fill_parent"
< LinearLayout
android:id = "@+id/ll"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:layout_alignParentBottom = "true"
android:layout_centerHorizontal = "true"
android:layout_marginBottom = "24.0dip"
android:orientation = "horizontal" >
< ImageView
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:layout_gravity = "center_vertical"
android:clickable = "true"
android:padding = "15.0dip"
android:src = "@drawable/point" />
< ImageView
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:layout_gravity = "center_vertical"
android:clickable = "true"
android:padding = "15.0dip"
android:src = "@drawable/point" />
< ImageView
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:layout_gravity = "center_vertical"
android:clickable = "true"
android:padding = "15.0dip"
android:src = "@drawable/point" />
< ImageView
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:layout_gravity = "center_vertical"
android:clickable = "true"
android:padding = "15.0dip"
android:src = "@drawable/point" />
</ LinearLayout >
</ RelativeLayout >
|
2、其中小点的图片用一个selector来控制颜色,point.xml:
1
2
3
4
5
6
|
<? xml
= "1.0"
= "UTF-8" ?>
< selector
< item
= "true"
= "@drawable/point_normal"
< item
= "false"
= "@drawable/point_select"
</ selector >
|
3、 ViewPager适配器代码,ViewPagerAdapter.java:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
package
import
import
import
import
/**
*
*
*/
public
extends
//界面列表
private
public
this .views
}
/**
*
*/
@Override
public
if
null )
return
}
return
;
}
/**
*
*/
@Override
public
int
((ViewPager) 0 );
return
}
/**
*
*/
@Override
public
return
}
/**
*
*/
@Override
public
int
((ViewPager)
}
}
|
4、主程序入口类,MainActivity.java:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
|
package
import
import
import
import
import
import
import
import
import
import
/**
*
*
*/
public
extends
implements
//定义ViewPager对象
private
//定义ViewPager适配器
private
//定义一个ArrayList来存放View
private
//引导图片资源
private
[]
//底部小点的图片
private
//记录当前选中位置
private
@Override
protected
super .onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initView();
initData();
}
/**
*
*/
private
//实例化ArrayList对象
views new
//实例化ViewPager
viewPager
//实例化ViewPager适配器
vpAdapter new
}
/**
*
*/
private
//定义一个布局并设置参数
LinearLayout.LayoutParams new
LinearLayout.LayoutParams.FILL_PARENT);
//初始化引导图片列表
for ( int
0 ;
ImageView new
this );
iv.setLayoutParams(mParams);
iv.setImageResource(pics[i]);
views.add(iv);
}
//设置数据
viewPager.setAdapter(vpAdapter);
//设置监听
viewPager.setOnPageChangeListener( this );
//初始化底部小点
initPoint();
}
/**
*
*/
private
LinearLayout
points new
//循环取得小点图片
for
int
0 ;
//得到一个LinearLayout下面的每一个子元素
points[i]
//默认都设为灰色
points[i].setEnabled( true );
//给每个小点设置监听
points[i].setOnClickListener( this );
//设置位置tag,方便取出与当前位置对应
points[i].setTag(i);
}
//设置当面默认的位置
currentIndex 0 ;
//设置为白色,即选中状态
points[currentIndex].setEnabled( false );
}
/**
*
*/
@Override
public
int
}
/**
*
*/
@Override
public
int
float
int
}
/**
*
*/
@Override
public
int
//设置底部小点选中状态
setCurDot(position);
}
/**
*
*/
@Override
public
int
setCurView(position);
setCurDot(position);
}
/**
*
*/
private
int
if
0
return ;
}
viewPager.setCurrentItem(position);
}
/**
*
*/
private
int
if
0
1
return ;
}
points[positon].setEnabled( false );
points[currentIndex].setEnabled( true );
currentIndex
}
}
|
这篇主要是让大家能够实现一个简单的例子,让你的程序先动起来,才有信心和勇气挑战更复杂的UI设计和开发,在后面的几篇章节中,博主也会以同样生动和富有激情的讲解,给大家带来更加的复杂的演示和代码,如仿微信、和人人网的引导界面的开发,加入了动画的效果,运行起来也会更炫一点。
来源: csdn 作者:yangyu20121224