示例:
本示例将带您完成简单的步骤,以展示如何使用线性布局创建自己的Android应用程序。请按照以下步骤修改我们在“Hello World示例”一章中创建的Android应用程序-
- 您将使用Android Studio创建一个Android应用程序,并将其命名为Demo,位于com.jc2182.demo包下,如Hello World示例一章中所述。
- 修改res/layout/activity_main.xml文件的默认内容,以在线性布局中包含几个按钮。
- 运行该应用程序以启动Android模拟器并验证在该应用程序中所做更改的结果。
以下是修改后的主要活动文件src/com.jc2182.demo/MainActivity.java的内容。该文件可以包括每个基本生命周期方法。
package com.jc2182.demo;
import android.app.Activity;
import android.os.Bundle;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
以下是res/layout/activity_main.xml文件的内容-
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<Button
android:id="@+id/btnStartService"
android:layout_width="123dp"
android:layout_height="wrap_content"
android:text="启动服务" />
<Button
android:id="@+id/btnPauseService"
android:layout_width="126dp"
android:layout_height="wrap_content"
android:text="暂停服务" />
<Button
android:id="@+id/btnStopService"
android:layout_width="125dp"
android:layout_height="wrap_content"
android:text="停止服务" />
</LinearLayout>
让我们尝试运行刚刚修改的应用程序。我假设您在进行环境设置时已创建了AVD。要从Android Studio运行该应用,请打开您项目的活动文件之一,然后工具栏中单击“运行”图标。Android studio将应用程序安装在您的AVD上并启动它,如果设置和应用程序一切正常,它将显示在“模拟器”窗口下面-
现在,让我们将Layout的方向更改为android:orientation =“horizontal”并尝试运行相同的应用程序,它将显示以下屏幕-