ACTION_LOCATION_SOURCE_SETTINGS:无法解析或不是字段

时间:2014-02-25 04:58:22

标签: android android-intent android-location

我通过Intent.its调用ACTION_LOCATION_SOURCE_SETTINGS显示无法解析或不是从外部导入Project时导致的字段。我现在该怎么办?

Intent viewIntent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
                        startActivity(viewIntent);

2 个答案:

答案 0 :(得分:6)

试试这个..

我猜您的导入错误

使用

import android.provider.Settings;

或者尝试如下。

Intent viewIntent = new Intent(android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS);
startActivity(viewIntent);

答案 1 :(得分:0)

在Eclipse中检查项目的属性,选择“Android”并检查目标名称是“Android 6.0”还是+