How to solve this error: Android resource linking failed?

前端 未结 1 1962
春和景丽
春和景丽 2021-01-26 08:46

These two codes below are in the same MainActivity, in my Android Studio project

1) Recoding the audio from smartphone and playing it when pressing Play button:

相关标签:
1条回答
  • 2021-01-26 09:42

    the is not file or resource named com.example.appsom:integer/bottom_sheet_slide_duration). Create integers.xml file in your project's \res\values folder. In the file create your integer:

    <resources>
    <integer name="bottom_sheet_slide_duration">value</integer></resources>
    
    0 讨论(0)
提交回复
热议问题