我是使用Java Android進行編程的初學者。我目前對如何在Android 2.1中開展活動感到困惑。我目前的項目需要很多不同的活動才能在一個程序中一起工作。比方說,我有main.xml中內的按鈕,並假設在函數內部ButtonAdroid.class低於一個:如何在Android 2.1中啓動活動
public class ButtonAndroid extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
final Button button = (Button) findViewById(R.id.button_id);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// Perform action on click
}
});
}
}
我的目標是讓到另一大類ButtonAndroid.class之間的連接,假設其名稱是NextPage.java。你們知道我需要在public void onClick(View v)
裏面放置什麼樣的命令才能使當前活動切換到NextPage.java?
使用你的答案後,顯然還是有錯誤。我有兩個名爲HelloRelativeLayout和HelloRelativeLayout2的類。
錯誤表示應用程序意外停止。這是否意味着我必須在XML中添加intent-filter或其他東西?
public class HelloRelativeLayout extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
final Button button = (Button) findViewById(R.id.signIn);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// Perform action on click
Intent i = new Intent(HelloRelativeLayout.this, HelloRelativeLayout2.class);
startActivity(i);
}
});
}
}
做,如果你通過即使1或2的Android開發教程去,你會知道如何做到這一點。 – Falmarri 2010-09-15 18:37:18