我尝试使用bitmap
从我的服务器获取图像。它的工作正常,图像高分辨率,但我在我的imageView中看到它。图像视图具有完整的容器宽度。
有布局代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/background"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:background="@drawable/android_bg" />
<ImageButton
android:layout_width="160dp"
android:layout_height="40dp"
android:id="@+id/imageButton"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:background="@drawable/login_button"
/>
<ImageButton
android:layout_width="160dp"
android:layout_height="40dp"
android:id="@+id/imageButton2"
android:layout_marginTop="44dp"
android:background="@drawable/registration_button"
android:layout_below="@+id/imageButton"
android:layout_alignLeft="@+id/imageButton"
android:layout_alignStart="@+id/imageButton" />
<TextView
android:layout_width="160dp"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Bentornato"
android:id="@+id/textView2"
android:gravity="center"
android:layout_above="@+id/imageButton"
android:layout_alignLeft="@+id/imageButton"
android:layout_alignStart="@+id/imageButton"
android:layout_marginBottom="42dp" />
<ImageView
android:layout_width="match_parent"
android:layout_height="125dp"
android:id="@+id/home_logo"
/>
</RelativeLayout>
所以我的imageView的id为home_logo,宽度为match_parent。 我该怎么办?
答案 0 :(得分:2)
在ImageView中使用此标记
android:scaleType="fitXY"
按照此详细信息教程
http://www.peachpit.com/articles/article.aspx?p=1846580&seqNum=2
希望它会有所帮助。
答案 1 :(得分:0)
您也可以将图片设置为imageview
imageview.setBackgroundResource(R.drawable.your_image);