使用Android Studio创建LinerLayout工程

使用Android Studio创建一个LinerLayout工程,使用Blank Activity。

2 修改布局文件

创建工程后,res/layout下已经自动生成activity_liner_layout.xml,使用的是RelativeLayout布局。

要使用LinerLayout,需要先把RelativeLayout删除,然后添加:

<LinerLayout></LinerLayout>

从Text模式切换到Design模式,提示“Rendering Problem”,告诉你当前layout缺少那些attributes。点击提示,添加属性。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
   
</LinearLayout>

xmlns(xml namespaces 命名空间)

添加orientation属性,该属性值包括horizontal(水平)和vertical(垂直)。这里方向设置为垂直。

android:orientation="vertical"

到这里线性布局属性已经全部设好了。

接下来该添加控件了,分别把TextView、EditText、Button、Button拖进可视化编辑器里,并修改空间的text和id。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical">

<TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="请输入"
        android:id="@+id/textView01" />

<EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/editText01" />

<Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="确认"
        android:id="@+id/button01" />

<Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="取消"
        android:id="@+id/button02" />
</LinearLayout>

在往可视化编辑器里拖的时候就可以感觉到空间只能垂直向下排列。这就是orientation属性作用的结果。

点击运行按钮,查看运行结果。

使用Android Studio创建LinerLayout工程

更多Android Studio相关内容可以看看以下的有用链接: 

Ubuntu 15.04下安装Android Studio   

Ubuntu 12.04(64位)安装Android Studio 全过程  

Android Studio v0.1尝鲜  

Android Studio使用教程  

Android Studio开发指南

Android Studio设置主题 和 不支持中文的问题解决方法  

Android Studio 下载安装以及不能打开的解决办法  

Android Studio安装使用图文教程  

Ubuntu上安装Android Studio 1.3(谷歌 Android IDE 开发)   

Android Studio 的详细介绍请点这里
Android Studio 的下载地址请点这里 

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/5ac5ea02e4599f38825c9c7d5189060b.html