9-Patch,图像按钮周围的边框

时间:2016-08-03 20:00:40

标签: java xml android-studio dynamic nine-patch

我正在尝试应用许多图片/照片/头像用户图标(动态),以便添加用户注册新按钮。我希望每个按钮都被宝丽来框架包围。我猜这是一个9补丁的东西(以前从未使用过)。我已经创建了带有透明中心的9补丁,但我不知道如何用宝丽来边框环绕每个图像按钮。我之前设法动态编程布局,这应该没问题。我正试图在xml周围练习周围的按钮..但是这样的运气!请有人帮帮我!甚至可以做到吗?我正朝着正确的方向前进吗?

1 个答案:

答案 0 :(得分:0)

乳清我做到了。非常简单,但如果你从未这样做过,很难知道每个设置元素。这是我的答案

 </LinearLayout>

    <ImageButton

        android:layout_width="150dp"
        android:layout_height="100dp"
        android:maxHeight="600dp"
        android:maxWidth="300dp"
        android:adjustViewBounds="true"
        android:scaleType="fitXY"
        android:id="@+id/imageButton"
        android:src="@drawable/events_selected"
        android:layout_gravity="center_horizontal"
        android:layout_weight="0.05"
        android:background="@drawable/photo_4"
        />

</LinearLayout>

完成后我会发布动态代码