Cannot Resolve symbol R

后端 未结 8 1831
礼貌的吻别
礼貌的吻别 2021-01-18 07:02

I was working on Android Studio for adding a short toast message.(I was making an Android Wear Application)

I couldn\'t know why this code has error on \'symbol R\'

8条回答
  •  北荒
    北荒 (楼主)
    2021-01-18 07:23

    If in your case in imports R is missing you Have to import R manually.

    import .R;
    

    Replace with your own package name.

    In your code, R was not imported, therefore your Android Studio might got confused to find resources in your package.

提交回复
热议问题