画面の上部と右側に画像を配置するにはどうすればよいですか? With android:layout_gravity="top|right"
のみ動作しright
ます。画像は一番下です
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:background="@drawable/image"
android:layout_height="match_parent"
android:orientation="vertical" android:gravity="bottom">
<ImageView
android:id="@+id/imageView1" android:layout_gravity="top|right"
android:layout_width="100dp"
android:layout_height="100dp"
android:src="@drawable/logo" />
</LinearLayout>