Spinner, key value and json in kotlin
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I'm receving some data from an API made with ACF and Wordpress. I'm parsing the json**,** then I display the result in my android (kotlin) application.
But I'm stuck. I need to make a key/value system for my spinner. I'm using an ArrayList for the moment where I'm adding the index of the loop and the value of the loop.
Then, I'm adding this to a spinner, but I'm only adding a value to this (value is what is showed on my app).
See:
private fun getMulti(array: JSONArray): ArrayList<FormInput>? {
val arrayInputs: ArrayList<FormInput> = ArrayList()
if (array.length() > 0) {
(0 until array.length()).forEach { j ->
val objInput = array.getJSONObject(j)
val placeholder2 = objInput.getString(Constants.placeholder)
val type = objInput.getString(Constants.type)
val customtag = objInput.getString(Constants.customtag)
val input = FormInput(null, placeholder2, type, customtag, null)
if (type == Constants.select) {
val valuesArray = objInput.getJSONArray(Constants.values)
Log.i("valeur json : ", valuesArray.toString())
if (valuesArray.length() > 0) {
(0 until valuesArray.length()).forEach {
val valeur = input.addItems(valuesArray.getJSONObject(it).getString(Constants.value))
if(valuesArray.getJSONObject(it).getString(Constants.prix).toString() != ""){
val item = valuesArray.getJSONObject(it).getString(Constants.prix).toString().toFloat()
keyValSpinner.add(j, item)
}
}
// On ajoute l'input seulement si il est valide
arrayInputs.add(input)
}
} else {
arrayInputs.add(input)
}
}
return arrayInputs
} else {
return null
}
}
This is my json
{
"datas": [
{
"id": 472,
"titre": "Escaliers",
"order": "4",
"inputs": [
{
"title": "Escaliers",
"type": "multi",
"placeholder": "",
"display_alone": true,
"values": false,
"other": false,
"inputs": [
{
"placeholder": "Modèle",
"type": "select",
"values": [
{
"value": "Droit",
"prix": ""
},
{
"value": "1/4 tournant 1 volée",
"prix": "2362.5"
},
{
"value": "1/4 tournant 2 volée",
"prix": ""
},
{
"value": "2/4 tournants",
"prix": ""
},
{
"value": "Demi-tour",
"prix": ""
}
],
"customtag": "noTag"
},
{
"placeholder": "Contremarches",
"type": "select",
"values": [
{
"value": "Avec contremarche",
"prix": "324"
},
{
"value": "Sans contremarche",
"prix": ""
}
],
"customtag": "noTag"
},
{
"placeholder": "ML garde-corps étage",
"type": "switch",
"values": false,
"customtag": "garde_corps"
}
],
"custom_tag_alone": "noTagAlone"
}
]
}
]
}
My arrayList
class KeyValSpinner {
companion object {
val keyValSpinner : ArrayList<Any> = ArrayList<Any>()
}
}
For now I have my arrayList with index from 0 to 10 and some prices. But I need to get the value of each object of each spinner, so maybe to an arraylist of arraylist( this one where are stored the value ?)
I've been strugguling for hours with this...
How can I create key/value from this json for each item ?
(PS : I can modify the api as I want)
json api kotlin spinner key-value
add a comment |
I'm receving some data from an API made with ACF and Wordpress. I'm parsing the json**,** then I display the result in my android (kotlin) application.
But I'm stuck. I need to make a key/value system for my spinner. I'm using an ArrayList for the moment where I'm adding the index of the loop and the value of the loop.
Then, I'm adding this to a spinner, but I'm only adding a value to this (value is what is showed on my app).
See:
private fun getMulti(array: JSONArray): ArrayList<FormInput>? {
val arrayInputs: ArrayList<FormInput> = ArrayList()
if (array.length() > 0) {
(0 until array.length()).forEach { j ->
val objInput = array.getJSONObject(j)
val placeholder2 = objInput.getString(Constants.placeholder)
val type = objInput.getString(Constants.type)
val customtag = objInput.getString(Constants.customtag)
val input = FormInput(null, placeholder2, type, customtag, null)
if (type == Constants.select) {
val valuesArray = objInput.getJSONArray(Constants.values)
Log.i("valeur json : ", valuesArray.toString())
if (valuesArray.length() > 0) {
(0 until valuesArray.length()).forEach {
val valeur = input.addItems(valuesArray.getJSONObject(it).getString(Constants.value))
if(valuesArray.getJSONObject(it).getString(Constants.prix).toString() != ""){
val item = valuesArray.getJSONObject(it).getString(Constants.prix).toString().toFloat()
keyValSpinner.add(j, item)
}
}
// On ajoute l'input seulement si il est valide
arrayInputs.add(input)
}
} else {
arrayInputs.add(input)
}
}
return arrayInputs
} else {
return null
}
}
This is my json
{
"datas": [
{
"id": 472,
"titre": "Escaliers",
"order": "4",
"inputs": [
{
"title": "Escaliers",
"type": "multi",
"placeholder": "",
"display_alone": true,
"values": false,
"other": false,
"inputs": [
{
"placeholder": "Modèle",
"type": "select",
"values": [
{
"value": "Droit",
"prix": ""
},
{
"value": "1/4 tournant 1 volée",
"prix": "2362.5"
},
{
"value": "1/4 tournant 2 volée",
"prix": ""
},
{
"value": "2/4 tournants",
"prix": ""
},
{
"value": "Demi-tour",
"prix": ""
}
],
"customtag": "noTag"
},
{
"placeholder": "Contremarches",
"type": "select",
"values": [
{
"value": "Avec contremarche",
"prix": "324"
},
{
"value": "Sans contremarche",
"prix": ""
}
],
"customtag": "noTag"
},
{
"placeholder": "ML garde-corps étage",
"type": "switch",
"values": false,
"customtag": "garde_corps"
}
],
"custom_tag_alone": "noTagAlone"
}
]
}
]
}
My arrayList
class KeyValSpinner {
companion object {
val keyValSpinner : ArrayList<Any> = ArrayList<Any>()
}
}
For now I have my arrayList with index from 0 to 10 and some prices. But I need to get the value of each object of each spinner, so maybe to an arraylist of arraylist( this one where are stored the value ?)
I've been strugguling for hours with this...
How can I create key/value from this json for each item ?
(PS : I can modify the api as I want)
json api kotlin spinner key-value
Anyone ? I really need help
– Projet Sin
Nov 19 '18 at 8:39
add a comment |
I'm receving some data from an API made with ACF and Wordpress. I'm parsing the json**,** then I display the result in my android (kotlin) application.
But I'm stuck. I need to make a key/value system for my spinner. I'm using an ArrayList for the moment where I'm adding the index of the loop and the value of the loop.
Then, I'm adding this to a spinner, but I'm only adding a value to this (value is what is showed on my app).
See:
private fun getMulti(array: JSONArray): ArrayList<FormInput>? {
val arrayInputs: ArrayList<FormInput> = ArrayList()
if (array.length() > 0) {
(0 until array.length()).forEach { j ->
val objInput = array.getJSONObject(j)
val placeholder2 = objInput.getString(Constants.placeholder)
val type = objInput.getString(Constants.type)
val customtag = objInput.getString(Constants.customtag)
val input = FormInput(null, placeholder2, type, customtag, null)
if (type == Constants.select) {
val valuesArray = objInput.getJSONArray(Constants.values)
Log.i("valeur json : ", valuesArray.toString())
if (valuesArray.length() > 0) {
(0 until valuesArray.length()).forEach {
val valeur = input.addItems(valuesArray.getJSONObject(it).getString(Constants.value))
if(valuesArray.getJSONObject(it).getString(Constants.prix).toString() != ""){
val item = valuesArray.getJSONObject(it).getString(Constants.prix).toString().toFloat()
keyValSpinner.add(j, item)
}
}
// On ajoute l'input seulement si il est valide
arrayInputs.add(input)
}
} else {
arrayInputs.add(input)
}
}
return arrayInputs
} else {
return null
}
}
This is my json
{
"datas": [
{
"id": 472,
"titre": "Escaliers",
"order": "4",
"inputs": [
{
"title": "Escaliers",
"type": "multi",
"placeholder": "",
"display_alone": true,
"values": false,
"other": false,
"inputs": [
{
"placeholder": "Modèle",
"type": "select",
"values": [
{
"value": "Droit",
"prix": ""
},
{
"value": "1/4 tournant 1 volée",
"prix": "2362.5"
},
{
"value": "1/4 tournant 2 volée",
"prix": ""
},
{
"value": "2/4 tournants",
"prix": ""
},
{
"value": "Demi-tour",
"prix": ""
}
],
"customtag": "noTag"
},
{
"placeholder": "Contremarches",
"type": "select",
"values": [
{
"value": "Avec contremarche",
"prix": "324"
},
{
"value": "Sans contremarche",
"prix": ""
}
],
"customtag": "noTag"
},
{
"placeholder": "ML garde-corps étage",
"type": "switch",
"values": false,
"customtag": "garde_corps"
}
],
"custom_tag_alone": "noTagAlone"
}
]
}
]
}
My arrayList
class KeyValSpinner {
companion object {
val keyValSpinner : ArrayList<Any> = ArrayList<Any>()
}
}
For now I have my arrayList with index from 0 to 10 and some prices. But I need to get the value of each object of each spinner, so maybe to an arraylist of arraylist( this one where are stored the value ?)
I've been strugguling for hours with this...
How can I create key/value from this json for each item ?
(PS : I can modify the api as I want)
json api kotlin spinner key-value
I'm receving some data from an API made with ACF and Wordpress. I'm parsing the json**,** then I display the result in my android (kotlin) application.
But I'm stuck. I need to make a key/value system for my spinner. I'm using an ArrayList for the moment where I'm adding the index of the loop and the value of the loop.
Then, I'm adding this to a spinner, but I'm only adding a value to this (value is what is showed on my app).
See:
private fun getMulti(array: JSONArray): ArrayList<FormInput>? {
val arrayInputs: ArrayList<FormInput> = ArrayList()
if (array.length() > 0) {
(0 until array.length()).forEach { j ->
val objInput = array.getJSONObject(j)
val placeholder2 = objInput.getString(Constants.placeholder)
val type = objInput.getString(Constants.type)
val customtag = objInput.getString(Constants.customtag)
val input = FormInput(null, placeholder2, type, customtag, null)
if (type == Constants.select) {
val valuesArray = objInput.getJSONArray(Constants.values)
Log.i("valeur json : ", valuesArray.toString())
if (valuesArray.length() > 0) {
(0 until valuesArray.length()).forEach {
val valeur = input.addItems(valuesArray.getJSONObject(it).getString(Constants.value))
if(valuesArray.getJSONObject(it).getString(Constants.prix).toString() != ""){
val item = valuesArray.getJSONObject(it).getString(Constants.prix).toString().toFloat()
keyValSpinner.add(j, item)
}
}
// On ajoute l'input seulement si il est valide
arrayInputs.add(input)
}
} else {
arrayInputs.add(input)
}
}
return arrayInputs
} else {
return null
}
}
This is my json
{
"datas": [
{
"id": 472,
"titre": "Escaliers",
"order": "4",
"inputs": [
{
"title": "Escaliers",
"type": "multi",
"placeholder": "",
"display_alone": true,
"values": false,
"other": false,
"inputs": [
{
"placeholder": "Modèle",
"type": "select",
"values": [
{
"value": "Droit",
"prix": ""
},
{
"value": "1/4 tournant 1 volée",
"prix": "2362.5"
},
{
"value": "1/4 tournant 2 volée",
"prix": ""
},
{
"value": "2/4 tournants",
"prix": ""
},
{
"value": "Demi-tour",
"prix": ""
}
],
"customtag": "noTag"
},
{
"placeholder": "Contremarches",
"type": "select",
"values": [
{
"value": "Avec contremarche",
"prix": "324"
},
{
"value": "Sans contremarche",
"prix": ""
}
],
"customtag": "noTag"
},
{
"placeholder": "ML garde-corps étage",
"type": "switch",
"values": false,
"customtag": "garde_corps"
}
],
"custom_tag_alone": "noTagAlone"
}
]
}
]
}
My arrayList
class KeyValSpinner {
companion object {
val keyValSpinner : ArrayList<Any> = ArrayList<Any>()
}
}
For now I have my arrayList with index from 0 to 10 and some prices. But I need to get the value of each object of each spinner, so maybe to an arraylist of arraylist( this one where are stored the value ?)
I've been strugguling for hours with this...
How can I create key/value from this json for each item ?
(PS : I can modify the api as I want)
json api kotlin spinner key-value
json api kotlin spinner key-value
asked Nov 16 '18 at 16:35
Projet SinProjet Sin
807
807
Anyone ? I really need help
– Projet Sin
Nov 19 '18 at 8:39
add a comment |
Anyone ? I really need help
– Projet Sin
Nov 19 '18 at 8:39
Anyone ? I really need help
– Projet Sin
Nov 19 '18 at 8:39
Anyone ? I really need help
– Projet Sin
Nov 19 '18 at 8:39
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53341970%2fspinner-key-value-and-json-in-kotlin%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53341970%2fspinner-key-value-and-json-in-kotlin%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Anyone ? I really need help
– Projet Sin
Nov 19 '18 at 8:39