我有一个活动,其中包含一个recyclerview中的许多帖子,每个帖子放置在cardView中(这些帖子是从我的主机数据库中获取的)。我想使用发送意图来分享任何帖子。我的共享按钮有效,但操作方式错误。
例如,当我单击以分享我的第一条帖子时,它分享了第三条帖子!当我单击以共享第七条帖子时,它共享第十条帖子,依此类推。
这有什么问题?有人可以帮助吗?
这是我的xml:
<ImageButton
android:id="@+id/send_post"
android:layout_width="50dp"
android:layout_height="50dp"
android:onClick="sharedtextClicked"
android:src="@color/colorPrimary" />
这是我的共享代码:
public void sharedtextClicked(View view) {
String txt=((TextView)findViewById(R.id.Postcontent)).getText().toString();
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT,txt);
sendIntent.setType("text/plain");
startActivity(Intent.createChooser(sendIntent, getResources().getText(R.string.send_to)));
}
这是我的适配器:
View view = LayoutInflater.from(context).inflate(R.layout.layout_post,parent,false);
Typeface arialTypeface=Typeface.createFromAsset(context.getAssets(),"fonts/arial.ttf");
return new PostviewHolder(view,arialTypeface);
}
@Override
public void onBindViewHolder(PostviewHolder holder, int position) {
Post post=posts.get(position);
holder.content.setText(post.getContent());
}
@Override
public int getItemCount() {
return posts.size();
}
public class PostviewHolder extends RecyclerView.ViewHolder{
private TextView content;
public PostviewHolder(View itemView, Typeface arialTypeface) {
super(itemView);
content=(TextView)itemView.findViewById(R.id.Postcontent);
content.setTypeface(arialTypeface);
}
}
这是layout_post:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
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"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
app:cardCornerRadius="9dp"
app:cardElevation="2dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="4dp">
<TextView
android:id="@+id/Postcontent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:layout_margin="8dp"
android:textColor="#000"
android:textSize="20sp"
/>
<ImageButton
android:id="@+id/send_post"
android:layout_width="50dp"
android:layout_height="50dp"
android:onClick="sharedtextClicked"
android:src="@color/colorPrimary" />
</LinearLayout>
</android.support.v7.widget.CardView>
答案 0 :(得分:0)
我认为您的逻辑不正确。试试这个
从 layout_post.xml 文件 删除 Sub demo()
ShellWait "x:\test.bat"
Beep
MsgBox "Finished running!"
End Sub
删除 android:onClick="sharedtextClicked"
方法。
更改您在适配器中的代码:
sharedtextClicked