私は2つのimageviewsを配置しようとしています-
<ImageView
android:id="@+id/ivLogo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:focusable="true"
android:layout_marginTop="20dp"
/>
<ImageView
android:id="@+id/ivAction"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="110dp"
android:layout_centerHorizontal="true"
android:focusable="true"
/>
画像間に若干の重なりがあります。
アクション画像がロゴと重なっています。
どちらも画面上に共通のスペースがあるため、これは予想される動作です。
アクション画像の上部がロゴの上に表示されますが、ロゴの下部がアクション画像の上部に表示されるようにします。
何が起こっているのか-アクションが一番上にあります
-
必要なもの-アクションはバックグラウンドに移動する必要があります
助けていただければ幸いです。