Android Question CustomListView with Fix Records and Next to one another

hasexxl1988

Active Member
Licensed User
Longtime User
Hello,
i have a Question:
Is it possible to create fixed entries in CustomListView, in the example you want to be able to add / remove products from a database, but MUST always be the product number at the end of the button "Add all Products". If a new product is added, the "Add all Products" button should still have the last position.

I can only create one CLV entry per line, no 2 juxtaposes.
 

Attachments

  • Unbenannt-7.png
    Unbenannt-7.png
    11.4 KB · Views: 177

hasexxl1988

Active Member
Licensed User
Longtime User
All the views added to CustomListView are added to the internal ScrollView. So they will not be fixed. You can put the button after the list.

The items are added one after another (vertically). You can put two buttons in each item.
So it is not possible to enter 2 custom buttons as shown in the example next to each other? Only together?
 
Upvote 0

hasexxl1988

Active Member
Licensed User
Longtime User
Ah okay, and can I also add to my buttons own values or IDs, for triggering the product query?
You can create this layout. The buttons will move together.

CustomListView is based on a single ScrollView. All the items move together.
 
Upvote 0
Top