簡體   English   中英

Android Studio數組值到TextView

[英]Android Studio Array values to TextView

我遵循Wintech的教程建立與MS SQL數據庫的連接,結果是在調試器中獲得200,因此我知道它已成功連接。 我的問題是我無法從查詢中獲取結果以顯示在應用中...

activity_main.xml中:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.pmatthews.appointmentcreator.MainActivity">

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/bg"

    android:orientation="vertical">

    <ImageView
        android:id="@+id/imageView"

        android:layout_width="match_parent"
        android:layout_height="wrap_content"

        android:onClick="openWebpage"
        android:src="@drawable/logo" />

    <ScrollView

        android:id="@+id/scroll"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">

            <LinearLayout
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="15dp"
                android:orientation="horizontal">

                <TextView
                    android:layout_width="0dp"

                    android:layout_height="wrap_content"
                    android:layout_marginLeft="15dp"

                    android:layout_marginTop="5dp"
                    android:layout_weight="1"
                    android:text="Appointment Number:"
                    android:textColor="#000000" />


                <EditText
                    android:id="@+id/ApptNumView"

                    android:layout_width="0dp"
                    android:layout_height="wrap_content"

                    android:layout_marginRight="15dp"
                    android:layout_marginTop="5dp"
                    android:layout_weight="1" />

                <ImageButton
                    android:id="@+id/refreshButton"

                    android:layout_width="30dp"
                    android:layout_height="30dp"
                    android:background="@drawable/refresh"
                    android:onClick="testConnection" />
            </LinearLayout>

            <LinearLayout
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="30dp"

                android:orientation="horizontal">

                <TextView
                    android:id="@+id/textView"

                    android:layout_width="0dp"

                    android:layout_height="wrap_content"
                    android:layout_marginLeft="15dp"

                    android:layout_marginTop="5dp"
                    android:layout_weight="1"
                    android:text="Material Owner Number:"
                    android:textColor="#000000" />

                <TextView
                    android:id="@+id/MatOwnNumView"

                    android:layout_width="0dp"
                    android:layout_height="wrap_content"

                    android:layout_marginRight="15dp"
                    android:layout_marginTop="5dp"
                    android:layout_weight="1" />
            </LinearLayout>

            <LinearLayout
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="30dp"

                android:orientation="horizontal">

                <TextView
                    android:layout_width="0dp"

                    android:layout_height="wrap_content"
                    android:layout_marginLeft="15dp"

                    android:layout_marginTop="5dp"
                    android:layout_weight="6.5"
                    android:text="Carrier Number:"
                    android:textColor="#000000" />

                <TextView
                    android:id="@+id/CarrNumView"

                    android:layout_width="0dp"
                    android:layout_height="wrap_content"

                    android:layout_marginRight="15dp"
                    android:layout_marginTop="5dp"
                    android:layout_weight="4" />

                <ImageButton
                    android:id="@+id/CarrNumButton"

                    android:layout_width="30dp"

                    android:layout_height="30dp"
                    android:background="@drawable/searchicon"


                    />
            </LinearLayout>

            <LinearLayout
                android:layout_width="fill_parent"
                android:layout_height="82dp"
                android:orientation="horizontal">

                <TextView
                    android:layout_width="0dp"

                    android:layout_height="wrap_content"
                    android:layout_marginLeft="15dp"


                    android:layout_marginTop="5dp"
                    android:layout_weight="1"
                    android:text="Purchase Order Number:"
                    android:textColor="#000000" />

                <EditText
                    android:id="@+id/PONInput"

                    android:layout_width="0dp"
                    android:layout_height="wrap_content"
                    android:layout_marginRight="15dp"
                    android:layout_marginTop="5dp"
                    android:layout_weight="1" />
            </LinearLayout>

            <LinearLayout
                android:layout_width="fill_parent"
                android:layout_height="82dp"
                android:orientation="horizontal">

                <TextView
                    android:layout_width="0dp"

                    android:layout_height="wrap_content"
                    android:layout_marginLeft="15dp"


                    android:layout_marginTop="5dp"
                    android:layout_weight="1"
                    android:text="Release Number:"
                    android:textColor="#000000" />

                <EditText
                    android:id="@+id/RelNumInput"

                    android:layout_width="0dp"
                    android:layout_height="wrap_content"
                    android:layout_marginRight="15dp"
                    android:layout_marginTop="5dp"
                    android:layout_weight="1" />
            </LinearLayout>

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content">

                <TextView
                    android:layout_width="0dp"


                    android:layout_height="wrap_content"
                    android:layout_marginLeft="15dp"
                    android:layout_marginTop="5dp"

                    android:layout_weight="1"
                    android:text="Rail Car No:"
                    android:textColor="#000000" />

                <EditText
                    android:id="@+id/RailCarInput"

                    android:layout_width="0dp"
                    android:layout_height="wrap_content"

                    android:layout_marginRight="15dp"

                    android:layout_marginTop="5dp"
                    android:layout_weight="1" />
            </LinearLayout>


            <TextView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"

                android:layout_marginLeft="5dp"
                android:layout_marginRight="5dp"

                android:text="Actuals"

                android:textColor="#000000"
                android:textSize="30sp" />

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content">

                <CheckBox
                    android:id="@+id/truckArrivedBox"

                    android:layout_width="0dp"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="15dp"

                    android:layout_weight="1" />

                <TextView
                    android:layout_width="0dp"

                    android:layout_height="wrap_content"
                    android:layout_weight="7"

                    android:text="Truck has Arrived"

                    android:textColor="#000000" />
            </LinearLayout>

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical">

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:orientation="horizontal">

                    <TextView
                        android:layout_width="0dp"

                        android:layout_height="wrap_content"

                        android:layout_marginLeft="15dp"
                        android:layout_marginTop="20dp"

                        android:layout_weight="1"
                        android:text="Bill Lading No In:"

                        android:textColor="#000000" />

                    <EditText
                        android:id="@+id/billNumInput"

                        android:layout_width="0dp"
                        android:layout_height="wrap_content"

                        android:layout_marginRight="15dp"
                        android:layout_marginTop="20dp"
                        android:layout_weight="1" />
                </LinearLayout>

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:orientation="vertical">

                    <TextView
                        android:layout_width="wrap_content"

                        android:layout_height="wrap_content"

                        android:layout_marginLeft="15dp"
                        android:layout_marginTop="40dp"

                        android:layout_weight="1"
                        android:text="Arrival Date:"
                        android:textColor="#000000" />

                    <DatePicker
                        android:id="@+id/arrivalDateInput"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"

                        android:layout_marginTop="20dp"
                        android:datePickerMode="calendar"


                        />

                </LinearLayout>

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:orientation="vertical">

                    <TextView
                        android:layout_width="fill_parent"

                        android:layout_height="wrap_content"

                        android:layout_marginLeft="15dp"
                        android:layout_marginTop="20dp"

                        android:layout_weight="1"

                        android:text="Arrival Time:"
                        android:textColor="#000000" />

                    <TimePicker
                        android:id="@+id/arrivalTimeInput"

                        android:layout_width="fill_parent"

                        android:layout_height="wrap_content"
                        android:layout_marginRight="15dp"

                        android:layout_marginTop="20dp"
                        android:layout_weight="1"
                        android:timePickerMode="spinner" />


                </LinearLayout>
            </LinearLayout>

            <LinearLayout

                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical">

                <Button
                    android:id="@+id/recieveButton"

                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="15dp"
                    android:layout_marginRight="15dp"
                    android:text="Recieve Inventory" />

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:orientation="horizontal">

                    <Button
                        android:id="@+id/saveButton"

                        android:layout_width="0dp"

                        android:layout_height="wrap_content"
                        android:layout_marginLeft="15dp"

                        android:layout_weight="1"
                        android:text="Save"

                        />

                    <Button
                        android:id="@+id/cancelButton"

                        android:layout_width="0dp"
                        android:layout_height="wrap_content"
                        android:layout_marginRight="15dp"

                        android:layout_weight="1"
                        android:text="Cancel" />
                </LinearLayout>

            </LinearLayout>

            <ListView
                android:id="@+id/list"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"></ListView>

            <ListView
                android:id="@+id/listView"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">

            </ListView>




            <TextView
                android:id="@+id/txtConNum"
                android:layout_width="fill_parent"
                android:layout_height="100dp"/>





        </LinearLayout>

    </ScrollView>

</LinearLayout>


</android.support.constraint.ConstraintLayout>

MainActivity.java:

package com.example.pandasai.project;

import android.app.Activity;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

import android.view.View;
import android.content.Intent;
import android.net.Uri;
import android.widget.AdapterView;
import android.widget.ListAdapter;
import android.widget.ListView;
import android.widget.SimpleAdapter;


import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;

import java.util.ArrayList;
import java.util.HashMap;
import android.os.AsyncTask;
import android.widget.TableLayout;
import android.widget.TextView;
import android.widget.Toast;

import org.json.JSONArray;
import org.json.JSONObject;

import static com.example.pandasai.project.R.id.txtConNum;


public class MainActivity extends AppCompatActivity {

    ArrayList<HashMap<String, String>> conNumList;
    ListAdapter adapter;




@Override
    protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);


    conNumList = new ArrayList<HashMap<String, String>>();
    ListView list = (ListView) findViewById(R.id.list);
    new GetConNum(MainActivity.this, 
list).execute("http://xxx.xxx.xxx.xxx/LocalAppTest/Service1.svc/GetConNum");
}
class GetConNum extends AsyncTask<String, Void, String>{

String status = null;
Activity context;
ListView listView;
public GetConNum(Activity context, ListView listView){
    this.context = context;
    this.listView = listView;
}
protected void onPreExecute(){

}
protected String doInBackground(String... connUrl){
    HttpURLConnection conn = null;
    BufferedReader reader;

    try{
        final URL url = new URL(connUrl[0]);
        conn = (HttpURLConnection) url.openConnection();
        conn.addRequestProperty("Content-Type", "application/json; 
charset=utf-8");
        conn.setRequestMethod("GET");
        int result = conn.getResponseCode();
        if(result == 200){

            InputStream in = new BufferedInputStream(conn.getInputStream());
            reader = new BufferedReader(new InputStreamReader(in));
            StringBuilder sb = new StringBuilder();
            String line = null;

            while ((line = reader.readLine()) != null){
                status = line;
            }

        }

    }catch(Exception ex){

    }
    return status;
    }
    protected void onPostExecute(String result){
    super.onPostExecute(result);

    if(result != null){
        try{

            ArrayList<String> stringArrayList = new ArrayList<String>();
            JSONArray jsonArray = new JSONArray(result);
            for(int i=0; i<jsonArray.length(); i++){
                JSONObject object = jsonArray.getJSONObject(i);
                String ControlNumber = object.getString("ControlNumber");

                HashMap<String, String> itemList = new HashMap<String, 
String>();
                itemList.put("ControlNumber", ControlNumber);

                conNumList.add(itemList);


            }
            adapter = new SimpleAdapter(MainActivity.this, conNumList, 
R.layout.activity_main, new String[]{"ControlNumber"}, new int[]
{txtConNum});
             ((AdapterView<ListAdapter>) listView).setAdapter(adapter);


        }catch(Exception ex){
            ex.printStackTrace();
        }
    }else{
        Toast.makeText(MainActivity.this, "Failed to connect.", 
Toast.LENGTH_LONG).show();
    }
}
}





public void openWebpage(View view){
    Uri webLink = Uri.parse("http://examplesite.com");
    Intent webLinkIntent = new Intent(Intent.ACTION_VIEW, webLink);

    startActivity(webLinkIntent);
}


}

我沒有遇到任何我所知道的錯誤,只是沒有按照Wintech教程中的方式執行。 我不確定我錯過了什么。 我特意省去了POST位,因為直到后來我才打算寫數據庫。 就目前而言,我只是試圖獲取在應用程序的TextView中顯示的查詢結果。

Wintech的教程:

Android-SQL Server數據庫連接(第1部分,創建WCF Web服務)

https://youtu.be/xnO9MbferQo

Android-SQL Server數據庫連接(第2部分,獲取和發布數據)

https://youtu.be/RLDIjrDRrU8

您要替換最后一個readline輸出,因此最后一行可能是\\ n字符。 你應該更換

while ((line = reader.readLine()) != null){
                status = line;
            }

while ((line = reader.readLine()) != null){
                sb.append(line);
            }

..
return sb.toString()

編輯

protected String doInBackground(String... connUrl){
    HttpURLConnection conn = null;
    BufferedReader reader;
    StringBuilder sb;

    try{
        final URL url = new URL(connUrl[0]);
        conn = (HttpURLConnection) url.openConnection();
        conn.addRequestProperty("Content-Type", "application/json; 
charset=utf-8");
        conn.setRequestMethod("GET");
        int result = conn.getResponseCode();
        if(result == 200){

            InputStream in = new BufferedInputStream(conn.getInputStream());
            reader = new BufferedReader(new InputStreamReader(in));
            sb = new StringBuilder();
            String line = null;

            while ((line = reader.readLine()) != null){
                sb.append(line);
            }

        }

    }catch(Exception ex){

    }
    return sb.toString();
    }
    protected void onPostExecute(String result){
       super.onPostExecute(result);
       System.out.println(result);
    }

我仔細地運行了調試器,發現它正在將查詢中的數據存儲到result 我在ListView中添加了一個TextView,在AsyncTask txtV其聲明為txtV ,並在PostExecute添加了txtV.setText(result)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM