| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?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"
- style="@style/MatchMatch"
- tools:context=".ui.launcher.guide.GuideActivity">
- <!-- <cn.bingoogolapple.bgabanner.BGAGuideLinkageLayout style="@style/MatchMatch">-->
- <cn.bingoogolapple.bgabanner.BGABanner
- android:id="@+id/banner_guide_background"
- style="@style/MatchMatch"
- app:banner_pageChangeDuration="1000"
- app:banner_pointAutoPlayAble="false"
- app:banner_pointContainerBackground="@android:color/transparent"
- app:banner_pointDrawable="@drawable/selector_banner_unequal"
- app:banner_pointTopBottomMargin="15dp"
- app:banner_transitionEffect="alpha" />
- <!--<cn.bingoogolapple.bgabanner.BGABanner
- android:id="@+id/banner_guide_foreground"
- style="@style/MatchMatch"
- app:banner_pageChangeDuration="1000"
- app:banner_pointAutoPlayAble="false"
- app:banner_pointContainerBackground="@android:color/transparent"
- app:banner_pointDrawable="@drawable/selector_banner_unequal"
- app:banner_pointTopBottomMargin="15dp"
- app:banner_transitionEffect="stack" />-->
- <!-- </cn.bingoogolapple.bgabanner.BGAGuideLinkageLayout>-->
- <TextView
- android:id="@+id/tv_guide_skip"
- style="@style/WrapWrap"
- android:layout_alignParentRight="true"
- android:layout_marginTop="15dp"
- android:layout_marginRight="8dp"
- android:clickable="true"
- android:padding="4dp"
- android:text="跳过"
- android:textSize="16sp"
- android:visibility="gone" />
- <Button
- android:id="@+id/btn_guide_enter"
- android:layout_width="80dp"
- android:layout_height="28dp"
- android:layout_alignParentRight="true"
- android:layout_marginTop="25dp"
- android:layout_marginRight="8dp"
- android:background="@drawable/selector_button"
- android:clickable="true"
- android:text=" 进入首页 "
- android:textColor="@android:color/white"
- android:textSize="12sp"
- tools:visibility="visible" />
- </RelativeLayout>
|