我试图拉伸imageView
比窗口移动屏幕大3倍。但是,如果我希望视图更大,它似乎不起作用。
int WindowWidth = UtilityClass.getWindowWidth();
int WindowHeight = UtilityClass.getWindowHeight();
bk_main = (ImageView) findViewById(R.id.bk_main);
bk_main.getLayoutParams().width = WindowWidth * 3;
bk_main.getLayoutParams().height = WindowHeight * 3;
bk_main.requestLayout();
使用代码imageView
得到伸展但不会超出移动窗口边距。
我怎么能这样做?
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.livectlab.gml.MainActivity">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/bk"
android:id="@+id/bk_main"
android:scaleType="fitXY"
android:contentDescription="@string/bk_description"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true" />
</RelativeLayout>
我想旋转背景图片而不留空格