我正在尝试在圆形背景图像中插入图标,但是图像尺寸有问题。该图标当前大于圆形,如果不调整圆形背景的大小,我似乎无法调整其大小。这是我的XML:
<android.support.v7.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="@drawable/circle_dark_grey"
android:src="@drawable/calendar_icon" />
</android.support.v7.widget.LinearLayoutCompat>
我对android UI还是很陌生,所以如果有更好的方法可以做到这一点,或者如果您知道如何解决我的问题,请告诉我!
欢呼
答案 0 :(得分:2)
您可以通过以下两种方法进行操作:
<ImageView
android:padding="10dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="@drawable/circle_dark_grey"
android:src="@drawable/calendar_icon" />
或
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<View
android:layout_gravity="center"
android:background="@drawable/circle_dark_grey"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<ImageView
android:padding="10dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:src="@drawable/calendar_icon" />
</FrameLayout>