原创文章,转载注明出处:http://blog.csdn.net/deng0zhaotai/article/details/49633177
这里的修改均以横屏,分辨率为800*480为例,因为屏不同方向和分辨率使用的资源是不一样的,长按图标会出现格子,看到的布局,下面先来看下修改前后的对比图
修改前是4x4:
修改后是3x5:
修改的文件有layout-land/launcher.xml、values-land/dimens.xml、values/dimens.xml、Utilities.java
launcher.xml图标排列的修改
修改前:
<com.deng.launcher2.Workspace
android:id="@+id/workspace"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/qsb_bar_height"
android:paddingRight="@dimen/button_bar_height"
launcher:cellCountX="4" //x方向图标个数
launcher:cellCountY="4" //y方向图标个数
launcher:defaultScreen="2"
launcher:pageSpacing="@dimen/workspace_page_spacing"
launcher:scrollIndicatorPaddingLeft="@dimen/qsb_bar_height"
launcher:scrollIndicatorPaddingRight="@dimen/button_bar_height" >
修改后:
<com.deng.launcher2.Workspace
android:id="@+id/workspace"
android:layout_width="match_parent