How can I make a table 开发者_开发技巧with a round border, similar to the photo below, in Android?
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.
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
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
精彩评论