Вы можете найти эту функцию в Android Launcher.Поскольку Android является открытым исходным кодом, вы можете просто скопировать и работать с ним.
Возьмите этот код с именем DragableSpace : http://pastebin.com/CgK8TCQS. В своей деятельности вы звоните:
setContentView(R.layout.main);
с:
<?xml version="1.0" encoding="utf-8"?>
<de.android.projects.DragableSpace
xmlns:app="http://schemas.android.com/apk/res/de.android.projects"
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/space"
android:layout_width="fill_parent" android:layout_height="fill_parent"
app:default_screen="1">
<include android:id="@+id/left" layout="@layout/left_screen" />
<include android:id="@+id/center" layout="@layout/initial_screen" />
<include android:id="@+id/right" layout="@layout/right_screen" />
</de.android.projects.DragableSpace>
Как вы можете видеть, вы можете определить домашний экран для своего приложения, используя только xml;)
Определите каждое представление (начальное, правое и левое) следующим образом:
<LinearLayout android:id="@+id/center"
android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:background="@color/orange">
<Button android:text="Initial Screen" android:id="@+id/Button2"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:padding="10dp" android:layout_margin="10dp">
</Button>
</LinearLayout>
Для получения дополнительной информации проверьте этот вопрос: Разработка домашнего экрана Android