android-为什么当我将填充应用于imageview时,图像被压缩?
作者:互联网
我有以下代码:
<LinearLayout
android:id="@+id/aceptar_y_rechazar_tu_mesa"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:orientation="horizontal"
android:padding="10dp"
>
<ImageView
android:id="@+id/aceptar_tu_mesa"
android:layout_width="20dp"
android:layout_height="20dp"
android:scaleType="centerInside"
android:src="@drawable/checked"
/>
<ImageView
android:id="@+id/rechazar_tu_mesa"
android:layout_width="20dp"
android:layout_height="20dp"
android:scaleType="centerInside"
android:src="@drawable/menos"
/>
</LinearLayout>
和视觉上是这样的:
我需要将它们分开,但是当我使用padding-rigth时,会发生这种情况:
我该怎么办?
解决方法:
采用…
android:layout_marginRight
代替
android:paddingRight
标签:android-layout,android-xml,android 来源: https://codeday.me/bug/20191029/1963362.html