Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 高級開發 >> Android setContentView的應用

Android setContentView的應用

編輯:高級開發

手機頁面的轉換setContentVIEw 的應用.在網頁的世界裡,想要在兩個頁面間的轉換,只要利用超鏈接就可以實現,

  但是在手機的世界裡,要如何實現手機頁面的轉換呢? 最簡單的方法就是改變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();

  }

  });

  }

  }

  最後執行之!,這一節就到此結束~

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved