Parsing XML to arraylist in AndroidIs there a way to run Python on Android?How do save an Android Activity state using save instance state?Activity restart on rotation AndroidClose/hide the Android Soft KeyboardWhy is the Android emulator so slow? How can we speed up the Android emulator?“Debug certificate expired” error in Eclipse Android pluginsIs there a unique Android device ID?What is 'Context' on Android?How Do You Parse and Process HTML/XML in PHP?Proper use cases for Android UserManager.isUserAGoat()?
Not using 's' for he/she/it
Where does the bonus feat in the cleric starting package come from?
Is it better practice to read straight from sheet music rather than memorize it?
Why should universal income be universal?
What should you do when eye contact makes your subordinate uncomfortable?
Melting point of aspirin, contradicting sources
Why is so much work done on numerical verification of the Riemann Hypothesis?
What should you do if you miss a job interview (deliberately)?
Why Shazam when there is already Superman?
How to explain what's wrong with this application of the chain rule?
Biological Blimps: Propulsion
How do I find all files that end with a dot
Closed-form expression for certain product
How to bake one texture for one mesh with multiple textures blender 2.8
Is it possible to put a rectangle as background in the author section?
What are the purposes of autoencoders?
Redundant comparison & "if" before assignment
Is this toilet slogan correct usage of the English language?
How do you make your own symbol when Detexify fails?
Is it safe to use olive oil to clean the ear wax?
The screen of my macbook suddenly broken down how can I do to recover
What does chmod -u do?
What is the evidence for the "tyranny of the majority problem" in a direct democracy context?
Should I stop contributing to retirement accounts?
Parsing XML to arraylist in Android
Is there a way to run Python on Android?How do save an Android Activity state using save instance state?Activity restart on rotation AndroidClose/hide the Android Soft KeyboardWhy is the Android emulator so slow? How can we speed up the Android emulator?“Debug certificate expired” error in Eclipse Android pluginsIs there a unique Android device ID?What is 'Context' on Android?How Do You Parse and Process HTML/XML in PHP?Proper use cases for Android UserManager.isUserAGoat()?
I am trying to create a list/Array of data to be stored and send as input to function. But i am not able to do it can some one help me.
I am new to Andriod development.
MainActivity.java
package com.example.xmlread;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;
import android.util.Log;
import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
import org.xmlpull.v1.XmlPullParserFactory;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
public class MainActivity extends AppCompatActivity
TextView tv1;
@Override
public void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tv1=(TextView)findViewById(R.id.textView1);
XmlPullParserFactory pullParserFactory;
try
pullParserFactory = XmlPullParserFactory.newInstance();
XmlPullParser parser = pullParserFactory.newPullParser();
InputStream in_s =
getApplicationContext().getAssets().open("demo.xml");
parser.setFeature(XmlPullParser.FEATURE_PROCESS_NAMESPACES, false);
parser.setInput(in_s, null);
ArrayList<FIS> fis= parseXML(parser);
String text = "";
for(FIS fi:fis)
text+= "Route : "+fi.getDE()+" Distance(KM) : "+fi.getLE()+"
Traffic Jam : "+fi.getJF()+"Speed"+fi.getSP()+"n";
Log.d("text",text);
tv1.setText(text);
catch (XmlPullParserException e)
e.printStackTrace();
catch (IOException e)
// TODO Auto-generated catch block
e.printStackTrace();
private ArrayList<FIS> parseXML(XmlPullParser parser) throws
XmlPullParserException,IOException
ArrayList<FIS> fis = null;
int eventType = parser.getEventType();
FIS fi = null;
while (eventType != XmlPullParser.END_DOCUMENT)
String de;
switch (eventType)
case XmlPullParser.START_DOCUMENT:
fis = new ArrayList();
break;
case XmlPullParser.START_TAG:
//de = parser.getDE();
if (fi != null)
if (fi.equals("DE"))
fi.DE = parser.nextText();
else if (fi.equals("LE"))
fi.LE = parser.nextText();
else if (fi.equals("JF"))
fi.JF = parser.nextText();
else if (fi.equals("SP"))
fi.SP = parser.nextText();
break;
eventType = parser.next();
return fis;
This xml file is been added to assets folder as well.
MyXML File is:
<?xml version='1.0' encoding='UTF-8'?>
<TRAFFICML_REALTIME xmlns="http://traffic.nokia.com/trafficml-flow-3.2"
CREATED_TIMESTAMP="2019-03-19T11:54:51Z" MAP_VERSION="" UNITS="metric"
VERSION="3.2">
<RWS TY="TMC" MAP_VERSION="201901" EBU_COUNTRY_CODE="5"
EXTENDED_COUNTRY_CODE="F2" TABLE_ID="3" UNITS="metric">
<RW LI="503-00011" DE="100 Feet Main Road" PBT="2019-03-19T11:54:49Z"
mid="4e2460ff-07bb-44a1-844a-3f9772b0165b">
<FIS>
<FI>
<TMC PC="14" DE="jnhddggfg" QD="+" LE="0.05949"/>
<CF CN="0.7" FF="27.0" JF="7.55161" SP="10.0" SU="10.0"
TY="TR"/>
</FI>
<FI>
<TMC PC="13" DE="29th Main Road" QD="+" LE="0.77418"/>
<CF CN="0.7" FF="28.0" JF="7.80008" SP="10.0" SU="10.0"
TY="TR"/>
</FI>
<FI>
<TMC PC="12" DE="28th Main Road" QD="+" LE="0.0493"/>
<CF CN="0.7" FF="26.0" JF="5.61675" SP="13.0" SU="13.0"
TY="TR"/>
</FI>
</FIS>
</RW>
<RW LI="503-00011" DE="100 Feet Main Road" PBT="2019-03-19T11:54:49Z"
mid="4e2460ff-07bb-44a1-844a-3f9772b0165b">
<FIS>
<FI>
<TMC PC="14" DE="jnhddggfg" QD="+" LE="0.05949"/>
<CF CN="0.7" FF="27.0" JF="7.55161" SP="10.0" SU="10.0"
TY="TR"/>
</FI>
<FI>
<TMC PC="13" DE="29th Main Road" QD="+" LE="0.77418"/>
<CF CN="0.7" FF="28.0" JF="7.80008" SP="10.0" SU="10.0"
TY="TR"/>
</FI>
<FI>
<TMC PC="12" DE="28th Main Road" QD="+" LE="0.0493"/>
<CF CN="0.7" FF="26.0" JF="5.61675" SP="13.0" SU="13.0"
TY="TR"/>
</FI>
</FIS>
</RW>
</RWS>
</TRAFFICML_REALTIME>
I want this data stored in XML to Display and store data into arraylist in Android.
Thanks in advance.
android xml-parsing here-api
add a comment |
I am trying to create a list/Array of data to be stored and send as input to function. But i am not able to do it can some one help me.
I am new to Andriod development.
MainActivity.java
package com.example.xmlread;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;
import android.util.Log;
import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
import org.xmlpull.v1.XmlPullParserFactory;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
public class MainActivity extends AppCompatActivity
TextView tv1;
@Override
public void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tv1=(TextView)findViewById(R.id.textView1);
XmlPullParserFactory pullParserFactory;
try
pullParserFactory = XmlPullParserFactory.newInstance();
XmlPullParser parser = pullParserFactory.newPullParser();
InputStream in_s =
getApplicationContext().getAssets().open("demo.xml");
parser.setFeature(XmlPullParser.FEATURE_PROCESS_NAMESPACES, false);
parser.setInput(in_s, null);
ArrayList<FIS> fis= parseXML(parser);
String text = "";
for(FIS fi:fis)
text+= "Route : "+fi.getDE()+" Distance(KM) : "+fi.getLE()+"
Traffic Jam : "+fi.getJF()+"Speed"+fi.getSP()+"n";
Log.d("text",text);
tv1.setText(text);
catch (XmlPullParserException e)
e.printStackTrace();
catch (IOException e)
// TODO Auto-generated catch block
e.printStackTrace();
private ArrayList<FIS> parseXML(XmlPullParser parser) throws
XmlPullParserException,IOException
ArrayList<FIS> fis = null;
int eventType = parser.getEventType();
FIS fi = null;
while (eventType != XmlPullParser.END_DOCUMENT)
String de;
switch (eventType)
case XmlPullParser.START_DOCUMENT:
fis = new ArrayList();
break;
case XmlPullParser.START_TAG:
//de = parser.getDE();
if (fi != null)
if (fi.equals("DE"))
fi.DE = parser.nextText();
else if (fi.equals("LE"))
fi.LE = parser.nextText();
else if (fi.equals("JF"))
fi.JF = parser.nextText();
else if (fi.equals("SP"))
fi.SP = parser.nextText();
break;
eventType = parser.next();
return fis;
This xml file is been added to assets folder as well.
MyXML File is:
<?xml version='1.0' encoding='UTF-8'?>
<TRAFFICML_REALTIME xmlns="http://traffic.nokia.com/trafficml-flow-3.2"
CREATED_TIMESTAMP="2019-03-19T11:54:51Z" MAP_VERSION="" UNITS="metric"
VERSION="3.2">
<RWS TY="TMC" MAP_VERSION="201901" EBU_COUNTRY_CODE="5"
EXTENDED_COUNTRY_CODE="F2" TABLE_ID="3" UNITS="metric">
<RW LI="503-00011" DE="100 Feet Main Road" PBT="2019-03-19T11:54:49Z"
mid="4e2460ff-07bb-44a1-844a-3f9772b0165b">
<FIS>
<FI>
<TMC PC="14" DE="jnhddggfg" QD="+" LE="0.05949"/>
<CF CN="0.7" FF="27.0" JF="7.55161" SP="10.0" SU="10.0"
TY="TR"/>
</FI>
<FI>
<TMC PC="13" DE="29th Main Road" QD="+" LE="0.77418"/>
<CF CN="0.7" FF="28.0" JF="7.80008" SP="10.0" SU="10.0"
TY="TR"/>
</FI>
<FI>
<TMC PC="12" DE="28th Main Road" QD="+" LE="0.0493"/>
<CF CN="0.7" FF="26.0" JF="5.61675" SP="13.0" SU="13.0"
TY="TR"/>
</FI>
</FIS>
</RW>
<RW LI="503-00011" DE="100 Feet Main Road" PBT="2019-03-19T11:54:49Z"
mid="4e2460ff-07bb-44a1-844a-3f9772b0165b">
<FIS>
<FI>
<TMC PC="14" DE="jnhddggfg" QD="+" LE="0.05949"/>
<CF CN="0.7" FF="27.0" JF="7.55161" SP="10.0" SU="10.0"
TY="TR"/>
</FI>
<FI>
<TMC PC="13" DE="29th Main Road" QD="+" LE="0.77418"/>
<CF CN="0.7" FF="28.0" JF="7.80008" SP="10.0" SU="10.0"
TY="TR"/>
</FI>
<FI>
<TMC PC="12" DE="28th Main Road" QD="+" LE="0.0493"/>
<CF CN="0.7" FF="26.0" JF="5.61675" SP="13.0" SU="13.0"
TY="TR"/>
</FI>
</FIS>
</RW>
</RWS>
</TRAFFICML_REALTIME>
I want this data stored in XML to Display and store data into arraylist in Android.
Thanks in advance.
android xml-parsing here-api
add a comment |
I am trying to create a list/Array of data to be stored and send as input to function. But i am not able to do it can some one help me.
I am new to Andriod development.
MainActivity.java
package com.example.xmlread;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;
import android.util.Log;
import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
import org.xmlpull.v1.XmlPullParserFactory;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
public class MainActivity extends AppCompatActivity
TextView tv1;
@Override
public void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tv1=(TextView)findViewById(R.id.textView1);
XmlPullParserFactory pullParserFactory;
try
pullParserFactory = XmlPullParserFactory.newInstance();
XmlPullParser parser = pullParserFactory.newPullParser();
InputStream in_s =
getApplicationContext().getAssets().open("demo.xml");
parser.setFeature(XmlPullParser.FEATURE_PROCESS_NAMESPACES, false);
parser.setInput(in_s, null);
ArrayList<FIS> fis= parseXML(parser);
String text = "";
for(FIS fi:fis)
text+= "Route : "+fi.getDE()+" Distance(KM) : "+fi.getLE()+"
Traffic Jam : "+fi.getJF()+"Speed"+fi.getSP()+"n";
Log.d("text",text);
tv1.setText(text);
catch (XmlPullParserException e)
e.printStackTrace();
catch (IOException e)
// TODO Auto-generated catch block
e.printStackTrace();
private ArrayList<FIS> parseXML(XmlPullParser parser) throws
XmlPullParserException,IOException
ArrayList<FIS> fis = null;
int eventType = parser.getEventType();
FIS fi = null;
while (eventType != XmlPullParser.END_DOCUMENT)
String de;
switch (eventType)
case XmlPullParser.START_DOCUMENT:
fis = new ArrayList();
break;
case XmlPullParser.START_TAG:
//de = parser.getDE();
if (fi != null)
if (fi.equals("DE"))
fi.DE = parser.nextText();
else if (fi.equals("LE"))
fi.LE = parser.nextText();
else if (fi.equals("JF"))
fi.JF = parser.nextText();
else if (fi.equals("SP"))
fi.SP = parser.nextText();
break;
eventType = parser.next();
return fis;
This xml file is been added to assets folder as well.
MyXML File is:
<?xml version='1.0' encoding='UTF-8'?>
<TRAFFICML_REALTIME xmlns="http://traffic.nokia.com/trafficml-flow-3.2"
CREATED_TIMESTAMP="2019-03-19T11:54:51Z" MAP_VERSION="" UNITS="metric"
VERSION="3.2">
<RWS TY="TMC" MAP_VERSION="201901" EBU_COUNTRY_CODE="5"
EXTENDED_COUNTRY_CODE="F2" TABLE_ID="3" UNITS="metric">
<RW LI="503-00011" DE="100 Feet Main Road" PBT="2019-03-19T11:54:49Z"
mid="4e2460ff-07bb-44a1-844a-3f9772b0165b">
<FIS>
<FI>
<TMC PC="14" DE="jnhddggfg" QD="+" LE="0.05949"/>
<CF CN="0.7" FF="27.0" JF="7.55161" SP="10.0" SU="10.0"
TY="TR"/>
</FI>
<FI>
<TMC PC="13" DE="29th Main Road" QD="+" LE="0.77418"/>
<CF CN="0.7" FF="28.0" JF="7.80008" SP="10.0" SU="10.0"
TY="TR"/>
</FI>
<FI>
<TMC PC="12" DE="28th Main Road" QD="+" LE="0.0493"/>
<CF CN="0.7" FF="26.0" JF="5.61675" SP="13.0" SU="13.0"
TY="TR"/>
</FI>
</FIS>
</RW>
<RW LI="503-00011" DE="100 Feet Main Road" PBT="2019-03-19T11:54:49Z"
mid="4e2460ff-07bb-44a1-844a-3f9772b0165b">
<FIS>
<FI>
<TMC PC="14" DE="jnhddggfg" QD="+" LE="0.05949"/>
<CF CN="0.7" FF="27.0" JF="7.55161" SP="10.0" SU="10.0"
TY="TR"/>
</FI>
<FI>
<TMC PC="13" DE="29th Main Road" QD="+" LE="0.77418"/>
<CF CN="0.7" FF="28.0" JF="7.80008" SP="10.0" SU="10.0"
TY="TR"/>
</FI>
<FI>
<TMC PC="12" DE="28th Main Road" QD="+" LE="0.0493"/>
<CF CN="0.7" FF="26.0" JF="5.61675" SP="13.0" SU="13.0"
TY="TR"/>
</FI>
</FIS>
</RW>
</RWS>
</TRAFFICML_REALTIME>
I want this data stored in XML to Display and store data into arraylist in Android.
Thanks in advance.
android xml-parsing here-api
I am trying to create a list/Array of data to be stored and send as input to function. But i am not able to do it can some one help me.
I am new to Andriod development.
MainActivity.java
package com.example.xmlread;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;
import android.util.Log;
import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
import org.xmlpull.v1.XmlPullParserFactory;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
public class MainActivity extends AppCompatActivity
TextView tv1;
@Override
public void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tv1=(TextView)findViewById(R.id.textView1);
XmlPullParserFactory pullParserFactory;
try
pullParserFactory = XmlPullParserFactory.newInstance();
XmlPullParser parser = pullParserFactory.newPullParser();
InputStream in_s =
getApplicationContext().getAssets().open("demo.xml");
parser.setFeature(XmlPullParser.FEATURE_PROCESS_NAMESPACES, false);
parser.setInput(in_s, null);
ArrayList<FIS> fis= parseXML(parser);
String text = "";
for(FIS fi:fis)
text+= "Route : "+fi.getDE()+" Distance(KM) : "+fi.getLE()+"
Traffic Jam : "+fi.getJF()+"Speed"+fi.getSP()+"n";
Log.d("text",text);
tv1.setText(text);
catch (XmlPullParserException e)
e.printStackTrace();
catch (IOException e)
// TODO Auto-generated catch block
e.printStackTrace();
private ArrayList<FIS> parseXML(XmlPullParser parser) throws
XmlPullParserException,IOException
ArrayList<FIS> fis = null;
int eventType = parser.getEventType();
FIS fi = null;
while (eventType != XmlPullParser.END_DOCUMENT)
String de;
switch (eventType)
case XmlPullParser.START_DOCUMENT:
fis = new ArrayList();
break;
case XmlPullParser.START_TAG:
//de = parser.getDE();
if (fi != null)
if (fi.equals("DE"))
fi.DE = parser.nextText();
else if (fi.equals("LE"))
fi.LE = parser.nextText();
else if (fi.equals("JF"))
fi.JF = parser.nextText();
else if (fi.equals("SP"))
fi.SP = parser.nextText();
break;
eventType = parser.next();
return fis;
This xml file is been added to assets folder as well.
MyXML File is:
<?xml version='1.0' encoding='UTF-8'?>
<TRAFFICML_REALTIME xmlns="http://traffic.nokia.com/trafficml-flow-3.2"
CREATED_TIMESTAMP="2019-03-19T11:54:51Z" MAP_VERSION="" UNITS="metric"
VERSION="3.2">
<RWS TY="TMC" MAP_VERSION="201901" EBU_COUNTRY_CODE="5"
EXTENDED_COUNTRY_CODE="F2" TABLE_ID="3" UNITS="metric">
<RW LI="503-00011" DE="100 Feet Main Road" PBT="2019-03-19T11:54:49Z"
mid="4e2460ff-07bb-44a1-844a-3f9772b0165b">
<FIS>
<FI>
<TMC PC="14" DE="jnhddggfg" QD="+" LE="0.05949"/>
<CF CN="0.7" FF="27.0" JF="7.55161" SP="10.0" SU="10.0"
TY="TR"/>
</FI>
<FI>
<TMC PC="13" DE="29th Main Road" QD="+" LE="0.77418"/>
<CF CN="0.7" FF="28.0" JF="7.80008" SP="10.0" SU="10.0"
TY="TR"/>
</FI>
<FI>
<TMC PC="12" DE="28th Main Road" QD="+" LE="0.0493"/>
<CF CN="0.7" FF="26.0" JF="5.61675" SP="13.0" SU="13.0"
TY="TR"/>
</FI>
</FIS>
</RW>
<RW LI="503-00011" DE="100 Feet Main Road" PBT="2019-03-19T11:54:49Z"
mid="4e2460ff-07bb-44a1-844a-3f9772b0165b">
<FIS>
<FI>
<TMC PC="14" DE="jnhddggfg" QD="+" LE="0.05949"/>
<CF CN="0.7" FF="27.0" JF="7.55161" SP="10.0" SU="10.0"
TY="TR"/>
</FI>
<FI>
<TMC PC="13" DE="29th Main Road" QD="+" LE="0.77418"/>
<CF CN="0.7" FF="28.0" JF="7.80008" SP="10.0" SU="10.0"
TY="TR"/>
</FI>
<FI>
<TMC PC="12" DE="28th Main Road" QD="+" LE="0.0493"/>
<CF CN="0.7" FF="26.0" JF="5.61675" SP="13.0" SU="13.0"
TY="TR"/>
</FI>
</FIS>
</RW>
</RWS>
</TRAFFICML_REALTIME>
I want this data stored in XML to Display and store data into arraylist in Android.
Thanks in advance.
android xml-parsing here-api
android xml-parsing here-api
edited yesterday
Rahul R K
asked 2 days ago
Rahul R KRahul R K
436
436
add a comment |
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%2f55281427%2fparsing-xml-to-arraylist-in-android%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%2f55281427%2fparsing-xml-to-arraylist-in-android%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