«android-studio» 태그된 질문

Android 앱 개발을 목표로하는 Google의 공식 IDE 인 Android Studio 사용에 대한 질문에 사용하십시오. 일반적으로 Android 프로그래밍에 대한 질문에는 사용하지 마십시오. 대신 [android] 태그를 사용하십시오.

11
Android Studio에서 소문자 버튼 텍스트를 사용할 수 없습니다
나는 잠시 동안 나를 귀찮게하는 사소한 질문이 있습니다. 나는 이것을 구글하려고했지만 아무도 나와 같은 문제가 있거나 그것을 문제로 보지 않는다. 레이아웃에서 activity_my.xml에 버튼을 만들 때 <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/button_1_name" android:id="@+id/button2" android:layout_marginTop="140dp" android:layout_below="@+id/textView" android:layout_centerHorizontal="true" /> 다음과 같은 버튼이 나타납니다 내 문자열 코드는 다음과 같습니다. <resources> <string name="app_name">HelloWorld</string> <string name="hello_world">Hello world!</string> <string …


18
RecyclerView에서 WRAP_CONTENT를 작동시키는 방법
나는이 DialogFragment포함하는 RecyclerView(카드 목록). 이 안에는 높이를 가질 수있는 RecyclerView하나 이상 CardViews이 있습니다. 안에 포함 된 DialogFragment높이를 기준으로 올바른 높이를 지정 하고 싶습니다 CardViews. 일반적으로 이것은 간단합니다. 나는 이와 같이 설정 wrap_content했습니다 RecyclerView. <android.support.v7.widget.RecyclerView ... xmlns:tools="http://schemas.android.com/tools" android:id="@+id/recycler_view" android:layout_width="match_parent" android:layout_height="wrap_content" android:clickable="true" android:scrollbars="vertical" > </android.support.v7.widget.RecyclerView> 나는 RecyclerView이것을 사용하고 있기 때문에 작동하지 않는다. …

26
이름이 'default'인 Android Studio Gradle 구성을 찾을 수 없습니다
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 …


4
Android .idea / misc.xml의 languageLevel 태그는 JDK를 계속 변경합니다.
내가 알지 못하는 이유로 languageLevel 키가 JDK_1_8에서 JDK_1_7로 변경되었습니다. 무슨 일이야? 이것은 프로젝트에서 작업하는 다른 개발자의 IDE와 관련이 있습니까? 다른 Android Studio 설정이 있습니까? 다음은 소스 제어 하의 파일이 변경된 것을 발견 한 후 나타나는 팝업입니다. $ git diff diff --git a/.idea/misc.xml b/.idea/misc.xml index fbb6828..5d19981 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml …


8
Android Studio 및 Gradle에서 -source 1.7을 설정하는 방법
Android Studio에서 프로젝트를 컴파일하려고 할 때 다음 오류가 발생합니다. Gradle: error: diamond operator is not supported in -source 1.6 내가 찾은 모든 프로젝트 환경 설정에서 1.7을 대상으로 설정했습니다. 또한 1.7 SDK 아래의 프로젝트 SDK에 표시된 경로는 Java 1.7 설치의 올바른 경로입니다. 터미널에서 java -version을 실행하더라도 Java 1.7에서 실행 중임을 알려줍니다. …

18
유효하지 않은 파일 메시지와 함께 설치 실패
잘못된 파일 : K : \ project \ app \ build \ intermediates \ split-apk \ with_ImageProcessor \ debug \ slices \ slice_0.apk 메시지와 함께 설치에 실패했습니다. apk가있는 경우 기존 버전의 apk를 제거한 다음 다시 설치하면이 문제가 해결 될 수 있습니다. 경고 : 제거하면 응용 프로그램 데이터가 제거됩니다! 기존 응용 …

15
중첩 된 재활용 자보기 높이가 내용을 감싸지 않습니다.
책 모음 (예 : 재생 목록)을 관리하는 응용 프로그램이 있습니다. 세로 RecyclerView가있는 컬렉션 목록과 각 행 내부에 가로 RecyclerView의 책 목록을 표시하고 싶습니다. 내부 가로 RecyclerView의 layout_height를 300dp로 설정하면 올바르게 표시되지만 wrap_content로 설정하면 아무것도 표시되지 않습니다. 세로 및 가로 표시 간을 전환하기 위해 프로그래밍 방식으로 레이아웃 관리자를 변경하려면 wrap_content를 사용해야합니다. …

18
플러그인이 너무 오래되었습니다. 최신 버전으로 업데이트하거나 ANDROID_DAILY_OVERRIDE 환경 변수를
오늘 방금 프로젝트 (분석)의 모듈로 Android SDK에서 샘플 앱을 가져 왔으며 갑자기 동기화하려고 할 때이 gradle 오류가 발생했습니다. Plugin is too old, please update to a more recent version, or set ANDROID_DAILY_OVERRIDE envrinment variable to... 이것은 내 응용 프로그램 gradle파일입니다. apply plugin: 'com.android.application' android { compileSdkVersion 22 buildToolsVersion "22.0.0" defaultConfig …

23
styles.xml에서 'Theme'기호를 확인할 수 없습니다 (Android Studio)
오늘부터 Android Studio는 styles.xml에서 AppCompat 테마를 찾을 수 없지만 예를 들어 코드의 AppCompatActivity는 인식됩니다. 내 Android Studio 버전은 2.2.2, 빌드 # AI-145.3360264입니다. 이미 최신 빌드 도구로 업그레이드하고 SDK (25) 버전 등을 컴파일하려고 시도했지만 문제가 해결되지 않았습니다. 현재 SDK 관리자에서 다음을 설치했습니다. 안드로이드 API : 19와 23 SDK 플랫폼 도구 : …

12
안드로이드 스튜디오는 너무 많은 메모리를 소비
Android Studio 1.0 RC 2를 설치했습니다. 4GB의 RAM이 설치되어 있지만 Android Studio를 시작하고 Android Emulator를 시작한 후이 두 메모리 만 90 % 이상의 실제 메모리를 사용했습니다. 이 메모리 사용을 줄일 수있는 방법이 있습니까? 이 메모리 문제로 인해 다른 응용 프로그램을 동시에 열 수 없습니다.


22
Android Studio 내에서 LogCat 창 복원
최근에 Android Studio v0.1.1을 사용하기 시작했으며 LogCat을 찾을 수없는 것 같습니다. 사라 졌습니까? 그렇지 않은 경우 어떻게 활성화 할 수 있습니까? 그것이 사라지면 비슷한 방식으로 내 앱 동작을 기록하고 주로 충돌하는 방법이 있습니까?

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.