我的按鈕發送一個參數給函數。參數按鈕來改變活動
<Button
android:id="@+id/tela1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Chinese Day"
android:onClick="loadPage"
android:tag="page1"
/>
我的函數應該使用此參數來加載page1活動。
public void loadPage(View view) {
String page = (String) view.getTag();
setContentView(R.layout.page);
}
如何使這項工作?
韓國社交協會
什麼是你的任務? –
您是否正在嘗試加載此參數名稱的活動?你能否明確提出你的問題? – Ian
爲什麼你想從標籤獲取活動名稱?您可以使用loadPage方法的意圖直接啓動活動。 **意圖意圖=新意圖(上下文,page1.class); ** ** context.startActivity(意圖); ** – Ian