Skip to main content
Advice
0 votes
1 replies
64 views

In android java I want to implement a table view using a RecyclerView The table should have a fixed header (that is always visible) and there should be columns with different with-s. My current ...
k3b's user avatar
  • 14.8k
0 votes
1 answer
109 views

I'm running into an edge case with EditText inside a RecyclerView and wondering if anyone has found a clean workaround. The Issue: We are tracking cursor positions in the adapter, so scrolling up and ...
Cheok Yan Cheng's user avatar
1 vote
1 answer
128 views

I'm wondering how can I make it so that in a recycler view, the input from the editTexts and the input from the checkboxes are displayed into that recycler view. I mainly would like to see if the ...
robo's user avatar
  • 13
Tooling
0 votes
5 replies
76 views

I am new to android development with Kotlin and jetpack compose, and i have no experience with xml and views. I switched from flutter to kotlin because of the janky scrolling on flutter's ListView, ...
Khalid Azhari's user avatar
3 votes
0 answers
407 views

I have a RecyclerView list of CardViews with an Observer in the MainActivity and a ListAdapter to load the CardViews for the UI. I also set up a ViewModel, Repository, DAO and Room database to store ...
AJW's user avatar
  • 1,329
0 votes
0 answers
42 views

I am trying to add all adjacent edit texts in each row of a recycler view and display the result of adjacent sums in each text view of that row. The issue is when my app launches everything seems fine ...
kaismaqbool hakim's user avatar
0 votes
0 answers
73 views

I have the following layout as a row in a recyclerview. My problem is that the checkbox doesn't remain anchored to the right (end) of the screen. Instead it attaches itself to the end of "title&...
theblitz's user avatar
  • 6,901
0 votes
0 answers
136 views

I'm using BottomSheetDialogFragment with this layout: <?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android&...
jaroos's user avatar
  • 53
2 votes
1 answer
163 views

I'm facing a layout issue with a vertical RecyclerView whose items use are MaterialCards with custom shapeAppearanceOverlay which has asymmetric corners (top-left corner radius = 0dp, all other ...
sunakulto's user avatar
1 vote
1 answer
96 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
1 vote
0 answers
69 views

Using AndroidStudio I had asked Google's Gemini to convert me a piece of code of my Android Java application from using a ScrollView to using a RecyclerView instead for more efficient scrolling ...
mmo's user avatar
  • 4,483
0 votes
1 answer
103 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,485
0 votes
2 answers
106 views

I'm new to Android development and have tried to implement a SearchView alongside a RecyclerView to display and filter restaurants. However, when I scroll down to the bottom of the listed restaurants, ...
999's user avatar
  • 21
2 votes
0 answers
448 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
1 vote
0 answers
42 views

In my RecyclerView, I used ListAdapter combined with DiffUtil.ItemCallback. class CustomDiffCallback : DiffUtil.ItemCallback<TypeInterface>() { override fun areItemsTheSame(p0: TypeInterface,...
IChung's user avatar
  • 479

15 30 50 per page
1
2 3 4 5
1973