Android table with round border

前端 未结 3 1904
忘了有多久
忘了有多久 2021-01-30 11:22

How can I make a table with a round border, similar to the photo below, in Android?

\"Round-bordered

相关标签:
3条回答
  • 2021-01-30 11:45

    I had a similar task recently so I decided to write a library for this purpose. Feel free to use it for your needs... https://github.com/vladexologija/GroupedTextView

    GroupedTextView

    0 讨论(0)
  • 2021-01-30 11:48

    I think Androidbase linked to the wrong question... he asked a similar question recently, and here's the answer I gave him:

    You can put a coloured background with rounded corners into a table by using a Shape background. Create such a shape in an XML file, put in your drawables folder.

    <?xml version="1.0" encoding="UTF-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android">
        <solid android:color="#99FFFFFF"/>
        <corners android:radius="30px"/>
        <padding android:left="0dp" android:top="0dp" android:right="0dp" android:bottom="0dp" /> 
    </shape>
    

    For example the above creates a semi-transparent white background with 30px rounded corners. You set this to the table by using

    android:background="@drawable/my_shape_file"
    

    in the XML file where you defined your table layout.

    0 讨论(0)
  • 2021-01-30 12:03

    I prefer to use a masking technique - overlay a mask image (any iOS-style background, with a transparent cutout in it) over a standard layout.

    This way, the background of my layout is not linked directly to a bitmap, I can change it very easily.

    I have an answer explaining that here: Android XML rounded clipped corners

    0 讨论(0)
提交回复
热议问题