我正在开发一个项目,要求在Onclick方法上打开ShareAction菜单,我似乎无法让它工作。我首先使用ShareAction菜单,但仅在设置菜单中,这是;当我尝试将其应用于ImageButton Onclick方法
时,我就拥有了// This is inside the Oncreate Method
share= (ImageButton)findViewById(R.id.share);
share.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
ShareActionProvider nn= new ShareActionProvider(Login.this);
Intent ShareIntent=new Intent(Intent.ACTION_SEND);
ShareIntent.setAction(Intent.ACTION_SEND);
ShareIntent.setType("text/plain");
ShareIntent.putExtra(Intent.EXTRA_TEXT, "Text To share");
nn.setShareIntent(ShareIntent);
}
});
上面的代码不起作用它不会给出任何错误或什么都没有。我有相同的代码使用设置菜单并执行以下操作 活动菜单
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" tools:context=".Login">
<item android:id="@+id/action_settings" android:title="@string/action_settings"
android:orderInCategory="200" android:icon="@drawable/overflow" app:showAsAction="never" />
<item android:id="@+id/action_share" android:title="@string/action_share" android:orderInCategory="100" app:showAsAction="ifRoom"
android:actionProviderClass="android.widget.ShareActionProvider"
/>
</menu>
然后只需将其添加到菜单
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_login, menu);
MenuItem shareItem= menu.findItem(R.id.action_share);
ShareActionProvider mShare= (ShareActionProvider)shareItem.getActionProvider();
Intent ShareIntent=new Intent(Intent.ACTION_SEND);
ShareIntent.setAction(Intent.ACTION_SEND);
ShareIntent.setType("text/plain");
ShareIntent.putExtra(Intent.EXTRA_TEXT, "Text To share");
mShare.setShareIntent(ShareIntent);
return true;
}
在Oncreate中没有让菜单打开,我错过了什么或做错了什么?
答案 0 :(得分:1)
我正在开发一个项目,要求在Onclick方法上打开ShareAction菜单,我似乎无法让它工作
这没有多大意义。 fillFruitMap
是一个操作栏项。它有自己的&#34;按钮&#34;允许用户根据配置的ShareActionProvider
共享内容,指示要进行的共享类型(例如,MIME类型)。
所以,这里有三种可能性,我可以看到:
只需使用Intent
并删除此ShareActionProvider
。
摆脱ImageButton
,并执行其他操作以显示ShareActionProvider
onClick()
中的共享操作列表。例如,您可以将ImageButton
包裹在Intent
中并在Intent.createChooser()
上startActivity()
上调用Intent
- 如果有两个或更多活动与onClick()
匹配Intent
,用户将获得选择器&#34;菜单&#34;。
分叉ShareActionProvider
让它暴露某种open()
方法,允许您从onClick()
的{{1}}激活它。我无法想象这有什么意义的情况(为什么点击这里的按钮弹出一个下拉菜单?)。