gpt4 book ai didi

java - 为什么我的 9-patch 在Android中这么小?

转载 作者:行者123 更新时间:2023-12-01 04:13:09 24 4
gpt4 key购买 nike

我有这两个 9-patch :

enter image description here

enter image description here

这是我的XML:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/switch_bg"
android:layout_width="45dp"
android:layout_height="32dp"
android:background="@drawable/switch_bg_off"
android:padding="0dp" >

<ImageView
android:id="@+id/switch_bg2"
android:layout_width="45dp"
android:layout_height="32dp"
android:layout_centerInParent="true"
android:src="@drawable/switch_bg_off" />

<RelativeLayout
android:id="@+id/switch_handle"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:background="@drawable/switch_handle"
android:padding="0dp" >

<ImageView
android:id="@+id/switch_v"
android:layout_width="15dp"
android:layout_height="15dp"
android:layout_centerInParent="true"
android:src="@drawable/switch_v" />

</RelativeLayout>

</RelativeLayout>

但是在图形编辑器和我的应用程序本身中

白盒子被切成两半,看起来不正确:

enter image description here

如何解决这个问题?

最佳答案

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/switch_bg"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/switch_bg_off"
android:padding="0dp" >

<ImageView
android:id="@+id/switch_bg2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:src="@drawable/switch_bg_off" />

<RelativeLayout
android:id="@+id/switch_handle"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:background="@drawable/switch_handle"
android:padding="0dp" >

<ImageView
android:id="@+id/switch_v"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:src="@drawable/switch_v" />

</RelativeLayout>

</RelativeLayout>

关于java - 为什么我的 9-patch 在Android中这么小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19704380/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com