This extension allows for doing more things with App Inventor Lists. I made this extension with Kodular IDE.
Current version: 1 Release date: 2019-04-21T21:00:00Z Required permissions: none Min API required: N/A
I decided the build this extension because I saw we can actually do more things with YailList (a Java object which used in App Inventor for lists.) So I created additional blocks for the built-in list blocks.
Return a list which sorted by Bubble sorting algorithm.
Number
MinimumNumber
Return minimum number in list.
Number
MaximumNumber
Return maximum number in list.
Number
SimpleSort
Return a sorted list for list which contains strings instead of numbers.
String
Compare
Returns true if input lists are same. If not, result will be false.
All
GetLastItem
Return last item from any list. It can be useful if you have dynamic list.
All
ToJSONString
Return a strictly syntactically correct JSON text representation of list.
All
Reverse*
Return a reversed list.
All
I wanted to make a universal extension which will work in all App Inventor distros. So maybe we can have āreverse listā block, but other distros still may not have. Thatās why I added this block to the extension.
I didnāt add sorting option because you can already have descending sorting by reversing sorted list.
Can you add sort option for list in list structure?
Liste iƧinde liste tipi iƧin destek ekleyebilirmisin? Mesela
Liste item1(isim1,isim2,isim3)
item2 (puan1,puan2,puan3)
item3(ekstrabilgi1,e2,e3)
gibi bir listeyi belli bir item e gƶre sıralasın mesela en yĆ¼ksek puana sahip olan puan2 ise isim2 ve e2 yi birinci eleman olarak geri dƶndĆ¼rsĆ¼n gibi.
Thanks for reporting! I fixed it. For preventing the upcoming community download errors, I hosted the file on my website. (Donāt worry, it is a direct download link too )
Iām getting an odd issue. Iām sorting a list of names alphabetically using the SimpleSort method and names that have been entered without capitalization get sorted to the bottom of the list. Is there a way to sort it without taking capitalization into account?
I added the TextBoxTools extension to set the box to capitalized words so that it should result in the names being formatted correctly. Hopefully, that solves the issue unless my users intentionally screw it up. Which, to be realistic, they probably will.