Questions tagged «android-studio»

用于询问有关使用Android Studio(谷歌针对Android应用开发的官方IDE)的问题。一般而言,请勿使用有关Android编程的问题;而是使用[android]标签。

30
在Android Studio上更改项目名称
我想更改项目和模块的名称。但是,如果我尝试重命名它们,Android Studio会通知我一些错误... 例如,我想将名称从“ MyApplication”更改为“ AndroidApp”,如下图所示。 在第一个矩形中,我要更改它: AndroidApp(“ G:... \ Android \ AndroidApp)。 在第二个矩形中,我要更改它: AndroidApp [AndroidApp-AndroidApp] 编辑:这是日志: Gradle:在根项目“ MyApplicationProject”中找不到项目“ AndroidApp”。 build.gradle: buildscript { repositories { mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:0.5.+' } } apply plugin: 'android' repositories { mavenCentral() } android { compileSdkVersion 18 buildToolsVersion "18.0.1" defaultConfig { minSdkVersion 7 targetSdkVersion …

13
Android Studio:编译器错误输出窗口在哪里?
当我在Android Studio中“运行”项目时,在“消息”窗口中,我得到: Gradle: FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':play01:compileDebug'. > Compilation failed; see the compiler error output for details. * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. …

30
Android Studio Logcat什么也没显示
我昨天安装了Android Studio,并尝试使用LogCat查看日志。但是logcat中没有任何显示。我使用终端运行,./adb logcat并且可以运行。 是否有人可以向我解释如何在Android Studio中使用logcat?





15
在调试模式下启动时,Android应用程序崩溃
在调试模式下运行时,应用程序崩溃,但在正常运行时,它可以正常运行。我认为问题是在连接调试器时发生的。 日志: A/art: art/runtime/jdwp/jdwp_event.cc:661] Check failed: Thread::Current() != GetDebugThread() (Thread::Current()=0x7f44a18400, GetDebugThread()=0x7f44a18400) Expected event thread A/art: art/runtime/runtime.cc:422] Runtime aborting... A/art: art/runtime/runtime.cc:422] Aborting thread: A/art: art/runtime/runtime.cc:422] "JDWP" prio=5 tid=4 WaitingForDebuggerSend A/art: art/runtime/runtime.cc:422] | group="" sCount=0 dsCount=0 obj=0x12c60280 self=0x7f44a18400 A/art: art/runtime/runtime.cc:422] | sysTid=24137 nice=0 cgrp=default sched=0/0 handle=0x7f4b904450 A/art: art/runtime/runtime.cc:422] | state=R schedstat=( 132066712 …

13
gradlew:权限被拒绝
我正在尝试从命令行运行gradlew,但始终遇到以下错误。 Brendas-MacBook-Pro:appx_android brendalogy$ ./gradlew compileDebug --stacktrace -bash: ./gradlew: Permission denied 我已经在我的项目目录中运行了此命令。需要运行此命令,因为我在Android Studio 0.2.x上遇到与此处相同的错误(非描述性错误):Android studio和gradle构建错误 我做错什么了,我该如何解决?

22
AppCompat v7 r21在values.xml中返回错误?
我正在使用Android Studio,当我将其添加compile "com.android.support:appcompat-v7:21.0.0" 到Gradle文件中时,出现很多错误: C:\Users\WindowsSucks\AndroidStudioProjects\MMMeds\app\build\intermediates\exploded-aar\com.android.support\appcompat-v7\21.0.0\res\values-v11\values.xml Error:(36, 21) No resource found that matches the given name: attr 'android:actionModeShareDrawable'. Error:(36, 21) No resource found that matches the given name: attr 'android:actionModeShareDrawable'. Error:(36, 21) No resource found that matches the given name: attr 'android:actionModeShareDrawable'. Error:(36, 21) No resource found that matches the given …



10
查找并替换Android Studio
有没有一种方法可以找到并替换整个项目中所有单词的出现(不仅是使用重构->重命名的单个类),而且还可以在android studio中或使用命令行脚本维护大小写吗? 例如,供应商必须去商家,供应商->商人,供应商->商户。我的老板希望我为正在进行的项目更改所有与供应商的联系。我已经做了大约一个小时,我知道我在浪费时间。让我知道任何节省时间的建议。

19
使用Android Studio构建未签名的APK文件
我正在使用Android开发人员工具开发一个android应用。现在,我尝试了新的Android Studio,如果将智能手机与PC连接并直接在Android Studio中运行该程序,则一切正常。但是现在我想在不将其他智能手机连接到我的PC的情况下测试该程序。 每次编译程序时,ADT都会在“ projectname / bin”下创建.apk文件。我现在如何看待Android Studio无法做到这一点。 所以我的问题是可以使用Android Studio创建未签名的.apk文件吗?


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.