私は3つの画像ビューを持っています。今私がしたいのは、1つの画像ビューを画面の左端、中央、右端の1行にレイアウトすることです。親ビューは線形レイアウトです。どうやってするの?Androidレイアウトの画像
<LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content">
<ImageView android:src="@drawable/previous" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="left"></ImageView>
<ImageView android:src="@drawable/play" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" ></ImageView>
<ImageView android:src="@drawable/next" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="right"></ImageView>
</LinearLayout>
上記のレイアウトは機能しません。すべての画像が左に揃えられます。
代わりに相対レイアウトを使用 – ingsaurabh
このケースで相対レイアウトを使用する方法をいくつか記入してください。 –