我不明白如何在android中正确缩放图像。 我有一张640 * 125像素的iPhone应用程序图片。我需要使用它 一个Android应用程序,但我不知道如何正确地扩展它。
在下图中,我使用'FitEnd'作为ScaleType,除了高度之外,它看起来还不错 应该是它应该的大小的两倍(它应该只与灰色图形的最高部分一样高)。
我该如何解决这个问题?
编辑:包括.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ViewFlipper
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/buttonrow" >
<ViewFlipper
android:id="@+id/flipper"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<include
android:id="@+id/first"
layout="@layout/activity_events" />
<include
android:id="@+id/second"
layout="@layout/event_detail" />
</ViewFlipper>
<include
android:id="@+id/second"
layout="@layout/event_detail" />
</ViewFlipper>
<RelativeLayout
android:id="@+id/buttonrow"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:scaleType="fitEnd"
android:src="@drawable/bottombar" />
</RelativeLayout>
</RelativeLayout>
答案 0 :(得分:0)
我有两个版本:
图片背景不透明。所以图像参数很好,问题在于你的图片
如果不是第一个版本,请告诉我你的.xml文件