46 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <LinearLayout
 | |
|     xmlns:android="http://schemas.android.com/apk/res/android"
 | |
|     android:layout_width="match_parent"
 | |
|     android:layout_height="match_parent"
 | |
|     android:orientation="vertical"
 | |
|     android:padding="20dp"
 | |
|     android:gravity="top|center_horizontal">
 | |
| 
 | |
|     <!-- 文字输入框 -->
 | |
|     <EditText
 | |
|         android:id="@+id/et_input_text"
 | |
|         android:layout_width="match_parent"
 | |
|         android:layout_height="wrap_content"
 | |
|         android:hint="请输入要生成二维码的文字"
 | |
|         android:inputType="textMultiLine"
 | |
|         android:minLines="3"
 | |
|         android:maxLines="5"
 | |
|         android:padding="12dp"
 | |
|         android:background="@android:drawable/editbox_background_normal"
 | |
|         android:layout_marginBottom="16dp"/>
 | |
| 
 | |
|     <!-- 生成二维码按钮 -->
 | |
|     <Button
 | |
|         android:id="@+id/btn_generate_qr"
 | |
|         android:layout_width="match_parent"
 | |
|         android:layout_height="wrap_content"
 | |
|         android:text="生成二维码"
 | |
|         android:textSize="16sp"
 | |
|         android:background="#4CAF50"
 | |
|         android:textColor="@android:color/white"
 | |
|         android:paddingVertical="12dp"
 | |
|         android:layout_marginBottom="24dp"/>
 | |
| 
 | |
|     <!-- 二维码预览图片 -->
 | |
|     <ImageView
 | |
|         android:id="@+id/iv_qr_preview"
 | |
|         android:layout_width="280dp"
 | |
|         android:layout_height="280dp"
 | |
|         android:scaleType="fitCenter"
 | |
|         android:background="@android:drawable/dialog_holo_light_frame"
 | |
|         android:contentDescription="二维码预览"/>
 | |
| 
 | |
| </LinearLayout>
 | |
| 
 | 
