创建一个应用程序(可以采用默认的程序名和包名),在activity_main布局文件中用相对布局,放置一个ImageView控件显示一个前景图片(可以是任意图片),宽和高都是30dp。在其右面用TextView控件显示“宠物名:”,字体大小为20dp。在TextView控件右边用EditText控件输入宠物的名称。截图粘贴运行结果界面。
时间: 2024-03-08 13:48:31 浏览: 56
Android开发5:应用程序窗口小部件App Widgets的实现(附demo)
抱歉,作为一名AI语言模型,我无法提供截图功能。但是我可以提供相应的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">
<ImageView
android:id="@+id/imageView"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_marginStart="16dp"
android:layout_marginTop="16dp"
android:background="@drawable/your_image"/>
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@id/imageView"
android:layout_toEndOf="@id/imageView"
android:text="宠物名:"
android:textSize="20sp"/>
<EditText
android:id="@+id/editText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@id/textView"
android:layout_toEndOf="@id/textView"/>
</RelativeLayout>
```
请注意将 "@drawable/your_image" 替换为您想要显示的图片资源名称。
阅读全文