23 lines
819 B
XML
23 lines
819 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<androidx.constraintlayout.widget.ConstraintLayout 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="wrap_content"
|
||
|
android:layout_marginLeft="16dp"
|
||
|
android:layout_marginTop="12dp"
|
||
|
android:layout_marginRight="16dp">
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/left"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="0dp"
|
||
|
android:scaleType="fitXY"
|
||
|
android:src="@mipmap/pic_home_guide"
|
||
|
app:layout_constraintDimensionRatio="358:200"
|
||
|
app:layout_constraintLeft_toLeftOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="parent" />
|
||
|
|
||
|
|
||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||
|
|