我有一个 LinearLayout,里面有另一个 Linearlayout。在第二个 LinearLayout 中,我有 3 个 ImageView,但正如您在图片中看到的那样,它们都被拉伸了。

这是我的xml代码:
<?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="fill_parent"
android:layout_margin="10dp"
android:orientation="vertical" >
<TextView
    android:id="@+id/contact_data"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:background="@drawable/bubble"
    android:gravity="center"
    android:padding="10sp"
    android:text="@string/contact_data"
    android:textColor="#000000" />
<View
    android:layout_width="match_parent"
    android:layout_height="1dp"
    android:layout_margin="10dp"
    android:background="@android:color/darker_gray" />
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >
    <ImageView
        android:id="@+id/phonenumber"
        android:layout_width="match_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1"
        android:background="@drawable/phone"
        android:clickable="true"
        android:onClick="onClick" />
    <ImageView
        android:id="@+id/emailaddress"
        android:layout_width="match_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1"
        android:background="@drawable/email"
        android:clickable="true"
        android:onClick="onClick" />
    <ImageView
        android:id="@+id/internetaddress"
        android:layout_width="match_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1"
        android:background="@drawable/internet"
        android:clickable="true"
        android:onClick="onClick" />
  </LinearLayout>
  </LinearLayout>
有什么问题?
PS:我有每张图片的 3 种尺寸:drawable-ldpi 中的 32x32、drawable-mdpi 中的 48x48 和 drawable-hdpi 中的 64x64。