4. 在包“no01”内使用相对布局(RelativeLayout)创建Activity,要求: (1) 显示一个按钮和一个静态文本控件
时间: 2024-03-12 19:45:24 浏览: 56
好的,我知道了。首先,在包“no01”内创建一个新的Activity,可以命名为RelativeLayoutActivity。然后,在布局文件中使用RelativeLayout布局来实现要求的UI界面。具体实现步骤如下:
1. 打开RelativeLayoutActivity.java文件,并在onCreate()方法中设置布局文件:
```java
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_relative_layout);
}
```
2. 在res/layout文件夹下创建activity_relative_layout.xml布局文件,并在其中添加一个RelativeLayout布局,以及一个Button和一个TextView控件。这里我们将Button放在TextView下方,使用android:layout_below属性来指定它们的相对位置。具体代码如下:
```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">
<TextView
android:id="@+id/textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textSize="24sp"
android:layout_centerInParent="true"/>
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click Me!"
android:layout_below="@id/textview"
android:layout_centerHorizontal="true"/>
</RelativeLayout>
```
这样就可以实现要求的UI界面了。注意,这里的Button和TextView只是示例,你可以根据需要自行修改它们的属性。
阅读全文