Android AppDisplay(GridView和NoSystemApp)

Android AppDisplay(GridView和NoSystemApp),android,gridview,launcher,Android,Gridview,Launcher,我找到了这个教程: 目标是为我的android启动器开发一个applauncher。现在,当我将这些代码集成到我的启动器中时,一切都正常了。现在我想改变一些事情: 首先,我希望applauncher只显示不属于系统一部分的应用程序,就像它在普通android上显示的那样 接下来,我讨厌这个列表视图。我更喜欢网格视图,但我似乎不太合适 有人能帮助我或给我一些好的链接,让我更好地解释这些事情。 <GridView android:id="@android:id/list" an

我找到了这个教程:

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

  • 首先,我希望
    applauncher
    只显示不属于系统一部分的应用程序,就像它在普通android上显示的那样
  • 接下来,我讨厌这个列表视图。我更喜欢网格视图,但我似乎不太合适 有人能帮助我或给我一些好的链接,让我更好地解释这些事情。

    
    
    <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"/>
    

    我将ListView更改为GridView,但现在我不知道我必须在代码中更改什么。这里有几个列表,其中一个我不得不改成一些网格的东西,我认为如果你提供一些你拥有的代码,而不是说你“没有完全正确”,那将是非常有帮助的。展示你的尝试。