Ibrahim ali abdelghany

Results 6 comments of Ibrahim ali abdelghany

Not exactly, In the same README we add example of how to use demo and best practice for it, i.e for `helloworld` demo example would be `http://localhost:8080/demo/hello?who=ibrahim`

I'm developing a unity plugin which is depending on my native-android plugin.. And I'm facing the same issue,, is there any working solution for that? Thank you! @stewartmiles @jkasten2

Please check @Juriv @ronnielsen @oleg-vasiliev @RamotionDev

There is a deprecated method called `setItems()` and `getItems()` you can work with them, for example: ``` ArrayList pickerItems = new ArrayList(); for (int i = 0; i < theDataListYouInsertedToAdapter.size();...

@ismailtosun @MilanVucic You can simply do it using glide or picasso like: ``` Glide.with(context) .asBitmap() .load(url) .into(new SimpleTarget() { @Override public void onResourceReady(@NonNull Bitmap resource, Transition

@MilanVucic Well you can use AysncTask and return `PickerItem` and wait until process finish, but it will block the UI for some time. Or @igalata should suggest more effective solution.