0

我找到了本教程:使用 Android 构建和应用程序启动器

目标是applauncher为我的 android 启动器开发一个。现在,当我将此代码集成到启动器中时,一切正常。现在我想改变一些事情:

  1. 首先,我希望applauncher只显示不属于系统的应用程序,就像它在普通 android 上显示的那样。
  2. 接下来是我讨厌这个列表视图。我更喜欢网格视图,但我似乎没有做对。

有人可以帮助我或提供更好的链接来更好地向我解释这些事情。

4

1 回答 1

0
<GridView
    android:id="@android:id/list"
    android:layout_width="fill_parent"
            android:layout_height="fill_parent"/>

<TextView
    android:id="@android:id/empty"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:text="List PlaceHolder"/>

I changed the ListView into the GridView, but now i don't know what i have to change in code. There are Several lists and one of them i habe to change to some grid stuff i think

于 2013-06-01T11:06:22.923 回答