If you think the Android project fruit.thememanager listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
package com.fruit.thememanager;
/*www.java2s.com*/import android.content.Context;
import android.util.AttributeSet;
import android.widget.LinearLayout;
publicclass ListItem extends LinearLayout {
public ListItem(Context context) {
this(context, null);
// TODO Auto-generated constructor stub
}
public ListItem(Context context, AttributeSet attrs) {
this(context, attrs, 0);
// TODO Auto-generated constructor stub
}
public ListItem(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs);
// TODO Auto-generated constructor stub
setFocusable(true);
setClickable(true);
}
}