我只是想制作一个简单的图像视图,但是当我运行该应用程序时,会出现不必要的白色背景。我不想要那个部分。任何解决方案
这是我的图像视图的xml文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:src="@drawable/pot1"/>
</LinearLayout>
答案 0 :(得分:1)
在代码使用中 -
function [ phi, lambda, h ] = trans_cartesian( x, y, z )
%your code
while phi<10^-12
% your code
end
if(phi > 10^-12)
h = 0; % or specified value
end
或者在xml图像视图中 -
imgview.setScaleType(ScaleType.FIT_XY);
答案 1 :(得分:0)
删除gravity
属性,如果你想让它贴在屏幕顶部或添加scaleType属性fitCenter
,cropCenter
或fitXY
,如果你想要它填满屏幕。