P palmzac Active Member Licensed User Longtime User Oct 29, 2015 #1 Hi, I want to build a activity with simple list selection in designer. ( like List of PreferenceActivity ) Would you have any examples or Url ? Thank you ! plamzac
Hi, I want to build a activity with simple list selection in designer. ( like List of PreferenceActivity ) Would you have any examples or Url ? Thank you ! plamzac
Erel B4X founder Staff member Licensed User Longtime User Oct 29, 2015 #2 You cannot create a PreferenceActivity with the designer. You can add ListView or CustomListView with the designer. Upvote 0
You cannot create a PreferenceActivity with the designer. You can add ListView or CustomListView with the designer.
P palmzac Active Member Licensed User Longtime User Oct 29, 2015 #3 Erel, Sorry for my poor english ! I want to make a simple list. ( like attached PNG ) Do you have a sample source ? Thanks ! Erel said: You cannot create a PreferenceActivity with the designer. You can add ListView or CustomListView with the designer. Click to expand... Attachments Screenshot_2015-10-29-23-02-33.png 73.4 KB · Views: 272 Upvote 0
Erel, Sorry for my poor english ! I want to make a simple list. ( like attached PNG ) Do you have a sample source ? Thanks ! Erel said: You cannot create a PreferenceActivity with the designer. You can add ListView or CustomListView with the designer. Click to expand...
Erel B4X founder Staff member Licensed User Longtime User Oct 29, 2015 #4 You can create such a list with the InputList keyword. B4X: Dim res As Int = InputList(Array("Item 1", "Item 2"), "Select one", -1) Upvote 0
You can create such a list with the InputList keyword. B4X: Dim res As Int = InputList(Array("Item 1", "Item 2"), "Select one", -1)
P palmzac Active Member Licensed User Longtime User Oct 29, 2015 #5 Thank you ! Erel said: You can create such a list with the InputList keyword. View attachment 38529 B4X: Dim res As Int = InputList(Array("Item 1", "Item 2"), "Select one", -1) Click to expand... Upvote 0
Thank you ! Erel said: You can create such a list with the InputList keyword. View attachment 38529 B4X: Dim res As Int = InputList(Array("Item 1", "Item 2"), "Select one", -1) Click to expand...