Clover Coverage Report - Main Coverage Report
Coverage timestamp: ven dic 19 2014 16:47:52 EST
../../../../../img/srcFileCovDistChart0.png 84% of files have more coverage
11   34   4   2,75
0   27   0,36   4
4     1  
1    
This report was generated with an evaluation server license. Purchase Clover or configure your license.
 
  SettingListview       Line # 10 11 4 0% 0.0
 
No Tests
 
1    package com.dreamcatcher.bicycle.view.settinglistview;
2   
3    import android.content.Context;
4    import android.util.AttributeSet;
5    import android.widget.ListView;
6   
7    import com.dreamcatcher.bicycle.R;
8    import com.dreamcatcher.bicycle.util.Utils;
9   
 
10    public class SettingListview extends ListView {
11   
 
12  0 toggle public SettingListview(Context context, AttributeSet attrs, int defStyle) {
13  0 super(context, attrs, defStyle);
14  0 init();
15    }
16   
 
17  0 toggle public SettingListview(Context context, AttributeSet attrs) {
18  0 super(context, attrs);
19  0 init();
20    }
21   
 
22  0 toggle public SettingListview(Context context) {
23  0 super(context);
24  0 init();
25    }
26   
 
27  0 toggle private void init(){
28  0 setBackgroundResource(R.drawable.listview_bg);
29  0 setCacheColorHint(Utils.getColor(R.color.transparent));
30  0 setDivider(Utils.getDrawable(R.drawable.setting_listview_divider));
31  0 setDividerHeight(1);
32  0 setPadding(1, 1, 1, 1);
33    }
34    }