-1

内部に別の Linearlayout を持つ LinearLayout があります。2 番目の LinearLayout には 3 つの ImageView がありますが、写真でわかるようにすべて引き伸ばされています。

引き伸ばされた 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 です。

4

1 に答える 1