Noob在这里。我有一个可绘制的PNG,只是在图像周围裁剪。没有垂直的空白区域。当我将其覆盖在父级空白上时,会添加垂直边距:
我希望PNG显示没有这些边距。
在我的主要活动中,我正在使用
image = (ImageView) findViewById(R.id.imageView1);
image.setImageResource(R.drawable.avalogo);
在我的xml中我正在使用
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" tools:showIn="@layout/app_bar_main"
tools:context=".MainActivity">
<ImageView
android:id="@+id/imageView1"
android:layout_alignTop="@id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/avalogo"
android:padding="5px"
/>
</RelativeLayout>
我已经尝试了所有内容并阅读了很多内容。没有快乐。我正在使用三星S6。 TIA。