我上面有一个CheckBox和一个Button,然后是CheckBox。 当我在设计模式下观看xml文件时,CheckBox周围没有任何空格,所以当我在模拟器上运行它时,但是当我在真实设备上运行应用程序时,我获得了大约7-8 dp的空间并且在CheckBox下面,在CheckBox和右边的文本之间大约20 dp。
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button 1"
android:id="@+id/button" />
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Text"
android:id="@+id/checkBox"
android:button="@drawable/checkbox"
android:layout_marginLeft="10dp" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button 2"
android:id="@+id/button2" />
This是模拟器截图,this是真实设备截图。 另外,我不知道为什么现在模拟器中的复选框上面有一个空格。
有谁知道为什么会发生这种情况以及如何解决这个问题?