我需要通过点击RecyclerView
将数据从GalleryActivity
传递到RecyclerView
类,以查看图片和2个文本。我跟着this tutorial。它很好但我想在另一个活动中打开图像和文本。有人可以帮忙吗?
@Override
public boolean onInterceptTouchEvent(RecyclerView Recyclerview, MotionEvent motionEvent) {
view = Recyclerview.findChildViewUnder(motionEvent.getX(), motionEvent.getY());
if(view != null && gestureDetector.onTouchEvent(motionEvent)) {
//Getting RecyclerView Clicked Item value.
RecyclerViewItemPosition = Recyclerview.getChildAdapterPosition(view);
Intent intent=new Intent(MainActivity.this,GalleryActivity.class);
Bundle bundle=new Bundle();
bundle.putString("title",title);
bundle.putString("url",url);
intent.putExtras(bundle);
startActivity(intent);
}
return false;
}
@Override
public void onTouchEvent(RecyclerView Recyclerview, MotionEvent motionEvent) {
}
@Override
public void onRequestDisallowInterceptTouchEvent(boolean disallowIntercept) {
}
});
GalleryActivity
类
public class GalleryActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_gallery);
String title = getIntent().getStringExtra("title");
setTitle(title);
TextView desc = (TextView) findViewById(R.id.image_description);
desc.setText(title);
}
}
activity_gallery:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="100">
<ImageView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="70"
android:id="@+id/image"
android:scaleType="centerCrop"
android:src="@mipmap/ic_launcher"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/image_description"
android:layout_marginLeft="10dp"
android:layout_marginTop="20dp"
android:text="Canada"
android:textSize="20sp"
android:textColor="#000"
/>
</LinearLayout>
答案 0 :(得分:0)
你可以很容易地完成它,它可以通过多种方式实现。一个我发帖给你。这是Adapter类的示例,您需要在其中传递<div class="contents">
<ul> <!-- h1 level -->
<li>
<a href="#top-level">Top level</a>
<ul> <!-- h2 level -->
<li>
<ul> <!-- h3 level -->
<li>
<a href="#third-level">Third level</a>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
以供进一步使用。
如果您的适配器中有Context
,则可以使用您的捆绑包开始活动。
Context
以下是您需要集成为适配器的完整代码。
view.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(context, YourActivity.class);
String s = list.get(getAdapterPosition()); // here you will get current item
intent.putExtra("key", s);
context.startActivity(intent);
}
});
答案 1 :(得分:-1)
使用static你可以这样做。我们知道静态数据意味着类级数据,所以我们可以通过类名访问它们而不创建类对象。所以当你需要将值传递给来自recycleler视图的活动视图时,使一些空回收器视图适配器上的静态变量,然后在需要传递值然后从 {% for viewerfile in viewerfile_list %}
<li onclick=updateFileViewed(this.innerHTML)>{{ viewerfile.path }}</li>
{% endfor %}