File size: 5,139 Bytes
eb310cb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
tools:context=".MainActivity">
<androidx.appcompat.widget.LinearLayoutCompat
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp">
<Button
android:id="@+id/copy"
android:text="复制Assets到模型路径"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<androidx.appcompat.widget.LinearLayoutCompat
android:layout_marginTop="10dp"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.appcompat.widget.AppCompatSpinner
android:id="@+id/width"
android:entries="@array/Resolution"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"/>
<androidx.appcompat.widget.AppCompatSpinner
android:id="@+id/height"
android:entries="@array/Resolution"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"/>
</androidx.appcompat.widget.LinearLayoutCompat>
<androidx.appcompat.widget.LinearLayoutCompat
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/guidance"
android:text="7.5"
android:gravity="center"
android:inputType="numberDecimal"
android:maxLines="1"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"/>
<EditText
android:id="@+id/step"
android:text="8"
android:inputType="numberDecimal"
android:gravity="center"
android:maxLines="1"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"/>
</androidx.appcompat.widget.LinearLayoutCompat>
<EditText
android:id="@+id/prompt"
android:text="Japanese garden at wildlife river and mountain range, highly detailed, digital illustration, artstation, concept art, matte, sharp focus, illustration, dramatic, sunset, hearthstone, art by Artgerm and Greg Rutkowski and Alphonse Mucha."
android:lines="2"
android:maxLines="2"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<EditText
android:id="@+id/neg_prompt"
android:hint="Neg prompt"
android:lines="2"
android:maxLines="2"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<androidx.appcompat.widget.LinearLayoutCompat
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:text="seed:"
android:layout_gravity="center_vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<EditText
android:id="@+id/seed"
android:inputType="number"
android:maxLines="1"
android:text="0"
android:textSize="16sp"
android:gravity="center"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:layout_gravity="center_vertical"
android:layout_width="100dp"
android:layout_height="wrap_content"/>
<Button
android:id="@+id/generate"
android:text="生成"
android:layout_gravity="center_vertical"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"/>
</androidx.appcompat.widget.LinearLayoutCompat>
<TextView
android:id="@+id/msg"
android:gravity="center"
android:layout_width="match_parent"
android:layout_height="45dp"/>
<com.example.open.diffusion.SquareImageView
android:id="@+id/image"
android:scaleType="centerCrop"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</androidx.appcompat.widget.LinearLayoutCompat>
</ScrollView> |