1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <FrameLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/rvImageList"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginBottom="?android:attr/actionBarSize"/>
- <RelativeLayout
- android:id="@+id/rlBottom"
- android:layout_width="match_parent"
- android:layout_height="?android:attr/actionBarSize"
- android:layout_alignParentBottom="true"
- android:background="@color/bottom_bg"
- android:clickable="true">
- <Button
- android:id="@+id/btnAlbumSelected"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_centerVertical="true"
- android:background="@null"
- android:drawablePadding="5dp"
- android:drawableRight="@drawable/ic_album"
- android:ellipsize="end"
- android:gravity="center_vertical"
- android:paddingLeft="16dp"
- android:paddingRight="16dp"
- android:singleLine="true"
- android:textAllCaps="false"
- android:textColor="@android:color/white"
- android:textSize="16sp"/>
- <Button
- android:id="@+id/btn_certain"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:layout_marginBottom="5dp"
- android:layout_marginRight="16dp"
- android:layout_marginTop="5dp"
- android:background="@drawable/bg_button_green"
- android:paddingLeft="16dp"
- android:paddingRight="16dp"
- android:singleLine="true"
- android:text="添加 (3)"
- android:textAllCaps="false"
- android:textColor="@android:color/white"
- android:textSize="15sp"
- android:visibility="gone"/>
- </RelativeLayout>
- </RelativeLayout>
- <com.yuyh.library.imgsel.widget.CustomViewPager
- android:id="@+id/viewPager"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@android:color/black"
- android:visibility="gone"/>
- </FrameLayout>
|