简体   繁体   中英

Round button in Android

I want to create a circular button having a plus and minus sign on to this and exactly used in Android Contacts application like shown in the image as below:

替代文字

You may see implementation of this button in android source code

It's just ImageButton with circular png as background. Here is definition of their styles:

<style name="MinusButton">
    <item name="android:background">@drawable/btn_circle</item>
    <item name="android:src">@drawable/ic_btn_round_minus</item>
    <item name="android:contentDescription">@string/description_minus_button</item>
</style>

<style name="PlusButton">
    <item name="android:background">@drawable/btn_circle</item>
    <item name="android:src">@drawable/ic_btn_round_plus</item>
    <item name="android:contentDescription">@string/description_plus_button</item>
</style>

只需使用android:background="@drawable/image"android:background="@drawable/image"为xml文件中的按钮属性之一

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM