Android Studio - TextView not showing in design view layout

后端 未结 5 1665
时光取名叫无心
时光取名叫无心 2020-11-27 08:38

I am brand new to trying out an android app. I started to follow the online tutorial (https://developer.android.com/training/basics/firstapp/building-ui), but getting a bit

5条回答
  •  借酒劲吻你
    2020-11-27 09:18

    I faced this issue too, this is a issue from the latest support.appCompact.

    Inside gradle dependencies if your using,

    implementation 'com.android.support:appcompat-v7:28.0.0-alpha3'
    

    change to

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

    This will fix the issue

提交回复
热议问题