Android ImageView全屏

时间:2015-01-14 11:59:15

标签: android image android-imageview

我在.xml文件中使用ImageView以全屏模式显示图像时出现问题。

我有4张用于肖像的图片和4张用于横向的图片,尺寸为:

风景:

  1. l:320x200px
  2. m:480x320px
  3. h:840x480px
  4. xh:1280x720px
  5. 人像:

    1. l:200x320px
    2. m:320x480px
    3. h:480x840px
    4. xh:720x1280px
    5. xml文件是:

         <?xml version="1.0" encoding="utf-8"?>
         <LinearLayout
          xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent"       
          android:gravity="center" android:background="#fff" android:weightSum="1">
      
      
      <ImageView
          android:id="@+id/paginasplash"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent"
          android:adjustViewBounds="true"
          android:clickable="false"
          android:src="@drawable/screen"                        
      />
      
       </LinearLayout>
      

      但图像永远不适合屏幕尺寸。同时尝试使用广告android:scaleType="fitXY"android:scaleType="centerInside"等不同设置也可以解决问题。

      我能得到的最好的是顶部和底部有一个小边框的图像。

      如何在全屏显示图像?

      我可以使用不同的维度吗?

0 个答案:

没有答案