48 lines
2.1 KiB
XML
48 lines
2.1 KiB
XML
<?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"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<androidx.viewpager.widget.ViewPager
|
|
android:id="@+id/viewPager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
<com.ubt.jimu.widgets.NavigationBarView
|
|
android:id="@+id/nbv_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:nbv_mode="left"/>
|
|
<LinearLayout
|
|
android:gravity="right"
|
|
android:orientation="horizontal"
|
|
android:id="@+id/llStep"
|
|
android:background="@color/bg_24A8FF"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/diy_browse_step_height"
|
|
android:layout_alignParentBottom="true">
|
|
<ImageView
|
|
android:id="@+id/imgPreviousStep"
|
|
android:paddingLeft="@dimen/diy_icon_back_margin_left"
|
|
android:paddingRight="@dimen/diy_icon_back_margin_left"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:src="@drawable/diy_browse_previous_step"
|
|
android:scaleType="centerInside"/>
|
|
<TextView
|
|
android:textSize="@dimen/theme_16sp"
|
|
android:textColor="@android:color/white"
|
|
android:gravity="center"
|
|
android:id="@+id/tvStep"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:text="1/10"/>
|
|
<ImageView
|
|
android:id="@+id/imgNextStep"
|
|
android:paddingLeft="@dimen/diy_icon_back_margin_left"
|
|
android:paddingRight="@dimen/diy_icon_back_margin_left"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:src="@drawable/diy_browse_next_step"
|
|
android:scaleType="centerInside"/>
|
|
</LinearLayout>
|
|
</RelativeLayout>
|