AMWOLLO VICTOR
AMWOLLO VICTOR
You need to create an Adapter of `MaterialSpinnerAdapter` Example you have: ``` ArrayList countryArrayList = new ArrayList(); Country country = new Country("Kenya",254); countryArrayList.add(country); Country country1 = new Country("Nigeria",244); countryArrayList.add(country1); MaterialSpinnerAdapter...
Remember the Country model class has this method ``` //to display object as a string in spinner @Override public String toString() { return name; } ```
More reference [StackOverflow](https://stackoverflow.com/questions/24712540/set-key-and-value-in-spinner)
I've noticed the `insertImage()` function has 3 params ``` public void insertImage(int insertIndex, String filePath, boolean uploaded, String caption){ } ``` Maybe an issue with params?
I noticed there is an inbuilt [payment library](https://github.com/jessepollak/payment) which documents the APIs available. You don't need to download the library to use it. In my case: **Form field** `` **Get...
Your system is littered with a lot of files, it is possible to reach this limit before exhausting the storage capacity of the drive. Check your inodes `sudo df -i`...
> I still can reproduce the bug in demo from the description, but for some reason it doesn't appear anymore in our app @spinthe_bot. The code is simple: > >...
Check your .env file and provide the key and secret `BINANCE_LIVE_API_KEY=` `BINANCE_LIVE_SECRET_KEY=` for test keys `BINANCE_TEST_API_KEY=` `BINANCE_TEST_SECRET_KEY=`