2017-01-21 149 views
0

我有兩個問題,這個佈局:的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="130dp" 
    android:orientation="horizontal" 
    android:background="@null"> 
     <ImageView 
      android:layout_width="0dp" 
      android:layout_height="match_parent" 
      android:src="@drawable/image1" 
      android:id="@+id/image1" 
      android:scaleType="centerCrop" 
      android:background="@drawable/card_background" 
      android:layout_weight=".5" 
      /> 
     <ImageView 
      android:layout_width="0dp" 
      android:layout_height="match_parent" 
      android:src="@drawable/image2" 
      android:id="@+id/image2" 
      android:scaleType="centerCrop" 
      android:background="@drawable/card_background" 
      android:layout_weight=".5" 
      /> 
</LinearLayout> 

,當我把不同的圖像在ImageViews,發生這種情況:

  • 的ImageViews高度大於130dp更大,但是我把身高爲(match_parent),父身高爲130dp。
  • ImageViews寬度不一樣,但是兩個ImageView的重量相同,但較大的寬度比另一個要寬。
+0

你沒有給一個weight_sum父佈局 –

+0

我做了之後,它仍然是你的意思是相同的 – Maysara

+0

映像不在大小或這些意見相同大小不一樣?您可以在imageViews中使用'scaletype = fitxy'來使圖像適合其邊界 –

回答

0

此代碼有效,爲什麼? 我真的不知道。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="130dp" 
    android:background="@null" 
    > 
     <RelativeLayout 
      android:layout_width="0dp" 
      android:layout_height="match_parent" 
      android:layout_weight=".5" 
      > 
      <ImageView 
       android:layout_width="match_parent" 
       android:layout_height="130dp" 
       android:id="@+id/image2" 
       android:scaleType="centerCrop" 
       android:src="@drawable/offer_mix_small_1" 
       /> 
     </RelativeLayout> 

     <RelativeLayout 
      android:layout_width="0dp" 
      android:layout_height="match_parent" 
      android:layout_weight=".5" 
      android:background="@color/secondary_text_color" 
      > 
      <ImageView 
       android:layout_width="match_parent" 
       android:layout_height="130dp" 
       android:id="@+id/image1" 
       android:scaleType="centerCrop" 
       android:src="@drawable/offer_land" 
       /> 
     </RelativeLayout> 
    </LinearLayout> 
0

您忘記在根佈局中添加權重,因此將此行添加到根佈局中。

android:weightSum="1" 

它喜歡像增加體重總和

<?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="130dp" 
    android:weightSum="1" 
    android:orientation="horizontal" 
    android:background="@null"> 
     <ImageView 
      android:layout_width="0dp" 
      android:layout_height="match_parent" 
      android:src="@drawable/image1" 
      android:id="@+id/image1" 
      android:scaleType="centerCrop" 
      android:background="@drawable/card_background" 
      android:layout_weight=".5" 
      /> 
     <ImageView 
      android:layout_width="0dp" 
      android:layout_height="match_parent" 
      android:src="@drawable/image2" 
      android:id="@+id/image2" 
      android:scaleType="centerCrop" 
      android:background="@drawable/card_background" 
      android:layout_weight=".5" 
      /> 
</LinearLayout> 
+0

不,它是相同的 – Maysara

相關問題