수고하십니다.
갤럭시 S의 메인화면 처럼
바탕 배경은 조금씩 움직이고 바탕화면 위에 위젯은 한 화면씩 플리킹 되는 UI를 구현하려고 합니다.
아래와 같이 하면 배경이 자연스럽게 좌우로 스크롤 되는데요.

1. 배경은 조금씩 움직여야 하고,
2. 배경위에 위젯(아이콘)은 화면단위(위젯 묶음?)로 움직여야 하고,
3. 가로 스크롤의 끝에 왔을 경우 끝이라는 걸 알리기 위해 당겨졌다가 다시 끝으로 돌아가는 기능이 구현되어야 합니다.

이 기능을 xml 로 하려고 하니 어렵네요. 그렇다고 터치되는 좌표를 가지고 전체 이미지의 좌표를 각각 조정하는 것도 어렵구요..
xml 로 나름대로 다양한 방법을 써서 테스트 해 봤는데 위와 같이 원하는 형태로 구현이 되지 않습니다.
아래와 같이 기본적인 xml 틀에 FrameLayout에 background 이미지로 지정도 해 보고
HorizontalScrollView 에 background 이미지도 적용을 해서 구현을 해 보았는데 원하는 UI 구현이 너무 어렵네요. ㅜㅜ

많은 분들의 조언이 필요합니다.
감사합니다.


<?xml version="1.0" encoding="UTF-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    >
<HorizontalScrollView
 android:id="@+id/hscrollview"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
 >
<FrameLayout
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 > 
<ImageView
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:src="@drawable/main_bg"
 />
</FrameLayout>
</HorizontalScrollView>
</ScrollView>