活动布局android ImageView,ImageButton缩放

时间:2015-05-29 16:42:37

标签: android android-layout

我想要实现图像中显示的格式。蓝色部分是背景,男人和女孩的形象是ImageButton。这些的原始图像是88x128(trainer000,trainer001)。我想重新缩放ImageButton,使图像覆盖整个高度,并相应地调整宽度。现在我发现了2-3种方法,但他们使用一个单独的类来计算宽度。我想知道是否有办法纯粹在xml文件中完成它。

我用过的东西:

`

<ImageButton
    android:id="@+id/maleimage"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:adjustViewBounds="true"
    android:scaleType="fitStart"
    android:layout_alignParentLeft="true"
    android:src="@drawable/trainer000" />

<ImageButton
    android:id="@+id/femaleimage"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:adjustViewBounds="true"
    android:scaleType="fitStart"
    android:layout_alignParentLeft="true"
    android:src="@drawable/trainer001" />

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:textColor="#000000"
    android:text="Are you a boy or a girl?"
    android:textAppearance="?android:attr/textAppearanceMedium" />

`

我想要的是: http://imgur.com/9D6XZUT

编辑:找到解决方案。我刚刚使用了Studio的布局编辑器。

0 个答案:

没有答案