2023-08-17 10:46:24 +02:00
|
|
|
package android.widget;
|
|
|
|
|
|
|
|
|
|
import android.content.Context;
|
2024-02-17 15:15:05 +01:00
|
|
|
import android.graphics.drawable.Drawable;
|
2023-08-17 10:46:24 +02:00
|
|
|
import android.util.AttributeSet;
|
2024-03-16 12:49:28 +01:00
|
|
|
import android.view.View;
|
2023-08-17 10:46:24 +02:00
|
|
|
|
2023-09-12 23:18:47 +02:00
|
|
|
public class ListView extends AbsListView {
|
2023-08-17 10:46:24 +02:00
|
|
|
|
|
|
|
|
public ListView(Context context) {
|
|
|
|
|
super(context);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ListView(Context context, AttributeSet attributeSet) {
|
|
|
|
|
super(context, attributeSet);
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-17 15:15:05 +01:00
|
|
|
public int getDividerHeight() {return 0;}
|
|
|
|
|
|
|
|
|
|
public Drawable getDivider() {return null;}
|
|
|
|
|
|
2024-03-07 15:47:10 +01:00
|
|
|
public void setTextFilterEnabled(boolean enabled) {}
|
|
|
|
|
|
2024-03-16 12:49:28 +01:00
|
|
|
public void addHeaderView(View v, Object data, boolean isSelectable) {}
|
|
|
|
|
|
2023-08-17 10:46:24 +02:00
|
|
|
}
|