我在 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>