显示每个设备的图像尺寸是多少?

时间:2016-05-04 10:48:19

标签: android

我的xml文件。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal" android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:baselineAligned="false"
    android:background="@color/white">

    <ScrollView android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:scrollbarAlwaysDrawVerticalTrack="true"
        android:layout_weight="1">
        <ImageView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:adjustViewBounds="true"
            android:scrollbars="vertical"
            android:src="@drawable/three_content_map"
            />
    </ScrollView>

    <ScrollView android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:scrollbarAlwaysDrawVerticalTrack="true"
        android:layout_weight="1">
        <ImageView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:adjustViewBounds="true"
            android:scrollbars="vertical"
            android:src="@drawable/three_content_com"/>
    </ScrollView>

</LinearLayout>

第二个imageView没有显示图像,“three_content_com”尺寸是401 X 6114,也许它非常大?!什么尺寸的图像尺寸,以完美展示每个设备。请有人给我建议。谢谢你

1 个答案:

答案 0 :(得分:0)

您可以像这样使用scaleType属性..

android:scaleType="fitXY"

有关更多信息,请参阅this