我正在尝试制作一些简单的9patch PNG照片,以便与ImageButton
视图一起使用,但它们无法正确缩放。例如,这是我正在使用的9patch PNG图像:
然而,这就是它的扩展方式:
这是按钮的XML:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<ImageButton
android:id="@+id/add_challenge1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/lockedbutton1"
android:onClick="add1" />
<ImageButton
android:id="@+id/add_challenge2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/lockedbutton1"
android:onClick="add2" />
<ImageButton
android:id="@+id/add_challenge3"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/lockedbutton1"
android:onClick="add3" />
<ImageButton
android:id="@+id/add_challenge4"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/lockedbutton1"
android:onClick="add4" />
<ImageButton
android:id="@+id/add_challenge5"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/lockedbutton1"
android:onClick="add5" />
</LinearLayout>
我真的不确定为什么图像的内容(锁定)比左边更向右,而不是均匀拉伸并保持锁定在中心。关于为什么会发生这种情况的任何想法?非常感谢任何人提供一些帮助。
答案 0 :(得分:1)
从9补丁中取出锁定图像,使用锁定制作单独的PNG,然后使用android:src
进行定义。要使用android:layout_gravity=center
按钮居中。