Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

i have no idea how to make this, please help

I want to make a markshit layout view in android xml. How could i make it, can i use ListView to make semester dynamic..

            sem 1    sem 2    sem 3.... Total
 math          20       25      22        67
 science       18       22      24        64
 english       18       22      24        64
 physical      20       25      22        67

 Total         76       94      92        262
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
144 views
Welcome To Ask or Share your Answers For Others

1 Answer

You can use GridLayout for this or LinearLayout

If you are using GridLayout then push an empty view for position 0 and position 1,2,3,4,5... column will contain your semester heading and last column index will be Total

now next row's first element will be your subject header and same for every for

you have to arrange your model accordingly to achieve proper data representation

If you are using LinearLlayout then your Layout will be in xml using LinearLayout weightSum and weigh property


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...