2011-11-21 17 views

回答

5

是的,你可以使用ListActivity作爲你的應用程序的主要活動。只需將其定義爲您的主要活動AndroidManfest.xml文件,它將在您打開應用程序時啓動。

+0

感謝您的快速反應! – helicopter

+0

@helicopter - 請標記接受的答案。 –

0

你可以讓列表視圖作爲主要活動

轉至AndroidManifest.xml中和編輯

<activity android:name="**.ListViewTest**" 
        android:label="@string/app_name"> 
      <intent-filter> 
       <action android:name="android.intent.action.MAIN" /> 
       <category android:name="android.intent.category.LAUNCHER" /> 
      </intent-filter> 
     </activity> 
相關問題