Tag: 机器人工作室

在Android Studio中删除未使用的导入

我最近启动了Android Studio IDE来制作Android应用程序。 我发现在Android Studio中删除未使用的导入短键不起作用( Ctrl + Shift + O ) 什么是在Android Studio中做同样的快捷键?

如何增加Android Studio中的字体大小?

Android Studio中的字体大小似乎非常小。 我怎样才能使字体大小更大?

如何将项目同步到Android Studio的GitHub?

我试图将我在Android Studio文件夹中的项目同步到GitHub,但我不完全确定除了在选项菜单中添加凭据之外,还需要执行什么操作。 有人可以给我一个快速的指导,请吗?

未find名称为“default”的Android Studio Gradleconfiguration

我在使用Android Studio编译我的应用程序时遇到问题(0.1.5)。 该应用程序使用2个库,我已经包括如下: settings.gradle include ':myapp',':library',':android-ColorPickerPreference' 的build.gradle buildscript { repositories { mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:0.4' } } apply plugin: 'android' dependencies { compile files('libs/android-support-v4.jar') compile project(':library') compile project(':android-ColorPickerPreference') } android { compileSdkVersion 17 buildToolsVersion "17.0.0" defaultConfig { minSdkVersion 7 targetSdkVersion 16 } } 编译时,我得到这个消息: Gradle: A problem occurred configuring project ':myapp'. > Failed […]

Android Studio:如何删除/更新添加到所有新类的“创build人”评论?

默认情况下,Android Studio自动为所有新类添加一个头部注释,例如 /** * Created by Dan on 11/20/13. */ 定制或删除它的设置在哪里?

Android Studio卡在Gradle下载新build项目

我已经安装了新的Android Studio 。 一切工作正常,但是当我尝试创build一个新的项目,它被卡在下载Gradle 。 有没有办法手动安装Android Studio所需的Gradle ? 还是有其他解决这个问题的方法?

Android Studio – 没有可debugging的应用程序

我试图debugging我的Android应用程序的发布版本,但Android Studio无法附加debugging器。 (它无法find我正在运行的应用程序的Android程序)。 在设备控制台下,只有一条消息: 没有可debugging的应用程序

在Android Studio中search整个项目中所有出现的string

这可能是一个非常愚蠢的问题,但我无法弄清楚。 我刚开始使用Android Studio(IntelliJ),现在我正在寻找这个function来查找我项目中任何文件中string的出现。 例如:我想查找所有包含string“ .getUuid() ”的文件 在右上angular的search没有给我正确的结果,我不认为我可以在编辑>查找下find这个function。 有人能指出我的方向吗? 任何帮助将真的很受欢迎!

您需要使用Theme.AppCompat主题(或后代)与此活动

Android Studio 0.4.5 用于创build自定义对话框的Android文档: http : //developer.android.com/guide/topics/ui/dialogs.html 如果您想要自定义对话框,则可以将对话框显示为对话框,而不是使用对话框API。 只需创build一个活动并将其主题设置为<activity> manifest元素中的Theme.Holo.Dialog: <activity android:theme="@android:style/Theme.Holo.Dialog" > 但是,当我尝试这个我得到以下exception: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity 我支持以下内容,我不能使用超过10分钟的东西: minSdkVersion 10 targetSdkVersion 19 在我的风格,我有以下几点: <!– Base application theme. –> <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> 在我的清单中,我有这样的活动: <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:theme="@android:style/Theme.Holo.Light.Dialog" android:name="com.ssd.register.Dialog_update" android:label="@string/title_activity_dialog_update" > </activity> 像这样创build对话框是我正在跳跃的事情,因为我已经完成了布局。 […]

将jar库导入到android-studio中

android-studio 0.2.7 Fedora 18 你好, 我正在尝试将jtwitter jar添加到我的项目中。 首先我尝试了以下操作: 1) Drag the jtwitter.jar into the root directory of my project explorer, see picture 2) File | project structure 3) Modules | yamba-yamba | dependencies 4) Click the plus sign | jars or directories | and navigate to jtwitter jar | click ok 当我导入jar文件时,出现以下错误: import winterwell.jtwitter.Twitter; Cannot […]