ViewPager轮播图引导页布局

来源:互联网 发布:以撒的结合 mac 下载 编辑:程序博客网 时间:2024/06/05 07:08
<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:tools="http://schemas.android.com/tools"    android:layout_width="match_parent"    android:layout_height="wrap_content"    tools:context="com.example.mmaster.day_04zuoye.MainActivity">    <android.support.v4.view.ViewPager        android:id="@+id/viewpager"        android:layout_width="match_parent"        android:layout_height="match_parent"></android.support.v4.view.ViewPager>    <LinearLayout        android:id="@+id/linear"        android:layout_width="match_parent"        android:layout_height="54dp"        android:orientation="horizontal"        android:layout_gravity="bottom"        android:background="#00acff"        android:gravity="center"        ></LinearLayout>    <Button        android:visibility="gone"        android:layout_gravity="bottom"        android:gravity="center"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:text="立即体验"        android:id="@+id/btn_enter"        /></FrameLayout>
原创粉丝点击