Questions tagged «android-studio»

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


13
未解决的参考:kotlinx
我正在尝试在Android Studio中试用Kotlin和Kotlin Android扩展。我已经在Ubuntu 14.04上的Android Studio v 1.5.1和OS X El Capitan上的Android Studio v 1.5.1中尝试了相同的结果。 这是我在做什么: 我安装了Kotlin插件1.0.0-beta-35950-IJ141-11 创建一个新的空白Android项目 将MainActivity文件转换为Kotlin(通过help-> findaction->将文件转换为kotlin) 为Kotlin配置项目 然后,我进入生成的content_main.xml文件,并为“ Hello World!”添加一个ID(Hello)。TextView。 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" app:layout_behavior="@string/appbar_scrolling_view_behavior" tools:context="com.gmail.npnster.mykotlinfirstproject.MainActivity" tools:showIn="@layout/activity_main"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello World!" android:id="@+id/hello" /> </RelativeLayout> 然后,在转换后的MainActivity中,添加一行以设置TextView。(如下所示)。然后,Android Studio提示我(通过alt输入)插入此行(也如下所示) import kotlinx.android.synthetic.main.content_main.* …

13
Android Studio运行/调试配置错误:未指定模块
我在运行配置中收到“未指定模块”错误。下拉菜单中没有显示模块,但是我看不到模块的任何问题。当我重构模块名称,将settings.gradle更改为新名称时,就会出现问题。 现在,当我进入项目结构并选择我的模块时,屏幕上没有任何显示,甚至没有错误。 我不确定100%,但是模块旁边的图标看起来像是带杯子的文件夹,而不是带电话的文件夹。 我的确切步骤- 在Android视图中打开 重构目录名称 重构模块名称 更改settings.gradle内容:将名称更改为新名称


17
Android Studio-ADB错误-“…设备未授权。请检查设备上的确认对话框。”
因此,我开始在我的ADB日志中发现错误,我认为这导致我的设备现在显示应用程序的任何logcat输出。我正在获取除应用程序本身以外的所有logcat输出。 PropertyFetcher: AdbCommandRejectedException getting properties for device 04799057970ed1fc: device offline PropertyFetcher: AdbCommandRejectedException getting properties for device 03799467970ed5fg: device unauthorized. Please check the confirmation dialog on your device.



10
使用光标键选择IntelliJ列
是否可以某些方式设置IntelliJ IDEA,以便我可以使用光标键进行列选择,类似于在Notepad ++,Visual Studio或FlashDevelop中的选择方式。 例如,当我键入代码时,我几乎总是仅通过使用键盘来进行导航。在前面提到的IDE中,我可以通过按住Shift+ Alt然后点按↑以将光标扩展到上面的行中来快速选择代码块。那么我可以抱Shift+ Alt+ Ctrl和自来水←或→整个单词,可快速跳转,并选择我想要的文本块。 在IntelliJ IDEA中,我必须使用Shift+ Alt+ 不断地启用和禁用列选择模式Insert,即使那样,它也不能像其他IDE或文本编辑器中那样起作用。 有任何想法吗?

17
API 28(P)的Android设计支持库不起作用
我已经成功配置了android-P SDK环境。当我尝试使用android设计支持库时,我遇到了项目构建错误。项目配置为: IDE:3.2 Canary 17目标API:28编译API:28 apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' android { compileSdkVersion 28 defaultConfig { applicationId "com.app.navigationpoc" minSdkVersion 21 targetSdkVersion 28 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { implementation fileTree(include: ['*.jar'], …


5
Android Studio / Intellij Idea:课程的“目录”
我一直在搞弄Android Studio,到目前为止,我喜欢我所看到的大部分内容。令我烦恼的一件事是缺少课程的“目录”。很抱歉不知道该怎么称呼。但是我指的是eclipse中的下拉菜单,其中列出了该类文件中的所有方法,接口,类等。然后,您可以跳到该位置。当您在“打包资源管理器”中并单击类左侧的箭头时,将显示此视图。这是让我真的很想念日食的一件事。我知道您可以轻松地Ctrl+F在文档中进行搜索,但是我经常忘记方法名称。我试图在这里浏览,但无济于事。只是想知道是否有人知道某种方式来处理此问题。

14
为什么AVD Manager选项未在Android Studio中显示
为什么我看不到Android虚拟设备(AVD) 我在创建AVD时android studio遇到问题,问题是我看不到此选项中的任何一个工具-> Android-> AVD Manager 屏幕截图下方,我找不到 工具-> Android-> AVD Manager 在上面的屏幕截图中,您找不到Android-> AVD Manager,为什么它没有显示。 以下是我安装的软件包: 1. SDK管理器 2. SDK工具 我正在关注此链接:http : //www.dev2qa.com/how-to-create-android-virtual-device-avd-in-android-studio/

7
不支持的方法:运行项目时,AndroidProject.getPluginGeneration()
我正在尝试使用Android Studio 2.2运行我的项目,但出现此错误 Unsupported method: AndroidProject.getPluginGeneration(). The version of Gradle you connect to does not support that method. 我正在使用ButterKnife 8.4.0 我的应用程式gradle.file: buildscript { repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:2.2.0' classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' } } 我的模块gradle文件: apply plugin: 'com.android.application' apply plugin: 'android-apt' android { compileSdkVersion 23 buildToolsVersion "23.0.3" defaultConfig { …


10
如何更改Android Studio的编辑器字体?
现在,我正在使用Darcula主题。我想将默认字体更改为其他字体。我进入了,Editor > Colors & Fonts > Font但是所有选项都是灰色的。因为Editor Font它显示Show only monospaced fonts为Primary font等宽,但都不能更改。我尝试更改下面的字体,Appearance但这只是更改了AS周围而不是编辑器内部使用的字体。

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.