50 lines
1.5 KiB
XML
50 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="vertical"
|
|
android:layout_height="match_parent" android:layout_width="match_parent">
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/white"
|
|
>
|
|
|
|
<android.support.v4.view.ViewPager
|
|
android:id="@+id/startPager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_alignParentTop="true">
|
|
|
|
</android.support.v4.view.ViewPager>
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginBottom="18dp">
|
|
<!--android:visibility="gone"-->
|
|
|
|
|
|
<ImageView
|
|
android:layout_width="10dip"
|
|
android:layout_height="10dip"
|
|
android:src="@drawable/white_point"
|
|
android:id="@+id/point1"
|
|
|
|
android:layout_margin="20dip" />
|
|
|
|
<ImageView
|
|
android:layout_width="10dip"
|
|
android:layout_height="10dip"
|
|
android:src="@drawable/white_point"
|
|
android:id="@+id/point2"
|
|
android:alpha="0.5"
|
|
|
|
android:layout_margin="20dip" />
|
|
|
|
</LinearLayout>
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout> |