程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> imageview-如何設置圖像讓它符合屏幕的大小呢?

imageview-如何設置圖像讓它符合屏幕的大小呢?

編輯:編程綜合問答
如何設置圖像讓它符合屏幕的大小呢?

圖像在屏幕上看起來太小了,如何設置圖像讓它符合屏幕的大小呢?我使用wrap_content,還是沒實現。
用的下面的代碼:

<RelativeLayout
    android:id="@+id/layout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
<ImageView
    android:layout_alignParentTop="true"
    android:layout_marginTop="100dip"
    android:id="@+id/imageview"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:src="@drawable/splash_screen"/>
<ProgressBar
    android:layout_alignParentBottom="true"
    android:layout_marginBottom="20dip"
    android:id="@+id/progressbar"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"/>
</RelativeLayout>

哪裡出錯了呢?

最佳回答:


android:scaleType="center"
加上這個試試

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved