懒得开头说啥了,直接开始贴代码,全粘贴上用就行了,这是个基础框架,如果实际上要改的话在这基础上改就好了,
比如这个小点只有滑动第一次之后才会出现(懒得弄刚开始就有了)。
MainActivity的布局:
Button 是为了动态添加新的Fragment
下面的LinearLayout 是存放小点的
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.umeng.soexample.hongyangzzzz.MainActivity">
<android.support.v4.view.ViewPager
android:id="@+id/vp"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<Button
android:id="@+id/btn1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:text="Btn1"
android:textAllCaps="false"/>
<LinearLayout
android:id="@+id/ll"
android:layout_width="match_parent"
android:layout_height="40dp&#