1
如何使用android sdk創建一個基於導航的應用程序?不是像使用地圖一樣導航,而是像設置應用程序的工作方式。您點擊物品,然後轉到新的物品頁面點擊。Android的一覽/導航爲基礎的應用程序
我找不到任何好的樣本或文檔。是的,我瀏覽了Android開發者網站。
如何使用android sdk創建一個基於導航的應用程序?不是像使用地圖一樣導航,而是像設置應用程序的工作方式。您點擊物品,然後轉到新的物品頁面點擊。Android的一覽/導航爲基礎的應用程序
我找不到任何好的樣本或文檔。是的,我瀏覽了Android開發者網站。
我認爲有兩種方法。
1.
yourList.setOnItemClickListener(this);
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
Intent in = new Intent();
in.setClassName("com.example", "com.example.secondScreen");
startActivity(in);
}
2.
yourList.setVisibility(View.GONE);
nextView.setVisibility(View.VISIBLE);
你能解釋一下嗎 – Ali 2011-09-27 13:49:31