對橫屏修改:launcher\res\layout-land\launcher.xml
對豎屏修改:launcher\res\layout-port\launcher.xml
修改下列**?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<
com.android.launcher2.workspace
android:id
=
"@+id/workspace"
android:layout_width
=
"match_parent"
android:layout_height
=
"match_parent"
android:scrollbars
=
"horizontal"
android:fadescrollbars
=
"true"
launcher:defaultscreen
=
"2"
>
<
include
android:id
=
"@+id/cell1"
layout
=
"@layout/workspace_screen"
/>
<
include
android:id
=
"@+id/cell2"
layout
=
"@layout/workspace_screen"
/>
<
include
android:id
=
"@+id/cell3"
layout
=
"@layout/workspace_screen"
/>
<
include
android:id
=
"@+id/cell4"
layout
=
"@layout/workspace_screen"
/>
<
include
android:id
=
"@+id/cell5"
layout
=
"@layout/workspace_screen"
/>
以下**包含幾次就是幾屏了
,例如10屏
筆記82 Launcher常用修改(重修版)
10.1全介面 11.預設桌布 public void initwall catch ioexception e sp.edit putboolean initwall true commit 12.0 系統預設的外掛程式 12.1 mhandler中接收收音資料 private final han...
Android之Launcher的小試心得
launcher是android系統的 桌面 在android2.1之前採用的是launcher,android2.2之後採用的launcher2,他們之間最大的區別是launcher2有3d效果,不過launcher2整個系統的 的改動還是比較大的。首先來介紹下launcher目錄下的幾個檔案吧,...
實現類似launcher的滑動桌面
這個例子中涉及到了以下幾個知識點 接下來說一下我實現的 思路 2 由於要實現隨手勢滑動,所以只要實現gesturedetector.ongesturelistener介面中的ondown onscroll 方法就可以 3 由於要接收觸屏事件,所以要實現ontouchevent 接下來我們來看一下 吧...