android程序设计讲究逻辑和视图分离。最好每个活动都能对应一个布局,布局就是用来显示界面内容的。
右击app/src/main/res目录的New->Directory,会弹出一个新建目录的窗口,一般建立一个名为layout目录。然后对着layout目录右击->New->Layout resource file,又会弹出一个新建布局资源的窗口可以先命名为Firest_layout,根元素默认为LinearLayout。
然后会见到布局编辑器:
Design为可视化编辑,Text为通过XML文件的方式来编辑布局。
First_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent" > //以上为自然生成
<Button
android:id="@+id/button_1" //android:id是给当前元素定义一个唯一标识符,之后可以对这个元素进行操作,@+id/id_name对元素的定义,@id/id_name对元素的引用
android:layout_width="match_parent" //指定宽度,match_parent表示让当前元素和父元素一样宽。
android:layout_height="wrap_content" //指定高度,wrap_content表示当前元素的高度只要能刚好包含里面的内容就行。
android:text="Button 1" //android:text指定元素中显示的文字内容
/>
</LinearLayout>