圖解android開發View中的線性佈局:[4]?

Tags: 線性, 佈局,

android開發中view的佈局有幾種方法,分別是線性佈局(Linear Layout)、相對佈局(Relative Layout)、表格佈局(Table Layout)、標籤佈局(Tab Layout)、絕對佈局(Absolute Layout)。先一起學習線性佈局(Linear Layout)。

工具/原料

電腦

eclipse

方法/步驟

線性佈局(Linear Layout)是一個viewgroup以線性方向顯示它的子視圖元素。在xml中寫入以下代碼。

android:layout_height="match_parent"

android:orientation="horizontal" >(指方向是垂直的)

android:id="@+id/button1"(定義一個按鈕的名稱)

android:layout_width="match_parent"

android:layout_height="match_parent"

android:layout_weight="1"(權重)

android:text="@string/button1"/>(在strings.xml中定義按鈕)

android:id="@+id/button2"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:layout_weight="1"

android:text="@string/button2"/>

android:id="@+id/button3"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:layout_weight="1"

android:text="@string/button3"/>

android:id="@+id/button4"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:layout_weight="1"

android:text="@string/button4"/>

android:id="@+id/button5"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:layout_weight="1"

android:text="@string/button5"/>

圖解android開發View中的線性佈局:[4]

在mainactivity.java中寫入以下代碼:

package com.ddexample.dh1;

import android.os.Bundle;

import android.support.v7.app.ActionBarActivity;

public class MainActivity extends ActionBarActivity {

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

}

}

圖解android開發View中的線性佈局:[4]

在strings.xml中寫入以下代碼:

Dh1

Settings

ActivityB

button1

button2

button3

button4

button5

圖解android開發View中的線性佈局:[4]

然後直接運行這個android工程,就能得到一個具有線性佈局界面了,裡面有五個按鈕。

圖解android開發View中的線性佈局:[4]

圖解android開發View中的線性佈局:[4]

android:orientation="horizontal" >(指方向是垂直的),如果把其值改為vertical,就變為水平了。

圖解android開發View中的線性佈局:[4]

圖解android開發View中的線性佈局:[4]

線性, 佈局,
相關問題答案