viewpagerxml

来源:互联网 发布:数字照度计软件 编辑:程序博客网 时间:2024/06/07 18:54
<?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">    <android.support.v4.view.ViewPager        android:id="@+id/viewpager"        android:layout_width="match_parent"        android:layout_height="200dp"></android.support.v4.view.ViewPager>    <LinearLayout        android:id="@+id/linearlayout"        android:gravity="center"        android:layout_alignParentBottom="true"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:orientation="horizontal">    </LinearLayout>

</RelativeLayout>

VP

<?xml version="1.0" encoding="utf-8"?><LinearLayout 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"><ImageView    android:id="@+id/imageView3"    android:layout_width="match_parent"    android:layout_height="match_parent"    app:srcCompat="@mipmap/ic_launcher" /></LinearLayout>