mirror of
https://github.com/woheller69/solxpect.git
synced 2026-01-31 22:31:46 +01:00
39 lines
No EOL
1.3 KiB
XML
39 lines
No EOL
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
<androidx.viewpager.widget.ViewPager
|
|
android:id="@+id/view_pager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/layoutDots"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dots_height"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_marginBottom="@dimen/dots_margin_bottom"
|
|
android:gravity="center"
|
|
android:orientation="horizontal" />
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:alpha=".5"
|
|
android:layout_above="@id/layoutDots"
|
|
android:background="@android:color/white" />
|
|
|
|
<Button
|
|
android:id="@+id/btn_next"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_alignParentRight="true"
|
|
android:background="@null"
|
|
android:text="@string/next"
|
|
android:textColor="@android:color/white" />
|
|
|
|
|
|
</RelativeLayout> |