ルービックキューブの仕組みは誰もが知っています。
Androidでそのようなsomenthinkを行うことは可能ですか:私は5つの正方形のボタンに5つ持っています。ルービック キューブ (2D) として回転させることはできますか? 私がこのようなものを持っている場合:
<ScrollView android:id="@+id/scrollView1"
android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout android:id="@+id/linearLayout1"
android:layout_width="match_parent" android:layout_height="match_parent"
android:orientation="vertical">
<HorizontalScrollView android:id="@+id/horizontalScrollView1"
android:layout_width="wrap_content" android:layout_height="wrap_content">
<LinearLayout android:id="@+id/linearLayout2"
android:layout_width="match_parent" android:layout_height="match_parent"
android:orientation="horizontal">
</LinearLayout>
</HorizontalScrollView>
</LinearLayout>
</ScrollView>
行を縦または横にスクロールすることが可能です。しかし、オブジェクトを時々水平に、時には垂直にスクロールしたい。どうやってやるの?