2011-07-28 17 views
1

私は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> 

上記のレイアウトは機能しません。すべての画像が左に揃えられます。

+0

代わりに相対レイアウトを使用 – ingsaurabh

+0

このケースで相対レイアウトを使用する方法をいくつか記入してください。 –

答えて

1

最高のオプションはwieghtsを使用することです。各ImageViewのlayout_widthを0dpに設定します。次に、echtビューでlayout_weight値を等しくなるように設定します。 F.e.重みの詳細については1.

に設定します。http://android.amberfog.com/?p=328以下

+0

提案していただきありがとうございます。今、画像は3つのグリッドにありますが、左右の画像が端にくるようにします。 –

+0

問題は既に解決しましたか?あなたが話しているグリッドのスクリーンショットを送ることができますか? – nldev

1

は一例であり、ニーズに合わせてそれを変更

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"> 
    <Button 
     android:text="asd" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_gravity="left" 
     android:layout_alignParentLeft="true"/> 
    <Button 
     android:layout_centerHorizontal="true" 
     android:text="asd" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_gravity="center" /> 
    <Button 
     android:layout_alignParentRight="true" 
     android:text="asd" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_gravity="right" /> 
</RelativeLayout> 

ここでは

enter image description here

をどのように見えるかであります
関連する問題