首先我们得知道,一个 Android 程序是由一个或多个 Activity 组成的,Activity 是一个 UI 容器,它本身不在用户界面中显示出来。其中类 View 起了一个重要的作用,View 是一个最基本的 UI 类,几乎所有的 UI 组件都是继承自View 而实现的。TextView 的使用格式如下: android.view.View 其主要功能如下:
-
为指定的屏幕矩形区域存储布局和内容 -
处理尺寸和布局,绘制,焦点改变,翻屏,按键、手势 -
widget 基类 线性布局即 LinearLayout 布局,是 Android 屏幕中常用的布局方式,是一个 ViewGroup 以线性方向显示它的子视图(view)元素,即垂直地或水平地。 如何使用线性布局 -
首先在Android studio下创建一个安卓应用。 -
创建好之后编辑mian.xml文件,线性布局可分垂直线性和水平线性。我们先试试水平线性。 -
在main.xml下插入以下代码
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal"> <Button android:layout_weight="1" android:id="@+id/mainButton" android:text="按钮1" android:layout_width="wrap_content" android:layout_height="wrap_content" /><Button android:layout_weight="1" android:id="@+id/mainButton1" android:text="按钮2" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <Button android:layout_weight="1"
``` android:id="@+id/mainButton2" android:text="按钮3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/> <Button android:layout_weight="1" android:id="@+id/mainButton3" android:text="按钮4" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </LinearLayout>
|