Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
42 views

when capturing the layout to a Bitmap, the non-RecyclerView parts of my layout appear correctly, but the RecyclerView content is missing, How can I correctly convert a layout containing a RecyclerView ...
Sathishkumar G's user avatar
0 votes
1 answer
67 views

I created a simple RecyclerView in Java and implemented item click handling in the adapter's onBindViewHolder method with this action that the clicked item moves to position 0. @Override public void ...
C.F.G's user avatar
  • 1,523
2 votes
0 answers
398 views

I have an array list of log entries, which consists of an a time and date with a description. I want the user to be able to reverse the direction from oldest to newest and back again. I am using ...
Notsileous's user avatar
0 votes
1 answer
58 views

fun RecyclerView.applyHorizontalDecoration(context: Context, spacing: Int){ with(this){ Log.i("sachin", "$context,,,,,,,, ${rootView.context}") ...
Sachin Mewada's user avatar
0 votes
0 answers
62 views

I am developing an Android app in Java that displays a grid of Japanese Kanji characters using RecyclerView with a GridLayoutManager. I'm using the Android Jetpack Paging3 library to load data from a ...
Tennis Heal's user avatar
1 vote
0 answers
37 views

During the recycling and reuse process of RecyclerView (items/views).​​Why doesn't the copy/paste context menu appear when I long-press on text inside a RecyclerView item? If I use holder....
Pzzzzz's user avatar
  • 11
0 votes
1 answer
42 views

Hello I am having trouble with a problem where on my recycler view it displays sometimes the associated items given in the view. I had this problem earlier and what seem to make it work for the first ...
BenTheLittleDucky's user avatar
1 vote
1 answer
86 views

I’m working on an Android app that uses a RecyclerView with a custom Adapter and ViewHolder. The RecyclerView contains EditText views, and the properties of these views (such as text, color, padding, ...
Rohan Pande's user avatar
0 votes
1 answer
34 views

Layout: <RelativeLayout android:id="@+id/relativeLayoutMain" android:layout_width="fill_parent" android:layout_height="0dp" android:layout_weight="...
Hong's user avatar
  • 18.7k
0 votes
0 answers
53 views

I have a RecyclerView that displays 100 videos in a vertically scrolling list. Each item in the list is a webview of the JWPlayer showing the thumbnail of the video. My list displayed 2 items in the ...
szaske's user avatar
  • 2,047
0 votes
0 answers
38 views

The EditText input is limited correctly to 7 characters using InputFilter.LengthFilter(7), and that part works as expected. However, I'm having a strange issue: when I type into the EditText inside a ...
Fiqih Hasroni's user avatar
0 votes
2 answers
51 views

I have 2 recycler views and one text view. What I am trying to do is when I click from top recyclerview(recyclerViewNotClickedItems) the items, they will disappear and they will appear in the bottom ...
Alex's user avatar
  • 1,976
1 vote
0 answers
36 views

I use this example to generate pdf file from recyclerview. I call the getScreenshotFromRecyclerView function inside doInBackground of an AsyncTask and the bitmap is generated successfully. The problem ...
len's user avatar
  • 406
-1 votes
1 answer
54 views

I'm currently working on an app. There are three fragments. One is the home page fragment where there's a list of some popular locations of the world listed in a RecyclerView. And the other one is the ...
eliftekin's user avatar
0 votes
0 answers
46 views

I have an item list in recylerview, whenever an alarm is triggered for an item, I want that item to have red dot on its corner to let the user know that they need to take some action. I have tried a ...
M Baig's user avatar
  • 219
1 vote
1 answer
87 views

I have a RecyclerView where each item can have dynamic attributes (e.g., some items have distance and difficulty, while others only have distance). When a ViewHolder is reused, old attribute values ...
Alexander Zhurkin's user avatar
0 votes
0 answers
28 views

Trying to add custom static header to RecyclerView. ConcatAdapter looks good, but is it possible to freeze the header view at the top of list? Thanks.
Konstantin Konopko's user avatar
0 votes
0 answers
18 views

The measure() function is not calculating the correct height on the first click, which is causing the full height issue. The RecyclerView is getting an incorrect height on the first click, but after ...
Prince's user avatar
  • 1
1 vote
1 answer
22 views

As the title suggests, I'm trying to make a RecyclerView that reveals a button when swiped to the left, while making it so that the content will remain visible when it is swiped. I managed to do so by ...
Lock's user avatar
  • 21
0 votes
0 answers
15 views

I'm implementing an Excel-like table with RecyclerView like this: The RecyclerView is wrapped with a ScrollView, because the requirement is only the RecyclerView is scrollable, not the entire ...
anta40's user avatar
  • 6,813
0 votes
0 answers
41 views

I have recyclerview consisting of edittexts only. Those edittexts have various length. I want to stop scrolling my recyclerview on onViewAttachedToWindow when holder.getAdapterPosition() == vhIndex. ...
Jawegiel's user avatar
  • 131
0 votes
1 answer
105 views

This is my HomeView Fragment Activity public class HomeView extends Fragment { private View view; private RecyclerView recentPosts; private DatabaseReference donor_ref; FirebaseAuth mAuth; private ...
Safiyulla Mona's user avatar
0 votes
0 answers
18 views

I'm developing an Android app that categorizes installed applications into system apps and user apps using PackageManager. My current filtering logic for system apps is: PackageManager packageManager =...
Aditya Soni's user avatar
0 votes
1 answer
48 views

I am trying to build a list with a recycler view. I created the recycler view, an adapter and set the adapter with default values in OnCreate and then later in that function I call a firebase async ...
Ron Jones Jr's user avatar
0 votes
1 answer
53 views

Problem Statement : I'm facing an issue where the onCreateViewHolder method in my RecyclerView.Adapter is being called multiple times, even though there is only one item in the list. This is ...
Akshat Singhal's user avatar

1
2 3 4 5
593