怎么了->无法实例化

时间:2018-11-27 07:20:02

标签: android android-studio

import android.app.Application;

import com.estimote.coresdk.observation.region.Region;
import com.estimote.coresdk.service.BeaconManager;


import java.util.UUID;

public class MyApplication extends Application {

private BeaconManager beaconManager;

@Override
public void onCreate(){
    super.onCreate();
    beaconManager = new BeaconManager(getApplicationContext());

    beaconManager.connect(new BeaconManager.ServiceReadyCallback() {
        @Override
        // 비콘 uuid,major minor
        public void onServiceReady() {
            beaconManager.startMonitoring(new Region());
        }
    });
}
}

这是我的代码 当我使用这段代码 -beaconManager.startMonitoring(new Region());- 无法命名命名错误 我该如何解决?

http://loveiskey.tistory.com/207

这是我所引用的网站

1 个答案:

答案 0 :(得分:0)

Estimote Region是一个接口。您不能实例化接口。您需要实例化一些实现该接口的类。