以下是一个Android布局实例,使用LinearLayout来实现一个简单的登录界面。
<!-- activity_main.xml -->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp"
tools:context=".MainActivity">
<ImageView
android:layout_width="100dp"
android:layout_height="100dp"
android:src="@drawable/logo"
android:layout_gravity="center_horizontal"
android:layout_marginBottom="24dp" />
<EditText
android:id="@+id/et_username"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="用户名"
android:inputType="text" />
<EditText
android:id="@+id/et_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:hint="密码"
android:inputType="textPassword" />
<Button
android:id="@+id/btn_login"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="登录"
android:layout_marginTop="16dp" />
</LinearLayout>
这个布局使用了LinearLayout作为根容器,并设置了垂直方向排列。在里面添加了一个ImageView用于显示Logo图片,两个EditText分别用于输入用户名和密码,以及一个Button用于登录。
请注意,这只是一个简单的示例,实际的布局可能会更加复杂,根据实际需要进行调整和添加其他控件。
以下是一个简单的Android布局实例:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="16dp"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello, 郑州阿里云代理商!"
android:textSize="24sp"
android:textColor="#000000"
android:layout_gravity="center"
android:layout_marginBottom="16dp"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="请输入姓名"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="点击提交"/>
</LinearLayout>
这个布局文件使用了一个线性布局(LinearLayout),垂直排列(orientation=”vertical”),内部包含一个文本视图(TextView)、一个编辑框(EditText)和一个按钮(Button)。
你可以通过在Android布局文件(通常为.xml文件)中定义不同的布局元素和属性来创建不同的界面布局。
发布者:luotuoemo,转转请注明出处:https://www.jintuiyun.com/119264.html