次のようなレイアウトを作成したいと思います。
背景、白い四角、V サインの 3 種類の画像があります。
ボックスを左右に動かしたい場合、写真のように配置するにはどうすればよいですか
onClick がトリガーされたとき。
私が試してみました:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/off_background">
<ImageView
android:id="@+id/bottom_layer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/handle" />
<ImageView
android:id="@+id/upper_layer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/switch_v" />
</FrameLayout>
これは正しく注文できますが、正しくポーズされていません: