You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
27 lines
584 B
Java
27 lines
584 B
Java
package android.widget;
|
|
|
|
import android.content.Context;
|
|
import android.graphics.drawable.Drawable;
|
|
import android.util.AttributeSet;
|
|
import android.view.View;
|
|
|
|
public class ListView extends AbsListView {
|
|
|
|
public ListView(Context context) {
|
|
super(context);
|
|
}
|
|
|
|
public ListView(Context context, AttributeSet attributeSet) {
|
|
super(context, attributeSet);
|
|
}
|
|
|
|
public int getDividerHeight() {return 0;}
|
|
|
|
public Drawable getDivider() {return null;}
|
|
|
|
public void setTextFilterEnabled(boolean enabled) {}
|
|
|
|
public void addHeaderView(View v, Object data, boolean isSelectable) {}
|
|
|
|
}
|