Questions tagged «android-studio»

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

17
如何解决“在成功构建之前无法使用设计编辑器”的错误?
我从昨天开始学习Android Studio。我尝试回显简单的“ Hello World”: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout android:id="@+id/activity_main" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingLeft="16dp" android:paddingRight="16dp" android:paddingTop="16dp" android:paddingBottom="16dp" tools:context=".MainActivity"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello World!" /> </RelativeLayout> 但是,当我单击“设计”视图时,是否显示此错误? 在成功构建之前,无法使用设计编辑器 我该如何解决此错误。我昨天刚下载了Android Studio。 我只是注意到我的xml代码引起了错误。这就是为什么这可能行不通的原因。非常感谢

30
会话“ app”:启动错误
在gradle构建完成的Android Studio 2.0更新之后,我得到以下信息: 会话“ app”:启动错误。 它阻止了该应用程序启动,但已安装在我的模拟器中。这是“运行”选项卡中显示的内容: 执行时发生意外错误:am start -n“ com.example.user.ypologismosmoriwn / com.example.user.ypologismosmoriwn.MainActivity” -a android.intent.action.MAIN -c android.intent.category.LAUNCHER启动活动时出错 这是代码: package com.example.user.ypologismosmoriwn; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } } 这只是一个空的活动,没有添加任何内容 XML代码只是具有4个文本和3个复选框的相对布局 这是我得到的日志猫 谢谢任何愿意帮助的人

22
布局中的布局<layout>在基本布局文件夹中没有声明[错误]
从Eclipse迁移到新版本的Android Studio 3.2,API 28之后,我的应用布局出现以下错误: 布局中的布局在基本布局文件夹中没有声明;在与该限定符不匹配的配置中查询资源时,这可能导致崩溃 我收到此错误的布局之一是: &lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:background="@null" &gt; &lt;FrameLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" &gt; &lt;ImageView android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_gravity="top|center_horizontal" android:adjustViewBounds="true" android:contentDescription="@string/hello_world" android:src="@drawable/loading_top" /&gt; &lt;ImageView android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_gravity="bottom|center_horizontal" android:adjustViewBounds="true" android:contentDescription="@string/hello_world" android:src="@drawable/loading_bottom" /&gt; &lt;ImageView android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_gravity="center" android:contentDescription="@string/hello_world" android:background="@color/white" android:layout_marginBottom="5dp" android:paddingTop="10dp" android:paddingBottom="10dp" android:src="@drawable/loading_logo" /&gt; &lt;ImageView android:id="@+id/loading" …

9
如何从Android Studio项目制作.jar文件
我正在使用AndroidStudio,并且具有如下所示的项目: 蓝色圆圈内的是myLib。myLib还需要使用红色圆圈内的外部库和apache包(绿色圆圈)。 所以我想将整个东西变成一个.jar,以便可以在其他项目中使用它。 我是开发人员领域的初学者,非常感谢您提供分步指南。 谢谢!

14
Android Studio未将更改部署到应用程序
有时在开发时会发生这种情况。我会在源代码中进行更改,全部保存然后运行,但是更改显然不会反映在应用程序中(我正在使用一种设备进行测试)。我什至可以卸载设备上的应用程序,然后再次单击运行,而新安装的应用程序仍未反映源代码中的更改。发生这种情况时,我必须编辑源代码,然后单击“运行”,然后可能将具有预期的更改的新版本发布到设备上。 我也在这里尝试了该解决方案,但它似乎并不经常工作。 Android Studio-无需更改即可部署我的应用

12
无法在Android Studio中运行模拟器
我刚完成安装Android Studio并尝试将其用于测试运行。当我尝试运行我的应用程序时,出现以下错误信息 emulator: ERROR: This AVD's configuration is missing a kernel file!! emulator: ERROR: ANDROID_SDK_ROOT is undefined 有人知道如何解决此问题吗????

7
Android Studio单元测试:读取数据(输入)文件
在单元测试中,如何在不对路径进行硬编码的情况下从(桌面)文件系统上的json文件读取数据? 我想从文件中读取测试输入(用于我的解析方法),而不是创建静态字符串。 该文件与我的单元测试代码位于同一位置,但是如果需要,我也可以将其放置在项目中的其他位置。我正在使用Android Studio。


11
带有Google Play服务的Android Studio
我正在尝试使用新的Android Studio测试Google Play服务。我有一个依赖于google_play_services.jar的项目。但是,当我尝试重建项目时,出现以下错误: Information:[TstGP3-TstGP3] Crunching PNG Files in source dir: C:\Users\ans\AndroidStudioProjects\TstGP3\TstGP3\src\main\res Information:[TstGP3-TstGP3] To destination dir: C:\Users\ans\AndroidStudioProjects\TstGP3\build\classes\res-cache\TstGP3-TstGP3 Information:Compilation completed with 2 errors and 0 warnings in 2 sec Information:2 errors Information:0 warnings C:\Users\ans\.AndroidStudioPreview\system\compiler\tstgp3.3f17bd41\.generated\Android_BuildConfig_Generator\TstGP3-TstGP3.74fc5b25\production\com\example\tstgp3\BuildConfig.java Error:Error:line (4)error: duplicate class: com.example.tstgp3.BuildConfig C:\Users\ans\.AndroidStudioPreview\system\compiler\tstgp3.3f17bd41\.generated\aapt\TstGP3-TstGP3.74fc5b25\production\com\example\tstgp3\R.java Error:Error:line (10)error: duplicate class: com.example.tstgp3.R 似乎它具有两个BuildConfig文件和两个R类。我该如何解决该问题? 编辑: 我注意到编译器编译了两个R.java文件:一个位于我的项目文件夹中,另一个位于%USERPROFILE%.AndroidStudioPreview文件夹中,因此,我尝试在编译器设置中排除此“ Preview”文件夹现在它正在工作。仅在我开始在项目中使用Google Play服务类之后,才会出现此问题。如果有人可以解释此问题的原因,我将不胜感激。

8
Android Studio与Eclipse + ADT插件?[关闭]
已关闭。这个问题是基于观点的。它当前不接受答案。 想改善这个问题吗?更新问题,以便通过编辑此帖子以事实和引用的形式回答。 6年前关闭。 改善这个问题 我想对这个问题有客观的答案: 为什么我应该使用Android Studio遇到问题和复杂的任务,例如,导入为Eclipse开发的库,对我可能遇到的错误的支持较少,而不是继续使用Eclipse? Android Studio vs Eclipse的真正优势是什么?

8
Android Studio:默认项目目录
每当我在Android Studio其中创建一个新项目时,都希望将其放在通用默认文件夹中的某个类似于(取决于OS-Ubuntu的位置)的位置: /home/USER/AndroidStudioProjects/ 我想将此目录更改为另一个位置。除了在创建每个项目时选择此新位置之外,是否存在path variable可以将此目录(例如/home/USER/Projects/AndroidStudio/)设置为默认值的设置(找不到)或(找不到任何文档)? 我正在寻找与在Eclipse中更改工作区类似的东西。

12
Android Studio-无法找到目标android-18
我对Android Studio 0.2.3有问题。 当我运行项目时,构建将停止并显示以下消息: Gradle:任务':AppName:compileDebugAidl'的执行失败。 &gt;找不到目标android-18 尽管我已经安装了Android 4.3(API 18)的SDK平台,但尝试重新安装所有SDK。我还在ANDROID_HOME系统变量中添加了变量。 该错误的根源似乎是什么?




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.