- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我一直在努力让这个 android 项目在带有 gradle 的 android studio 中工作。我对这一切还很陌生,所以这可能是一个简单的问题,但我已经花了好几天时间,无法克服我在尝试运行我的项目时收到的这个错误:
Error:(25, 62) error: package com.google.android.gms.common.GooglePlayServicesClient does not exist
Error:(26, 62) error: package com.google.android.gms.common.GooglePlayServicesClient does not exist
Error:(27, 39) error: cannot find symbol class LocationClient
Error:(42, 60) error: cannot find symbol class ConnectionCallbacks
Error:(43, 3) error: cannot find symbol class OnConnectionFailedListener
Error:(82, 10) error: cannot find symbol class LocationClient
Error:(586, 26) error: cannot find symbol class LocationClient
Error:(618, 2) error: method does not override or implement a method from a supertype
Error:(627, 2) error: method does not override or implement a method from a supertype
Error:(635, 2) error: method does not override or implement a method from a supertype
Error:Execution failed for task ':compileDebugJava'.
> Compilation failed; see the compiler error output for details.
这是错误来源文件的顶部(我已标记有问题的行):
package edu.gatech.ppl.cycleatlanta;
import android.app.AlertDialog;
import android.content.ComponentName;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.ServiceConnection;
import android.location.Location;
import android.location.LocationManager;
import android.os.Bundle;
import android.os.Handler;
import android.os.IBinder;
import android.provider.Settings;
import android.support.v4.app.Fragment;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;
import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.***GooglePlayServicesClient***.ConnectionCallbacks;
import com.google.android.gms.common.***GooglePlayServicesClient***.OnConnectionFailedListener;
import com.google.android.gms.***location.LocationClient***;
import com.google.android.gms.location.LocationListener;
import com.google.android.gms.location.LocationRequest;
import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.GoogleMap.OnMyLocationButtonClickListener;
import com.google.android.gms.maps.SupportMapFragment;
import com.google.android.gms.maps.UiSettings;
import com.google.android.gms.maps.model.LatLng;
import java.text.SimpleDateFormat;
import java.util.TimeZone;
import java.util.Timer;
import java.util.TimerTask;
public class FragmentMainInput extends Fragment implements **ConnectionCallbacks**,
**OnConnectionFailedListener**, LocationListener,
OnMyLocationButtonClickListener {
public static final String ARG_SECTION_NUMBER = "section_number";
Intent fi;
TripData trip;
NoteData note;
boolean isRecording = false;
Timer timer;
float curDistance;
TextView txtDuration;
TextView txtDistance;
TextView txtCurSpeed;
int zoomFlag = 1;
Location currentLocation = new Location("");
final SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
// Need handler for callbacks to the UI thread
final Handler mHandler = new Handler();
final Runnable mUpdateTimer = new Runnable() {
public void run() {
updateTimer();
}
};
private final static int MENU_USER_INFO = 0;
private final static int MENU_HELP = 1;
private final static int CONTEXT_RETRY = 0;
private final static int CONTEXT_DELETE = 1;
DbAdapter mDb;
GoogleMap map;
UiSettings mUiSettings;
private LocationClient mLocationClient;
private static final LocationRequest REQUEST = LocationRequest.create()
.setInterval(5000) // 5 seconds
.setFastestInterval(16) // 16ms = 60fps
.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);
public FragmentMainInput() {
}
当我将鼠标悬停在代码中标记的行时:
import com.google.android.gms.common.GooglePlayServicesClient.ConnectionCallbacks;
import com.google.android.gms.common.GooglePlayServicesClient.OnConnectionFailedListener;
import com.google.android.gms.location.LocationClient;
它说:“无法解析符号”
这是我的 build.gradle 文件:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.0'
// NOTE: Do not place your application dependencies here; they
// belong in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
apply plugin: 'com.android.application'
dependencies {
compile 'com.android.support:appcompat-v7:22.0.0'
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.android.gms:play-services:7.0.0'
compile files('libs/android-support-v4.jar')
}
android {
compileSdkVersion 22
buildToolsVersion "22"
compileOptions.encoding = 'windows-1251'
defaultConfig {
minSdkVersion 19
targetSdkVersion 22
versionCode 2
versionName "2.0"
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}
// Move the tests to tests/java, tests/res, etc...
instrumentTest.setRoot('tests')
// Move the build types to build-types/<type>
// For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
// This moves them out of them default location under src/<type>/... which would
// conflict with src/ being used by the main source set.
// Adding new build types or product flavors should be accompanied
// by a similar customization.
debug.setRoot('build-types/debug')
release.setRoot('build-types/release')
}
}
还有我的 list :
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="edu.gatech.ppl.cycleatlanta"
android:versionCode="2"
android:versionName="2.0" >
<uses-sdk
android:minSdkVersion="19"
android:targetSdkVersion="22" />
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />
<uses-feature
android:name="android.hardware.camera"
android:required="false" >
</uses-feature>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" >
</uses-permission>
<uses-permission android:name="android.permission.INTERNET" >
</uses-permission>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="edu.gatech.ppl.cycleatlanta.TabsConfig"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="edu.gatech.ppl.cycleatlanta.MainInputActivity"
android:label="@string/title_activity_main_input" >
</activity>
<activity
android:name="edu.gatech.ppl.cycleatlanta.TripPurposeActivity"
android:label="@string/title_activity_trip_purpose" >
</activity>
<activity
android:name="edu.gatech.ppl.cycleatlanta.UserInfoActivity"
android:label="@string/title_activity_user_info" >
</activity>
<activity
android:name="edu.gatech.ppl.cycleatlanta.TripMapActivity"
android:label="@string/title_activity_trip_map" >
</activity>
<activity
android:name="edu.gatech.ppl.cycleatlanta.SavedTripsActivity"
android:label="@string/title_activity_saved_trips" >
</activity>
<activity
android:name="edu.gatech.ppl.cycleatlanta.TripDetailActivity"
android:label="@string/title_activity_trip_detail" >
</activity>
<activity
android:name="edu.gatech.ppl.cycleatlanta.NoteTypeActivity"
android:label="@string/title_activity_note_type" >
</activity>
<activity
android:name="edu.gatech.ppl.cycleatlanta.NoteDetailActivity"
android:label="@string/title_activity_note_detail" >
</activity>
<activity
android:name="edu.gatech.ppl.cycleatlanta.NoteMapActivity"
android:label="@string/title_activity_note_map" >
</activity>
<activity
android:name="edu.gatech.ppl.cycleatlanta.SavedNotesActivity"
android:label="@string/title_activity_saved_notes" >
</activity>
<service
android:name="edu.gatech.ppl.cycleatlanta.RecordingService"
android:enabled="true"
android:exported="true" >
</service>
<activity
android:name="edu.gatech.ppl.cycleatlanta.MainActivity"
android:label="@string/title_activity_main" >
</activity>
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyB9orX8RcKrVvF8Vg1_yMhIvu59XUW_inw" />
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
</application>
</manifest>
在我看来,google play 服务链接存在问题。我遵循了几个不同的示例,并且肯定已经下载了它,但我无法让它工作。此外,我感觉我的 list (不确定 sdk 版本的正确目标)和 gradle 文件(jcenter 或 maven?并设置适当的依赖项)可能配置不正确。
这方面的任何帮助都会很棒我过去几天一直在搜索互联网,但我无法解决我确信这是一个简单的问题...
最佳答案
如果您使用的是 Google Play Services 7.0.0,您只需更改
import com.google.android.gms.common.GooglePlayServicesClient.ConnectionCallbacks;
import com.google.android.gms.common.GooglePlayServicesClient.OnConnectionFailedListener;
到
import com.google.android.gms.common.api.GoogleApiClient.ConnectionCallbacks;
import com.google.android.gms.common.api.GoogleApiClient.OnConnectionFailedListener;
如果您覆盖了 onDisconnected 方法,您还应该删除它。
关于android - Google Play 服务客户端错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29314457/
这里的这个问题对 updating Google Sheets charts linked to Google slides 有一个简洁的解决方案. function onOpen() { var
我正在尝试将 Google 表单添加到 Google 类作业中,但似乎不可能。 首先,它在这里 ( https://developers.google.com/classroom/reference/
出于某种原因,无论我做什么以及我如何尝试,这个日期格式化程序都不起作用。工具提示仍然显示错误的格式。你可以试试代码here . 在代码中我必须注释掉 formatter.format(dataTabl
我目前正在使用访问 token 和刷新 token 从 Google Analytics Reporting API (v4) 中提取数据。当我致力于自动从 Google Analytics 中提取数
我已在 Google 云端硬盘中创建了一个文件夹,例如测试一下,放入3个文件 a.jpg, b.jpg, c.jpg 我希望在同一帐户下的 Google 电子表格中访问文件,例如生成图像文件的链接,可
电子表格 A 是欢迎新移民来到我们小镇的团队的主数据源。它里面有大量非常敏感的数据,不能公开,哪怕是一点点。 (我们谈论的是 child 的姓名和出生日期以及他们在哪里上学……保证电子表格 A 的安全
有没有办法在 Google 文档中编写 Google Apps 脚本以从 Google 表格中检索仅限于非空白行的范围并将这些行显示为表格? 我正在寻找一个脚本,用于使用 Google Apps 脚本
有没有办法在 Google 文档中编写 Google Apps 脚本以从 Google 表格中检索仅限于非空白行的范围并将这些行显示为表格? 我正在寻找一个脚本,用于使用 Google Apps 脚本
尝试检索存储在 google firebase 中名为条目的节点下的表单条目,并使用谷歌工作表中的脚本编辑器附加到谷歌工作表。 我已将 FirebaseApp 库添加到谷歌表脚本编辑器。然后我的代码看
是否可以将我的 Web 应用程序的登录限制为仅限 google 组中的帐户? 我不希望每个人都可以使用他们的私有(private) gmail 登录,而只能使用我的 google 组中的用户。 最佳答
我们想使用 Google 自定义搜索实现 Google 附加链接搜索框。在谷歌 documentation , 我发现我们需要包含以下代码来启用附加链接搜索框 { "@context"
我想将特定搜索词的 Google 趋势图表添加到我的 Google Data Studio 报告中,但趋势不是数据源列表中的选项。我也找不到嵌入 JavaScript 的选项。是否可以将趋势图表添加到
是否可以将文件从 Google Drive 复制到 Google Cloud Storage?我想它会非常快,因为两者都在类似的存储系统上。 我还没有看到有关无缝执行此操作的任何方法的任何信息,而无需
之间有什么区别 ga('send', 'pageview', { 'dimension1': 'data goes here' }); 和 ga('set', 'dimension1', 'da
我正在尝试记录每个博客站点作者的点击率。 ga('send', 'pageview'); (in the header with the ga code to track each page) ga(
我设置了 Google Tag Manager 和 2 个数据层变量:一个用于跟踪用户 ID,传递给 Google Analytics 以同步用户 session ,另一个用于跟踪访问者类型。 在使用
我在我们的网站上遇到多个职位发布的问题。 我们在加拿大多个地点提供工作机会。所有职位页面都包含一个“LD+JSON ”职位发布的结构化数据,基于 Google 的职位发布文档: https://dev
公司未使用 Google 套件,使用个人(消费者)帐户(甚至是 Google 帐户)违反公司政策。 需要访问 Google Analytics - 没有 Google 帐户是否可能? 谢谢 最佳答案
我想分析人们使用哪些搜索关键字在 Play 商店中找到我的应用。 那可能吗?我怎么能这样做? 最佳答案 自 2013 年 10 月起,您可以关联您的 Google Analytics(分析)和 Goo
Google Now 和 Google Keep 中基于时间和位置的提醒与 Google Calendar 事件提醒不同。是否有公共(public) API 可以访问 Now 和 Keep 中的这些事
我是一名优秀的程序员,十分优秀!