我想从我的PHP页面获取Integer
的值并插入到Android TextView
示例:我已分配" int level = 1 "在PHP页面中,我希望插入变量" level"的这个值。到Android TextView
。
这里的任何人都可以帮助我或给我一个教程链接吗?
感谢您的亲切帮助。
答案 0 :(得分:2)
您可以通过这种方式构建或编码Json
,您也可以在Android端获得KEY
和VALUE
赞: { key = values }
其中
key = level(your TABLE column name)
和value = 1
(您的动态值)
如果您想知道如何获取column_name
并编码JSON
关注return JSON from mysql with column name
答案 1 :(得分:1)
final TextView mTextView = (TextView) findViewById(R.id.text); ...
// Instantiate the RequestQueue. RequestQueue queue = Volley.newRequestQueue(this); String url ="http://www.google.com";
// Request a string response from the provided URL. StringRequest stringRequest = new StringRequest(Request.Method.GET, url,
new Response.Listener<String>() {
@Override
public void onResponse(String response) {
// Display the first 500 characters of the response string.
mTextView.setText("Response is: "+ response.substring(0,500));
} }, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
mTextView.setText("That didn't work!");
} }); // Add the requestto the RequestQueue. queue.add(stringRequest);
此代码应代表您的问题,可能会有所帮助。如果不是,请查看链接。 资料来源:https://developer.android.com/training/volley/simple.html