gpt4 book ai didi

android - 当 Button onClick 时使用 json 解析设置 TextView

转载 作者:太空狗 更新时间:2023-10-29 15:50:44 26 4
gpt4 key购买 nike

如果单击按钮,我想制作应用程序, TextView 随 json 解析数据发生变化。那么,我该怎么做呢?

这是我的代码:

 public class MainActivity extends AppCompatActivity {
TextView tampilkan;
Button btn1;
String str_json = "{\"harga_jus\":\"{\"mangga\":\"5000\",\"jeruk\":\"3000\",\"apel\"4000\"}}";
String copy;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tampilkan = (TextView)findViewById(R.id.tampil);
btn1 = (Button)findViewById(R.id.btn);
try {
JSONObject harga_jus = new JSONObject(str_json);
JSONObject jus = harga_jus.getJSONObject("harga_jus");
final String mangga = jus.getString("mangga");
copy = mangga;
btn1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
tampilkan.setText(copy);
}
});
}
catch (Exception e){
e.printStackTrace();
}

}
}

最佳答案

    final TextView tampilkan = (TextView) findViewById(R.id.tampil);
Button btn1 = (Button) findViewById(R.id.btn);
String JSON = "{ \"harga_jus\": { \"mangga\": \"5000\", \"jeruk\": \"3000\", \"apel\": \"4000\" } }";
try {
JSONObject harga_jus = new JSONObject(JSON);
JSONObject jus = harga_jus.getJSONObject("harga_jus");
final String mangga = jus.getString("mangga");

btn1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
tampilkan.setText(mangga);
}
});
} catch (Exception e) {
e.printStackTrace();
}

关于android - 当 Button onClick 时使用 json 解析设置 TextView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41440732/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com