如何在URL上将URL图像放入屏幕?

时间:2017-01-12 11:03:45

标签: android image

我从网址获取图片,但它不适合屏幕,因为它在浏览器上显示...请帮助..我尝试了一切..这个网址 " http://i.imgur.com/DvpvklR.png" 这是图像enter image description here

如果我们在浏览器上运行网址,我们可以在我的设备上看到它略微上升......我希望它在我的设备上看起来很完美

这是我的xml文件:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"

    >


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:orientation="vertical">

        <LinearLayout
            android:id="@+id/linearLayout1"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="0.7">

            <ImageView
                android:id="@+id/ms1"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:scaleType="fitXY"
                android:src="@drawable/main1" />


        </LinearLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="0.3">


            <ImageView
                android:id="@+id/ms2"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_weight=".5"

                android:scaleType="fitXY"

                android:src="@drawable/pl2" />

            <ImageView
                android:id="@+id/ms3"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_weight=".5"
                android:scaleType="fitXY"
                android:src="@drawable/l1" />
        </LinearLayout>
    </LinearLayout>


</RelativeLayout>

3 个答案:

答案 0 :(得分:0)

您可以为此目的使用称为滑行的库

答案 1 :(得分:0)

将此添加到您的Imageview,

                android:adjustViewBounds="true"
                android:layout_alignParentBottom="true"
                android:layout_alignParentTop="true"
                android:layout_alignParentLeft="true"
                android:layout_alignParentRight="true"

答案 2 :(得分:0)

看看它是否有效。

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <LinearLayout
            android:id="@+id/linearLayout1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <ImageView
                android:id="@+id/ms1"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:scaleType="fitXY"
                android:adjustViewBounds="true"
                android:src="@drawable/main1"/>


        </LinearLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1">


            <ImageView
                android:id="@+id/ms2"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_weight=".5"
                android:scaleType="fitXY"
                android:src="@drawable/pl2"/>

            <ImageView
                android:id="@+id/ms3"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_weight=".5"
                android:scaleType="fitXY"
                android:src="@drawable/l1"/>
        </LinearLayout>
    </LinearLayout>


</RelativeLayout>