पूरा उदाहरण
एक ऊर्ध्वाधर RecyclerView
और एक क्षैतिज एक के बीच एकमात्र वास्तविक अंतर यह है कि आप कैसे सेट करते हैं LinearLayoutManager
। यहाँ कोड स्निपेट है। पूरा उदाहरण नीचे है।
LinearLayoutManager horizontalLayoutManagaer = new LinearLayoutManager(MainActivity.this, LinearLayoutManager.HORIZONTAL, false);
recyclerView.setLayoutManager(horizontalLayoutManagaer);
यह फुलर उदाहरण मेरे ऊर्ध्वाधर RecyclerView
उत्तर के बाद तैयार किया गया है ।
अद्यतन ग्रेड निर्भरता
सुनिश्चित करें कि निम्न निर्भरताएँ आपकी ऐप gradle.build
फ़ाइल में हैं:
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:recyclerview-v7:27.1.1'
आप संस्करण संख्याओं को अपडेट कर सकते हैं जो कि सबसे अधिक चालू है ।
गतिविधि लेआउट बनाएँ
RecyclerView
अपने xml लेआउट में जोड़ें ।
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/rvAnimals"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</RelativeLayout>
आइटम लेआउट बनाएँ
हमारे प्रत्येक आइटम में RecyclerView
एक के View
ऊपर एक सिंगल रंग होता है TextView
। एक नया लेआउट संसाधन फ़ाइल बनाएँ।
recyclerview_item.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="10dp">
<View
android:id="@+id/colorView"
android:layout_width="100dp"
android:layout_height="100dp"/>
<TextView
android:id="@+id/tvAnimalName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20sp"/>
</LinearLayout>
एडॉप्टर बनाएं
RecyclerView
आपके डेटा के साथ प्रत्येक पंक्ति (क्षैतिज आइटम) में दृश्य को पॉप्युलेट करने के लिए एक एडेप्टर की आवश्यकता होती है। एक नई जावा फ़ाइल बनाएँ।
MyRecyclerViewAdapter.java
public class MyRecyclerViewAdapter extends RecyclerView.Adapter<MyRecyclerViewAdapter.ViewHolder> {
private List<Integer> mViewColors;
private List<String> mAnimals;
private LayoutInflater mInflater;
private ItemClickListener mClickListener;
// data is passed into the constructor
MyRecyclerViewAdapter(Context context, List<Integer> colors, List<String> animals) {
this.mInflater = LayoutInflater.from(context);
this.mViewColors = colors;
this.mAnimals = animals;
}
// inflates the row layout from xml when needed
@Override
@NonNull
public ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
View view = mInflater.inflate(R.layout.recyclerview_item, parent, false);
return new ViewHolder(view);
}
// binds the data to the view and textview in each row
@Override
public void onBindViewHolder(@NonNull ViewHolder holder, int position) {
int color = mViewColors.get(position);
String animal = mAnimals.get(position);
holder.myView.setBackgroundColor(color);
holder.myTextView.setText(animal);
}
// total number of rows
@Override
public int getItemCount() {
return mAnimals.size();
}
// stores and recycles views as they are scrolled off screen
public class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener {
View myView;
TextView myTextView;
ViewHolder(View itemView) {
super(itemView);
myView = itemView.findViewById(R.id.colorView);
myTextView = itemView.findViewById(R.id.tvAnimalName);
itemView.setOnClickListener(this);
}
@Override
public void onClick(View view) {
if (mClickListener != null) mClickListener.onItemClick(view, getAdapterPosition());
}
}
// convenience method for getting data at click position
public String getItem(int id) {
return mAnimals.get(id);
}
// allows clicks events to be caught
public void setClickListener(ItemClickListener itemClickListener) {
this.mClickListener = itemClickListener;
}
// parent activity will implement this method to respond to click events
public interface ItemClickListener {
void onItemClick(View view, int position);
}
}
टिप्पणियाँ
- यद्यपि कड़ाई से आवश्यक नहीं है, मैंने आइटम पर क्लिक की घटनाओं को सुनने के लिए कार्यक्षमता शामिल की। यह पुराने में उपलब्ध था
ListViews
और एक आम जरूरत है। यदि आपको इसकी आवश्यकता नहीं है तो आप इस कोड को हटा सकते हैं।
गतिविधि में RecyclerView को आरम्भ करें
अपनी मुख्य गतिविधि में निम्न कोड जोड़ें।
MainActivity.java
public class MainActivity extends AppCompatActivity implements MyRecyclerViewAdapter.ItemClickListener {
private MyRecyclerViewAdapter adapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// data to populate the RecyclerView with
ArrayList<Integer> viewColors = new ArrayList<>();
viewColors.add(Color.BLUE);
viewColors.add(Color.YELLOW);
viewColors.add(Color.MAGENTA);
viewColors.add(Color.RED);
viewColors.add(Color.BLACK);
ArrayList<String> animalNames = new ArrayList<>();
animalNames.add("Horse");
animalNames.add("Cow");
animalNames.add("Camel");
animalNames.add("Sheep");
animalNames.add("Goat");
// set up the RecyclerView
RecyclerView recyclerView = findViewById(R.id.rvAnimals);
LinearLayoutManager horizontalLayoutManager
= new LinearLayoutManager(MainActivity.this, LinearLayoutManager.HORIZONTAL, false);
recyclerView.setLayoutManager(horizontalLayoutManager);
adapter = new MyRecyclerViewAdapter(this, viewColors, animalNames);
adapter.setClickListener(this);
recyclerView.setAdapter(adapter);
}
@Override
public void onItemClick(View view, int position) {
Toast.makeText(this, "You clicked " + adapter.getItem(position) + " on item position " + position, Toast.LENGTH_SHORT).show();
}
}
टिप्पणियाँ
- ध्यान दें कि गतिविधि वह है
ItemClickListener
जिसे हम अपने एडेप्टर में परिभाषित करते हैं। यह हमें आइटम क्लिक की घटनाओं को संभालने की अनुमति देता है onItemClick
।
ख़त्म होना
बस। अब आपको अपनी परियोजना चलाने में सक्षम होना चाहिए और शीर्ष पर छवि के समान कुछ प्राप्त करना चाहिए।
टिप्पणियाँ
LinearLayoutManager
ओरिएंटेशन सेट के साथ उपयोग करेंHORIZONTAL
।