菜鸟在这里。我有一个仅围绕图像裁剪的可绘制 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。