Unable to cast Action Provider to Share Action Provider

后端 未结 8 1078
一个人的身影
一个人的身影 2020-11-29 19:58

Below is the code for my Activity

    import android.app.Activity;
    import android.os.Bundle;
    import android.support.v7.widget.ShareActionProvider;
          


        
8条回答
  •  半阙折子戏
    2020-11-29 20:21

    You are using android.widget.ShareActionProvider, which is for the native API Level 11+ action bar. If you are using the AppCompat backport of the action bar, you need to use android.support.v7.widget.ShareActionProvider instead.

提交回复
热议问题