2014-11-03 120 views
0

如何在Android列表視圖中生成以下佈局?跨項目行共享背景Android ListView

我需要一個分隔符的背景是一個橫跨不同項目的漸變。這可能嗎?

enter image description here

+0

取決於後臺有多少項目是漫長的,但我認爲它可能是例如,如果它僅在前三個變化,則可能 – TheRedFox 2014-11-03 11:04:45

回答

0

如果你想實現這只是延長適配器,像BaseAdapter和做這樣的事情:

int[] drawables = {R.drawable.back_one, R.drawable.back_two, R.drawable.back_three}; 

@Override 
public View getView(int i, View view, ViewGroup viewGroup) { 
    .....check if view is null otherwise inflate a new layout..... 

    if(drawables.length < 3) { 
     //You can assign one of the backgrounds 
     view.setBackdroundResource(drawables[i]); 
    } 

}