开发者

how to show group tableview android? [closed]

开发者 https://www.devze.com 2022-12-21 18:59 出处:网络
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its current form. For help clari
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. 开发者_如何学编程 Closed 10 years ago.

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

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


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.)


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

0

精彩评论

暂无评论...
验证码 换一张
取 消