본문 바로가기
Android

[Android/Java] Design lib

by noddu 2022. 1. 4.
728x90
반응형

Design lib 사용하기

 

app:gradle에 dependencies 추가를 해보는데....



implementation 'com.android.support:design:28.0.0' 입력했는데 에러 발생

 



com.android.support:design:28.0.0   경로가



com.google.android.material:material:1.0.0-rc01   경로로 변경되었다.

 

 

dependencies {

    implementation 'androidx.appcompat:appcompat:1.2.0'
    implementation 'com.google.android.material:material:1.3.0'
    implementation 'com.google.android.material:material:1.0.0-rc01'
    implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
    testImplementation 'junit:junit:4.+'
    androidTestImplementation 'androidx.test.ext:junit:1.1.2'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}

 


위와 같이 추가하자!!!!

 

 

 



버튼 디자인 적용 안될 때

 


스튜디오의 res -> values -> themes 경로로 이동한다



<style name="Theme.SampleApp" parent="Theme.MeterialComponents.DayNight.DarkActionBar">

 

 

 

▼   AppCompat으로 변경해준다 

 

<style name="Theme.SampleApp" parent="Theme.AppCompat.DayNight.DarkActionBar">




반응형

'Android' 카테고리의 다른 글

[Android/Java] CardView, Json 사용하기  (0) 2022.01.07
[Android/Java] RecyclerView & Adapter 사용  (0) 2022.01.04
[Android/Java] Intent 사용  (0) 2022.01.04
[Android/Java] Git연동과 findViewById 에러  (0) 2022.01.04
fragment  (0) 2021.04.06