Files
pandorapan/lib_beauty360/src/main/res/layout/activity_edit.xml
2022-07-18 15:31:45 +08:00

23 lines
771 B
XML

<?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">
<Button
android:id="@+id/beauty_btn"
android:layout_width="match_parent"
android:layout_height="48dp"
android:layout_margin="16dp"
android:layout_alignParentBottom="true"
android:gravity="center"
android:onClick="startBeauty"
android:text="点我变美"/>
<ImageView
android:id="@+id/edit_image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/beauty_btn"
android:scaleType="centerInside" />
</RelativeLayout>