9补丁填充不能正确调整

时间:2015-04-14 16:56:14

标签: android nine-patch

添加9补丁:

enter image description here

好像在这里:

enter image description here

但是,添加android:padding="5dp"后,填充不会发生在内容周围。此外,箭头有点伸展。我的9补丁是否被错误地绘制了?

enter image description here

的TextView:

enter image description here

1 个答案:

答案 0 :(得分:0)

最终这样做了。我想将背景9补丁直接添加到TextView不起作用。只需将其包装在FrameLayout

 <FrameLayout
        android:background="@drawable/notification_bg"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

        <TextView
            android:id="@+id/tv_number_left"
            android:padding="2dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:visibility="gone"/>

 </FrameLayout>