마스터Q&A 안드로이드는 안드로이드 개발자들의 질문과 답변을 위한 지식 커뮤니티 사이트입니다. 안드로이드펍에서 운영하고 있습니다. [사용법, 운영진]

Design View 가 안먹네요.

0 추천

며칠전 안드로이드 스튜디오 업데이트 하고 나서부터 Design 뷰에 preview 가 먹지를 않는군요.

 

아래는 gradle 정보입니다. 고수님들 봐주시면 감사하겠습니다.

 

====================================================

 

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion '26.0.2'
    useLibrary  'org.apache.http.legacy'
    defaultConfig {
        applicationId ""
        minSdkVersion 19
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    buildscript {
        repositories {
            jcenter()
        }
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile group: 'com.kakao.sdk', name: 'usermgmt', version: project.KAKAO_SDK_VERSION
    compile 'com.android.support:design:25.3.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.github.nkzawa:socket.io-client:0.3.0'
    compile 'com.github.bumptech.glide:glide:3.6.0'
    compile 'com.google.code.gson:gson:2.8.0'
    compile 'com.squareup.retrofit2:retrofit:2.3.0'
    compile 'com.squareup.retrofit2:converter-gson:2.3.0'
    compile 'com.squareup.retrofit2:converter-scalars:2.3.0'
    compile 'com.squareup.okhttp3:okhttp:3.4.2'
    compile 'com.squareup.okhttp3:okhttp-urlconnection:3.0.1'
    compile 'com.squareup.okhttp3:logging-interceptor:3.4.2'
    compile 'com.scottyab:aescrypt:0.0.1'
    compile 'dev.dworks.libs:volleyplus:+'
    compile 'com.google.android.gms:play-services-maps:11.0.4'
    compile 'com.android.support:support-v4:25.3.1'
    compile 'com.android.support:appcompat-v7:22.2.1'
    compile 'com.google.android.gms:play-services-location:10.2.1'
    compile 'com.google.maps.android:android-maps-utils:0.5'
    compile 'pl.droidsonroids.gif:android-gif-drawable:1.2.+'
    testCompile 'junit:junit:4.12'
}
시크유 (240 포인트) 님이 2017년 11월 1일 질문

3개의 답변

0 추천
저도 안되서 재설치 해서 SDK 매니저 가서 다시 받고 했더니 되었습니다.
키득이 (510 포인트) 님이 2017년 11월 1일 답변
안드로이드 스튜디오를 새로 설치하고 26 버전을 다시 설치 했단 말인가요?
0 추천
http://www.masterqna.com/android/79762 랑 같은 문제인 것 같네요.

혹시 프리뷰에서 한글 깨지는 것 때문에 xml 파일 수정한 적 있나요?
쎄미 (162,410 포인트) 님이 2017년 11월 3일 답변
0 추천
http://snowbike.tistory.com/68 참고해 보세요.
익명사용자 님이 2017년 11월 4일 답변
...