how to show group tableview android? [closed]
Asked Answered
N

2

-2

i want to bulid a table layouts like this.how?

alt text http://privateevent.co.uk/underground/img/gallery/19_1236343602.png

Notion answered 4/3, 2010 at 13:30 Comment(3)
Can you add some text describing the effect you are trying to achieve as it's not immediately obvious from the screenshot. It would also worth saying what you have tried so far.Syllabic
i can create multiple table layouts with padding="10dip" but cant create the layout circled corner.Notion
picture is not available anymore.. It would be useful if u describe contentNormi
O
16

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.

(And as Dave Webb said, putting a bit of detail into your question when you first ask it helps.)

Obtrusive answered 4/3, 2010 at 18:52 Comment(0)
M
1

save that xml content to my_shape_file.xml to res/drawable/, then you got it ..

Mastership answered 31/3, 2011 at 1:29 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.