私がやろうとしているのは、アクティビティのタイトル バーの直後に ImageView (リニア レイアウト) を android:scaleType="fitStart
配置することです。" を使用してみました。これにより、イメージビューが少し上に移動しました。初心者であり、Android が配置をどのように処理するかわかりません。異なる画面サイズの画像ビューとその他のコンポーネントの、デバイス画面または画像サイズに関係なく、画像ビューが同様のスペースと同じアスペクト比と固定位置を占めるようにしたい他のビュー(コントロール)、方法私はそれをすることになっていますか
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center">
<ImageView
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:scaleType="fitStart"
android:layout_height="355dp"
android:src="@drawable/jellyfish" />
<SeekBar
android:id="@+id/seekBar1"
android:layout_width="262dp"
android:layout_height="wrap_content" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
android:onClick="clickme"
/>
</LinearLayout>