mirror of https://github.com/LeOS-GSI/LeOS-Genesis
43 lines
1.9 KiB
XML
43 lines
1.9 KiB
XML
|
<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:background="@color/green_dark"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
|
||
|
<androidx.constraintlayout.widget.ConstraintLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<com.darkweb.genesissearchengine.appManager.landingManager.SwipeDisabledViewPager
|
||
|
android:id="@+id/pager"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_alignParentTop="true"
|
||
|
android:layout_marginStart="-10dp"
|
||
|
android:layout_marginTop="-10dp"
|
||
|
android:layout_marginEnd="-15dp"
|
||
|
android:layout_marginBottom="-10dp"
|
||
|
android:background="@color/white"
|
||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="parent" />
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/button2"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginEnd="25dp"
|
||
|
android:layout_marginBottom="25dp"
|
||
|
android:background="@xml/sc_rounded_corner"
|
||
|
android:onClick="nextPage"
|
||
|
android:text="@string/landing_next_page"
|
||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
app:layout_constraintEnd_toEndOf="parent" />
|
||
|
|
||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||
|
|
||
|
</RelativeLayout>
|