在平板电脑上运行时,背景图片无法占据整个屏幕

时间:2018-09-09 06:44:06

标签: android-studio user-interface gridview layout scrollview

背景图片

android:background="@drawable/jhyti"
在平板电脑上安装应用程序时,

不会占据整个屏幕。 我使用的是滚动视图,布局参数为

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:scaleType="centerCrop"
    android:background="@drawable/jhyti"
    android:orientation="vertical">

<RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

如何使背景图片占据整个屏幕?

1 个答案:

答案 0 :(得分:0)

更改xml文件中的比例类型以及相对布局中的宽度和高度

<LinearLayout
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:scaleType="fitXY"
   android:background="@drawable/jhyti"
   android:orientation="vertical">
 <RelativeLayout
  android:layout_width="match_parent"
  android:layout_height="match_parent">

或在Java文件中添加以下代码,然后尝试

 ImageView simpleImageView= 
(ImageView)findViewById(R.id.simpleImageView);
  simpleImageView.setScaleType(ImageView.ScaleType.FIT_XY);