Tag: 安卓

Android Studio中构build和构build的区别

Android Studio Build菜单包含选项 Make Project Rebuild Project 我应该什么时候使用每个?

错误“文件google-services.json从模块根文件夹丢失。 没有它,Google服务插件就无法运行“

我将我的项目更新为最新的Play服务classpath 'com.google.gms:google-services:1.5.0-beta2' 。 我也在我的app.gradle文件中使用最新版本的playservices: compile 'com.google.android.gms:play-services-location:8.3.0' compile 'com.google.android.gms:play-services-gcm:8.3.0' 但是,当我编译时,Gradle抛出exception如下 Error:Execution failed for task ':app:processDebugGoogleServices'. > File google-services.json is missing from module root folder. The Google Services Plugin cannot function without it.

Gradle的DSL方法没有find:'compile()'

我有这个gradle错误。 错误:(9,0)未findGradle DSL方法:'compile()' 我曾尝试引用类似的问题,但没有奏效。 Android gradle build错误:(9,0)未findGradle DSL方法:'compile()'。 获取错误“Gradle DSL method not found:'compile()'”当同步Build.Gradle时 不支持的Gradle DSL方法发现:'compile()'! 我的build.gradle代码在这里 buildscript { repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:1.0.0' compile 'com.android.support:appcompat-v7:20.+' compile 'com.google.android.gms:play-services:6.5.+' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { jcenter() […]

从XML获取维度并在运行时设置文本大小

在dimens.xml中,我有: <dimen name="text_medium">18sp</dimen> 在运行时,我得到这个值并设置文本视图的文本大小: int size = context.getResources().getDimensionPixelSize(R.dimen.text_medium); textView.setTextSize(size). 在一个10“的平板(1280×800),一切都很好, 但在手机(800 x 480),文本视图有一个非常大的字体。 在平板电脑上,尺寸等于18; 在电话里,是27。 如果我手动设置大小: textView.setTextSize(size) 这两个设备的大小是正常的。

如何在Android Studio 3.0.0中使用数据绑定和Kotlin

我刚开始使用Android Studio 3.0.0,但每次尝试构build我的项目时都会出现此错误: Error:Circular dependency between the following tasks: :app:compileDebugKotlin +— :app:dataBindingExportBuildInfoDebug | \— :app:compileDebugKotlin (*) \— :app:kaptDebugKotlin \— :app:dataBindingExportBuildInfoDebug (*) (*) – details omitted (listed previously) 我在用 kapt "com.android.databinding:compiler:2.2.0" 在我使用之前 androidProcessor "com.android.databinding:compiler:2.2.0" 它工作得很好…我做错了什么? 谢谢!

如何在Android Studio / IntelliJ中导入Maven依赖项?

我已经使用Android Studio中的默认向导创build了一个新的Android项目。 编译,并将应用程序部署到我的设备。 一切都很好。 现在我想导入一个在Maven上可用的外部库。 ( http://square.github.io/picasso/ )。 我去了模块属性,并添加了一个Maven库。 它在依赖列表中正确显示。 另外,它显示在编辑器中,我可以在代码中正确使用它。 但是,在编译时,我得到一个Gradle错误:无法find类 有任何想法吗?

Android:是否可以显示video缩略图?

我用库对话框创build了一个video录制应用程序。 库对话框以下列方式显示录制的video列表,其中每个项目由图标,video标题,标签和位置信息组成: 有谁知道是否有可能用video缩略图(单帧预览)replace图标? 谢谢!

我怎样才能请求振动许可?

如何在Android应用程序中请求振动许可?

更改单选button的圆形颜色 – Android

我想改变单选button的圆的颜色,我不明白哪个属性设置。我有的背景颜色是黑色的,所以它变得不可见。我想设置圆的颜色为白色。

Android NDK教程/初学者指南。

我开始与Android NDK。 有什么好的地方/电子书引导我? 谢谢