আমার একটি খণ্ড রয়েছে যার সাথে একটি পুনর্ব্যবহারযোগ্য ভিউ রয়েছে = "ম্যাচ_পিতা":
<android.support.v7.widget.RecyclerView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity$PlaceholderFragment" />
পুনর্ব্যবহারযোগ্য আইটেমটি লেআউট_উইথ = "ম্যাচ_প্যারেন্ট" সহ একটি কার্ডভিউও রয়েছে:
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/card_view"
android:layout_gravity="center"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="20dp"
card_view:cardCornerRadius="4dp">
<TextView
android:layout_gravity="center"
android:id="@+id/info_text"
android:layout_width="match_parent"
android:gravity="center"
android:layout_height="match_parent"
android:textAppearance="?android:textAppearanceLarge"/>
</android.support.v7.widget.CardView>
আমি নীচে হিসাবে আইটেম ভিউ স্ফীত:
public MyAdapter.ViewHolder onCreateViewHolder(ViewGroup parent,
int viewType) {
CardView v = (CardView) LayoutInflater.from(parent.getContext())
.inflate(R.layout.card_listitem, null, true);
ViewHolder vh = new ViewHolder(v);
return vh;
}
তবে আমি যখন অ্যাপটি চালাচ্ছি, কার্ডভিউটি নীচের চিত্রের মতো মোড়ানো_ কনটেন্ট হিসাবে রেন্ডার করা হবে:
মনে রাখবেন যে এটি এমুলেটরটিতে চালিত হয়েছিল, কোনও আসল ডিভাইস নয়।
আমি কি কিছু ভুল করছি, বা এটি একটি বাগ?