Android Studio 3.1.3 having issues with Constraint layout

前端 未结 8 1209
囚心锁ツ
囚心锁ツ 2021-01-12 06:14

I\'m trying to start a new project here but this problem is appearing. I can run the project and deploy it in an emulator but this Render problem and Using private resources

8条回答
  •  庸人自扰
    2021-01-12 06:37

    You just need to change the following codes from the dependencies section of your build.gradle file:

    From:

    implementation 'com.android.support:appcompat-v7:28.0.0-rc02'
    implementation 'com.android.support:design:28.0.0-rc02'
    

    To:

    implementation 'com.android.support:appcompat-v7:28.0.0-alpha1'
    implementation 'com.android.support:design:28.0.0-alpha1'
    

    And then sync your project.

提交回复
热议问题