我需要一些帮助。我想计算金额列的SUM,然后在我的Android应用程序的文本视图中显示它。 这是我到目前为止所做的。
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;
import com.android.volley.Request;
import com.android.volley.RequestQueue;
import com.android.volley.Response;
import com.android.volley.VolleyError;
import com.android.volley.toolbox.JsonObjectRequest;
import com.android.volley.toolbox.Volley;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
public class BalanceActivity extends SwipeFunctionActivity
{
private Boolean exit = false;
Button buttonExpense, buttonIncome, buttonSaving;
ImageView helpImageView;
TextView totalIncomeNumberTV;
String ftotalintv = "http://192.168.0.3/myapp/ftotalintv.php";
RequestQueue requestQueue;
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_balance);
buttonExpense = (Button)findViewById(R.id.buttonExpense);
buttonIncome = (Button)findViewById(R.id.buttonIncome);
buttonSaving = (Button)findViewById(R.id.buttonSaving);
helpImageView = (ImageView)findViewById(R.id.helpImageView);
totalIncomeNumberTV = (TextView)findViewById(R.id.totalIncomeNumberTV);
requestQueue = Volley.newRequestQueue(getApplicationContext());
try
{
fetchTotalIncome();
}
catch (JSONException e)
{
e.printStackTrace();
}
buttonExpense.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View v)
{
addExpenseMethod();
}
});
buttonIncome.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View v)
{
addIncomeMethod();
}
});
buttonSaving.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View v)
{
addSavingMethod();
}
});
helpImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
instructionsMethod();
}
});
}
public void fetchTotalIncome() throws JSONException /*throws JSONException*/
{
JsonObjectRequest jsonObjectRequest = new JsonObjectRequest(Request.Method.POST, ftotalintv, new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response)
{
try {
JSONArray jsonArray = response.getJSONArray("transactions");
for(int i = 0; i<jsonArray.length(); i++)
{
JSONObject test = jsonArray.getJSONObject(i);
String totalIncome = test.getString("TotalIncome");
totalIncomeNumberTV.append(totalIncome);
}
}
catch (JSONException e)
{
e.printStackTrace();
}
}
}, new Response.ErrorListener()
{
@Override
public void onErrorResponse(VolleyError error)
{
}
});
requestQueue.add(jsonObjectRequest);
//
// String data = "http://192.168.0.3/myapp/ftotalintv.php";
// JSONObject jObject;
// jObject = new JSONObject(data);
// String total = jObject.getString("TotalIncome");
// totalIncomeNumberTV.setText(ftotalintv);
//totalIncomeNumberTV.setText("troll");
}
public void addExpenseMethod()
{
startActivity(new Intent(getApplicationContext(), AddExpenseActivity.class));
}
public void addIncomeMethod()
{
startActivity(new Intent(getApplicationContext(), AddIncomeActivity.class));
}
public void addSavingMethod()
{
startActivity(new Intent(getApplicationContext(), AddSavingActivity.class));
}
public void instructionsMethod()
{
startActivity(new Intent(getApplicationContext(), InstructionsActivity.class));
//finish();
}
@Override
public void onSwipeLeft()
{
super.onSwipeLeft();
startActivity(new Intent(getApplicationContext(), TransactionsActivity.class));
finish();
}
@Override
public void onSwipeRight()
{
super.onSwipeRight();
startActivity(new Intent(getApplicationContext(), ExpenseCategoriesActivity.class));
finish();
}
public void onSwipeTop()
{
super.onSwipeRight();
startActivity(new Intent(getApplicationContext(), ChartActivity.class));
finish();
}
@Override
public void onBackPressed()
{
if (exit)
{
finish(); // finish activity
}
else
{
Toast.makeText(this, "Press Back again to Exit.", Toast.LENGTH_SHORT).show();
exit = true;
new Handler().postDelayed(new Runnable()
{
@Override
public void run()
{
exit = false;
}
}
, 3 * 1000);
}
}
}
这是我的带有SUM查询的PHP文件:
<?php
require "init.php";
$query = mysqli_query($con, "SELECT *, SUM(TransAmount) AS 'TotalIncome' FROM transactions WHERE TransType = 'income';");
$row = mysqli_fetch_assoc($query);
$sum = $row['TotalIncome'];
if($query)
{
echo $sum;
}
myslqi_close($con);
?>
正如您所看到的,我在代码中注释了一些内容。我试图用Volley库显示SUM但是我失败了。请有人帮帮我吗?我真的不知道该做什么。我需要在Android应用程序中提供帮助,因为当我在浏览器中运行它时,PHP文件可以运行,但是也有可能存在一些问题。
答案 0 :(得分:1)
在你的php脚本中,你没有在json中编码你的响应,你可能也没有在你的php代码中添加json头。所以你的PHP代码将是这样的
$sum = $row['TotalIncome'];
if($query)
{
$data[]['TotalIncome'] = $sum;
$result = array("transactions" => $data);
echo json_encode($result);
}
myslqi_close($con);
别忘了在PHP脚本的大部分顶部添加json类型标题