我希望有人可以帮助我:)。
我有FragmentCategory,我在哪里更改,哪些地方将在GridView中显示。
我一直 OnClick ,但是当我有片段“待定”时,我想要 LongClick - >然后我将展示MaterialDialog
我的OnClick:
@IBAction func AddAnnotation(_ sender: UIButton) {
CLLocationManager().startUpdatingLocation()
let annotation = MKPointAnnotation()
// Set the annotation by the lat and long variables
annotation.coordinate = CLLocationCoordinate2D()
annotation.title = "My Car"
self.map.addAnnotation(annotation)
}
有人可以告诉我,我怎样才能 LongClick ?
谢谢:)
答案 0 :(得分:1)
我认为你可以使用
adapter.setOnItemLongClickListener(new AdapterPlaceGrid.OnItemLongCLickListener(){
@Override
public void onItemLongClick(View v, Place p) {
....
}
});
查看此链接 https://developer.android.com/reference/android/widget/AdapterView.OnItemLongClickListener.html