編輯:高級開發
但是在手機的世界裡,要如何實現手機頁面的轉換呢? 最簡單的方法就是改變Activity 的Layout !
在這個例子中,將布局兩個Layout ,分別為Layout1(main.xml) 和Layout2(mylayout.xml), 默認的Layout 為main.xml, 我們在Layout1 當中創建一個按鈕,當單擊按鈕時,顯示第二個Layout(mylayout.XML) ;同樣地,在Layout2 裡也設計一個按鈕,當單擊第二個Layout 的按鈕之後,剛顯示回原來的Layout1 ,現在就來示范如何在兩個頁面之間互相切換.
下面是我們本程序所涉及的相關代碼,首先是主界面布局main.XML
< ?XML version="1.0" encoding="utf-8"?>
< LinearLayout XMLns:android="http://schemas.android.com/apk/res/android"
android:orIEntation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
< TextVIEw
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="歡迎來到魏祝林的博客"
/>
< Button
android:id="@+id/bt1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="點擊進入Layout2"
/>
< /LinearLayout>
其次我們在main.xml 同一目錄新建一個為mylayout.XML 文件,代碼如下:
< ?XML version="1.0" encoding="utf-8"?>
< LinearLayout XMLns:android="http://schemas.android.com/apk/res/android"
android:orIEntation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffffff"
>
< TextVIEw
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Welcome to Mr Wei's blog"
/>
< Button
android:id="@+id/bt2"
接上頁
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="點擊進入Layout1"
/>
< /LinearLayout>
最後是我們的核心程序setContentVIEwDemo.Java
package com.android.setContentVIEwDemo;
import android.app.Activity;
import android.os.Bundle;
import android.view.VIEw;
import android.widget.Button;
public class setContentVIEwDemo extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// 載入main.XML Layout
setContentVIEw(R.layout.main);
// 以findVIEwById()取得Button對象並添加事件onClickLisener
Button bt1 = (Button) findVIEwById(R.id.bt1);
bt1.setOnClickListener(new Button.OnClickListener() {
public void onClick(VIEw v) {
goToLayout2();
}
});
}
// 將layout由main.xml切換成mylayout.XML
public void goToLayout2() {
// 將layout改成mylayout
setContentVIEw(R.layout.mylayout);
Button b2 = (Button) findVIEwById(R.id.bt2);
b2.setOnClickListener(new Button.OnClickListener() {
public void onClick(VIEw v) {
goToLayout1();
}
});
}
// 將layout由mylayout.xml切換成main.XML
public void goToLayout1() {
setContentVIEw(R.layout.main);
Button bt1 = (Button) findVIEwById(R.id.bt1);
bt1.setOnClickListener(new Button.OnClickListener() {
public void onClick(VIEw v) {
goToLayout2();
}
});
}
}
最後執行之!,這一節就到此結束~
android Chrome浏覽器是運行在模擬器或設備上的一個程序,盡最大的努力為用戶提供良好的WEB服務,就如其它許多浏覽器事件一樣,他的穩定性和智能型絕對是業內一流
我們已經介紹了android用戶界面設計模板Dashboard,其實在Dashboard上Andriod用戶界面設計所制作的最初版本為OmniGraffle模板,現在已
框架布局是將控件組織在android程序的用戶界面中最簡單的布局類型之一。理解布局對於良好的android程序設計來說是非常重要的。在這個教程裡,你將學到所有關於框架布
android應用程序最初是由Google開發的基於Linux平台的開源手機操作系統。它包括操作系統、用戶界面和應用程序,android 包括了一個核心庫,該核心庫提供