`
gnibrE
  • 浏览: 136553 次
  • 性别: Icon_minigender_1
  • 来自: 北京
文章分类
社区版块
存档分类
最新评论

Launcher- workspace 的layout

阅读更多
Launcher- workspace 的每个屏幕的layout是什么呢?

是CellLayout.

为什么是CellLayout,在哪里表明了的呢?

在launcher.xml:

  <com.android.launcher.Workspace
        android:id="@+id/workspace"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        launcher:defaultScreen="1">

        <include android:id="@+id/cell1" layout="@layout/workspace_screen" />
        <include android:id="@+id/cell2" layout="@layout/workspace_screen" />
  
    </com.android.launcher.Workspace>

layout/workspace_screen里:
<com.android.launcher.CellLayout
上来就是这个了。
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics