android ImageButton缩放并保持纵横比

android ImageButton缩放并保持纵横比,android,layout,scale,imagebutton,aspect-ratio,Android,Layout,Scale,Imagebutton,Aspect Ratio,我有一个屏幕,我正试图布局 基本上,我试图在屏幕上垂直分布4个ImageButton对象。。。我用它来均匀分布项目,但现在我有一个可怕的时间让图像的规模,但保持纵横比。。。如果我使用scaleType=“centerInside”它们不会缩放,如果我使用“fitXY”,它们不会保持纵横比。。。以下是布局的外观: 代码如下: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" an

我有一个屏幕,我正试图布局

基本上,我试图在屏幕上垂直分布4个ImageButton对象。。。我用它来均匀分布项目,但现在我有一个可怕的时间让图像的规模,但保持纵横比。。。如果我使用
scaleType=“centerInside”
它们不会缩放,如果我使用“fitXY”,它们不会保持纵横比。。。以下是布局的外观:

代码如下:

    <LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent" android:layout_margin="0dp"
  android:padding="0dp"
  android:orientation="vertical"
  android:weightSum="5"
  >


        <ImageButton android:id="@+id/share_song" 
            android:layout_width="fill_parent" android:text=""
            android:layout_marginLeft="0dp"
            android:layout_marginTop="15dp"
            android:layout_marginRight="5dp"
            android:layout_marginBottom="5dp"
            android:gravity="left" 
            android:src="@drawable/share_song_button_sel"
            android:adjustViewBounds="true"
            android:background="#0000"
            android:scaleType="fitXY"
          android:layout_height="0dp"
          android:layout_weight="1"
            />
        <Button 
            android:layout_width="wrap_content" 
            android:text="" android:id="@+id/tag_a_song"
            android:layout_marginLeft="5dp"
            android:layout_marginTop="10dp"
            android:layout_marginRight="0dp"
            android:layout_marginBottom="5dp"
            android:gravity="right" 
            android:layout_gravity="right"
            android:background="@drawable/song_check_in_button_sel"
          android:layout_height="0dp"
          android:layout_weight="1"
            />
        <Button android:id="@+id/match_button" 
            android:layout_width="wrap_content" android:text=""
            android:layout_marginLeft="0dp"
            android:layout_marginTop="10dp"
            android:layout_marginRight="0dp"
            android:layout_marginBottom="5dp"
            android:gravity="left" 
            android:background="@drawable/music_match_button_sel"
          android:layout_height="0dp"
          android:layout_weight="1"
            />
        <Button android:id="@+id/friends_button" 
            android:layout_width="wrap_content" android:text=""
            android:layout_marginLeft="0dp"
            android:layout_marginTop="10dp"
            android:layout_marginRight="0dp"
            android:layout_marginBottom="5dp"
            android:gravity="right" 
            android:layout_gravity="right"
            android:background="@drawable/my_friends_music_button_sel"
          android:layout_height="0dp"
          android:layout_weight="1"
            />

        <LinearLayout
          xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_width="fill_parent"
          android:layout_height="0dp"
          android:layout_weight="1"
          android:orientation="horizontal"
          android:layout_marginRight="0dp"
          android:layout_marginLeft="0dp"
          android:layout_marginTop="0dp"
          android:padding="0dp" 
          >
        <LinearLayout
          xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_width="fill_parent"
          android:layout_height="65dp"
          android:orientation="horizontal"
          android:layout_marginRight="0dp"
          android:layout_marginLeft="0dp"
          android:layout_marginTop="0dp"
          android:padding="0dp" 
          android:layout_gravity="bottom"
          >
        <ImageView android:src="@drawable/trending_bar"
          android:layout_width="fill_parent"
          android:layout_height="wrap_content"
          android:layout_gravity="top"
          android:layout_marginRight="0dp"
          android:layout_marginLeft="0dp"
          android:layout_marginTop="10dp"
          android:scaleType="fitXY"/>

            </LinearLayout>
        </LinearLayout> 

</LinearLayout>


希望有人能帮上忙。

将图像按钮的宽度设置为
fill\u parent
,并对左边距的图像使用scaletype
fitStart
,对右边距的图像使用
fitEnd
。应该做到这一点,至少就您的示例图像而言。如果图像的比例宽度超过屏幕宽度,您可能会遇到一些间距问题,但它应该适合您。

thx快速响应功能非常强大。。。我试过了,但它没有放大图像。。。另外,如果屏幕太小,它也不会缩小。不过,我只是在wysiwyg编辑器中查看它。。。也许我不应该相信。是的,不要相信,根据我的经验,那样的事情太可怕了。在模拟器或设备上试试。哦,是的。。。那太疯狂了。。。模拟器显示了这一切都很好。。。谢谢你的帮助!到今天还是这样吗?