You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
487 B
19 lines
487 B
package com.kongzue.dialogx.util;
|
|
|
|
import android.content.Context;
|
|
import android.widget.ArrayAdapter;
|
|
|
|
import androidx.annotation.NonNull;
|
|
|
|
/**
|
|
* @author: Kongzue
|
|
* @github: https://github.com/kongzue/
|
|
* @homepage: http://kongzue.com/
|
|
* @mail: myzcxhh@live.cn
|
|
* @createTime: 2020/10/10 19:56
|
|
*/
|
|
public class IOSMenuArrayAdapter extends ArrayAdapter<CharSequence> {
|
|
public IOSMenuArrayAdapter(@NonNull Context context, int resource) {
|
|
super(context, resource);
|
|
}
|
|
}
|
|
|