2015-10-30 124 views
0

我有各種尺寸的JPG。將imageview對齊頂部

我創建了一個帶有imageview和兩個文本視圖的自定義列表視圖。

我想調整圖像視圖到LinearLayout的左上角,但沒有任何我已經嘗試過的一切,但沒有任何工作。

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="horizontal"> 

    <ImageView 
     android:id="@+id/petPhoto" 
     android:layout_gravity="top|left" 
     android:layout_width="150dp" 
     android:layout_height="150dp" /> 

    <LinearLayout 
     android:background="#ff0000" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:orientation="vertical"> 

     <TextView 
      android:id="@+id/petName" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" /> 

     <TextView 
      android:id="@+id/petDescription" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" /> 

    </LinearLayout> 

</LinearLayout> 

回答

0

試試這個,

你的LinearLayout更改的RelativeLayout並添加alignParentTop財產頂部,你的代碼是這樣的

<?xml version="1.0" encoding="utf-8"?> 

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:padding="@dimen/card_padding" 
    android:background="@color/card_background"> 

    <ImageView 
     android:id="@+id/thumbnail" 
     android:src="@drawable/thumbnail" 
     android:layout_width="72dip" 
     android:layout_height="72dip" 
     android:scaleType="centerCrop"/> 

    <TextView 
     android:id="@+id/title" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="Card title" 
     android:layout_toRightOf="@+id/thumbnail" 
     android:textAppearance="@android:style/TextAppearance.Holo.Medium" 
     android:layout_marginLeft="?android:attr/listPreferredItemPaddingLeft"/> 

    <TextView 
     android:id="@+id/description" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="Card description" 
     android:layout_toRightOf="@+id/thumbnail" 
     android:layout_below="@+id/title" 
     android:layout_marginLeft="?android:attr/listPreferredItemPaddingLeft" 
     android:textAppearance="@android:style/TextAppearance.Holo.Small"/> 

</RelativeLayout> 

輸出,

enter image description here

+0

不,不行。 imageview現在出現在中心。它也沒有被列在listview的每一行的頂部。我想要左邊的圖像視圖 - 對齊左上角和右上角。 – user2923955

+0

我已經編輯了imageview,請檢查這一點,我已經插入了屬性,alignParentLeft =「true」 –

+0

爲了更好的參考,請分享你的照片,你需要它,所以我可以按照快照指導你。 –