程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-如何從一個 activity 中啟動另外一個 activity

android-如何從一個 activity 中啟動另外一個 activity

編輯:編程綜合問答
如何從一個 activity 中啟動另外一個 activity

我在 main 方法中運行一個 activity ,我想實現如果點擊按鈕,就會關閉這個用戶界面,並跳到其它用戶界面來執行其它的事務。這裡的另外一個 activity 的名是 renderman。
如何實現?

in onClick ( view temp)  

       switch( temp . getId () ) { 
            case R.id.button_validate:

最佳回答:


public void onClick(View v) {
    // TODO Auto-generated method stub
    switch(v.getId())
    {
        case R.id.button_validate:
            Intent i=new Intent(this,renderman.class);
            startActivity(i);
            break;
           //use multiple case(for multiple button) like this if you need
        case R.id.exit_button:
            finish();  //to kill current one
    }
}

在 AndroidManifest.xml 中添加:

<activity 
    android:name=".renderman">
</activity>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved