OnMenuButton没有将数据发布到谷歌电子表格

时间:2015-03-12 15:24:45

标签: java android google-sheets logcat

嘿伙计们我现在已经有这个问题一段时间了,我无法弄清楚为什么它不起作用。当我使用我在YouTube上关注的教程提供的代码时,它工作正常,即在应用程序启动后立即发布该数据。但是,我想要做的就是尽快发布数据"保存注册"按钮在菜单中按下但它不起作用并返回消息,如Log Cat。

所示

我感觉我应该为此创建一个Async任务但是因为我的android编程非常有限,我不确定我将如何创建它。

我的主要活动课程:

public class MainActivity extends Activity{

boolean wasApEnabled = false;
static AccessPoint wifiAP;
private WifiManager wifi;
static Button apButton;
static TextView textView;
final String myTag = "DocsUpload";


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

    apButton = (Button) findViewById(R.id.toggleBtn);
    textView = (TextView) findViewById(R.id.wifiClients);

    apButton.setOnClickListener(new View.OnClickListener() {
        public void onClick(View view) {
            wifiAP.toggleWifiAP(wifi, MainActivity.this);
        }
    });

    /*Log.i(myTag, "OnCreate()");
    Thread t = new Thread(new Runnable() {
        @Override
        public void run() {
            postData();

        }
    });*/
    //t.start();

    wifiAP = new AccessPoint(this);
    wifi = (WifiManager) getSystemService(Context.WIFI_SERVICE);

    postData();
    scan();
    //getWindow().addFlags(WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD|WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON|WindowManager.LayoutParams.FLAG_DIM_BEHIND);

}

private void scan(){
    wifiAP.getClientList(false, new FinishScanListener() {

        @Override
        public void onFinishScan(final ArrayList<ClientScanResult> clients) {
            textView.setText("WifiApState:" + wifiAP.getWifiApState()+ "\n\n");
            textView.append("Clients: \n");
            for (ClientScanResult clientScanResult : clients){
                textView.append("====================\n");
                textView.append("ipAddress: " + clientScanResult.getIpAddress() + "\n");
                textView.append("Device: " + clientScanResult.getDevice() + "\n");
                textView.append("macAddress: " + clientScanResult.getMacAddress() + "\n");
                textView.append("isReachable: " + clientScanResult.isReachable() + "\n");

            }
        }
    });
}

public void postData() {

    String fullUrl = "https://docs.google.com/forms/d/1yipuuXd5V53Ol12U24Cl2H4RIdYtm622jIk13Zo26cM/formResponse";
    HttpRequest mReq = new HttpRequest();
    String col1 = "Hello";
    String col2 = "World";

    String data = "entry_272641491=" + URLEncoder.encode(col1) + "&" +
            "entry_130393492=" + URLEncoder.encode(col2);
    String response =mReq.sendPost(fullUrl, data);
   // Log.i(myTag, response);
}

@Override
public void onResume() {
    super.onResume();
    if (wasApEnabled) {
        if (wifiAP.getWifiApState() != wifiAP.WIFI_STATE_ENABLED && wifiAP.getWifiApState() != wifiAP.WIFI_STATE_ENABLING) {
            wifiAP.toggleWifiAP(wifi, MainActivity.this);
        }
    }
    updateStatusDisplay();
}

@Override
public void onPause() {
    super.onPause();
    boolean wifiApIsOn = wifiAP.getWifiApState()==wifiAP.WIFI_STATE_ENABLED || wifiAP.getWifiApState()==wifiAP.WIFI_STATE_ENABLING;
    if (wifiApIsOn){
        wasApEnabled = true;
        wifiAP.toggleWifiAP(wifi, MainActivity.this);
    }else {
        wasApEnabled = false;
    }
    updateStatusDisplay();
}

public static void updateStatusDisplay(){
    if (wifiAP.getWifiApState()==wifiAP.WIFI_STATE_ENABLED || wifiAP.getWifiApState()==wifiAP.WIFI_STATE_ENABLING){
        apButton.setText("Turn Off");
    }else {
        apButton.setText("Turn on");
    }
}


@Override
public boolean onCreateOptionsMenu(Menu menu) {
    menu.add(0,0,0, "Get Clients");
    menu.add(0,1,0, "Save Register");
    getMenuInflater().inflate(R.menu.menu_main, menu);
    return super.onCreateOptionsMenu(menu);
}

public boolean onMenuItemSelected(int featureId, MenuItem item) {
    switch (item.getItemId()){
        case 0:
            scan();
            break;
        case 1:
            postData();
            break;
    }
    return super.onMenuItemSelected(featureId, item);
}
}

这是我使用的助手类,Credit转到此堆栈溢出用户来创建此类

Secure HTTP Post in Android

这是我得到的日志猫

    03-12 15:06:27.428    3096-3096/com.example.gavin.wifiattendance D/Your App Name Here﹕ https://docs.google.com/forms/d/1yipuuXd5V53Ol12U24Cl2H4RIdYtm622jIk13Zo26cM/formResponse?entry_272641491=Hello&entry_130393492=World
03-12 15:06:27.428    3096-3096/com.example.gavin.wifiattendance E/WifiAttendance﹕ HttpUtils: android.os.NetworkOnMainThreadException
03-12 15:06:27.428    3096-3096/com.example.gavin.wifiattendance D/WifiAttendance﹕ Returning value:null

2 个答案:

答案 0 :(得分:0)

  

我感觉我应该创建一个异步任务   为此

正确。当您尝试在主线程(UI线程)上进行网络调用时,会抛出NetworkOnMainThreadException

您可以在AsyncTask here找到一个很好的教程。

教程中的示例:

private class DownloadWebPageTask extends AsyncTask<String, Void, String> {
    @Override
    protected String doInBackground(String... urls) {

        String response = "";

        //Do your network calls here

        return response;

    }

    @Override
    protected void onPostExecute(String result) {

        //When you are done, this method runs on the UI thread so you can update the UI from here

        textView.setText(result);
    }
}

最后你这样执行

DownloadWebPageTask task = new DownloadWebPageTask();
task.execute(new String[] { "http://www.vogella.com" });

答案 1 :(得分:0)

感谢@Marcus提供的有用链接,我设法让它使用此代码:

 public class PostDataTask extends AsyncTask<String, Void, Integer>{

    @Override
    protected Integer doInBackground(String... params) {
        HttpRequest mReq = new HttpRequest();
        String data = "entry_272641491=" + URLEncoder.encode(params[1]) + "&" +
                "entry_130393492=" + URLEncoder.encode(params[2]);
        String response = mReq.sendPost(params[0], data);
        return 200;
    }
}