android使用Activity – Android移動開發技術文章_手機開發 Android移動開發教學課程

第一個例子,顯示網址

首先創建工程



按照提示填入


我使用的是2.3版本,所以Min SDK Version填10


修改/res/layout/下main.xml文件


加入按鈕



對應的程序文件如下:


View Code
        <Button android:layout_height=”wrap_content”
android:layout_width=”wrap_content” android:text=”@string/showurl”
android:id=”@+id/submit_to_net”></Button>

這樣就在頁面上繪制瞭一個按鈕,然後給按鈕添加事件,就是點擊後做什麼


我的類信息是ActivityUse,這個類繼承自Activity


文件中程序如下:


View Code
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

submit_data_tonewactivity();

}

private void submit_data_tonewactivity() {
Button button_start_browser = (Button) findViewById(R.id.submit_to_net);

button_start_browser.setOnClickListener(new OnClickListener() {

public void onClick(View v) {
Uri myUri = Uri.parse(“http://www.baidu.com”);
Intent openBrowseIntent = new Intent(Intent.ACTION_VIEW, myUri);
startActivity(openBrowseIntent);
}
});


}

看這幾句


    Uri myUri = Uri.parse(“http://www.baidu.com”);
    Intent openBrowseIntent = new Intent(Intent.ACTION_VIEW, myUri);
    startActivity(openBrowseIntent);


Intent是用於多個Activity之間進行跳轉的,Activity可以理解成web開發中的form.


程序調用瀏覽器,顯示網址。



第二個例子,跳轉頁面並提交數據


用剛才建好的工程


復制一個main.xml並且更名為welcome.xml



配置界面如下,並且在main.xml中加入文本框和登陸按鈕


welcome.xml中設置如下,需要對應修改配置屬性 並在main.xml中加入如下設置 


View Code
<?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”>
<EditText android:text=”請輸入…” android:layout_height=”wrap_content”
android:layout_width=”match_parent” android:id=”@+id/logintext”></EditText>
<Button android:layout_height=”wrap_content”
android:layout_width=”wrap_content” android:text=”@string/exit”
android:id=”@+

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *