|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
掌握上面的内容差不多就能写个APP了最好的学习方法就是边写边学自己构想一个小的APP在做的时候遇到问题去找找资料我觉得这样学习比较快也比较扎实下面这些库都是有专门功能的库明天我们来更深切懂得一下Android开辟上的含混手艺。我读过几篇有关的文章,也在StackOverFlow上看过一些相干教程的帖子,以是我想在这里总结一放学到的工具。
为何进修这个含混手艺?
如今愈来愈多的开辟者喜好在自界说控件的时分加上各类含混背景,看看RomanNurik开辟的Muzei大概Yahoo的Weather使用app都十分不错。我十分喜好他们的计划。
我从MarkAllison的帖子(帖子地点)失掉启示,然后写了这篇文章。
这是我们必要完成下图展现的效果:
<br>
准备常识
起首形貌一下我们必要的文件。我们必要一个主Activity,内里有一个含有多个Fragment的ViewPager,每一个Fragment展现一种含混手艺。
这是主Activity的结构文件内容:
1
2
3
4
5
6
7
<android.support.v4.view.ViewPager
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.paveldudka.MainActivity"/>
这是Fragment的结构文件内容:
<p>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
<?xmlversion="1.0"encoding="utf-8"?>
<FrameLayoutxmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/picture"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/picture"
android:scaleType="centerCrop"/>
<TextView
android:id="@+id/text"
android:gravity="center_horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
<p>android:text |
|