リストビューと同じxmlレイアウトに含まれているボタンをクリックしてリストビューを作成しようとしています。
同じページにボタンを配置したかったので、同じ xml のボタンに onclicklistener を実装しようとしています。このボタンは、達成しようとしているリストビュー タスクを実行します。
このタスクは PHP Web サービスを呼び出して、データベース上のすべてのデータを読み取り、それを JSON 配列として返します。私がやりたいのは、リストビューのボタンの下に表示することです。
ここに私の Towns_php_activity.xml ファイルがあります:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
style="25"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
xmlns:android1="http://schemas.android.com/apk/res/android">
<ListView
android1:id="@android:id/list"
android1:layout_width="match_parent"
android1:layout_height="450dp"
android1:layout_alignParentBottom="true"
android1:layout_alignParentLeft="true" >
</ListView>
<Button
android1:id="@+id/buttonGo"
style="?android:attr/buttonStyleSmall"
android1:layout_width="wrap_content"
android1:layout_height="wrap_content"
android1:layout_alignParentRight="true"
android1:layout_alignParentTop="true"
android1:text="GO!" />
</RelativeLayout>
上記のレイアウトを使用する私の Town_php_Activity.java :
package com.example.town;
import java.util.ArrayList;
import java.util.HashMap;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import android.app.Activity;
import android.app.ListActivity;
import android.os.Bundle;
import android.os.StrictMode;
import android.view.View;
import android.widget.Button;
import android.widget.ListAdapter;
import android.widget.SimpleAdapter;
public class Town_php_Activity extends Activity{
// url to make request
private static String url = "*************************";
// JSON Node names
private static final String TAG_Data = "data";
private static final String TAG_ID = "_id";
private static final String TAG_Name = "Name";
private static final String TAG_Locale = "Locale2";
private static final String TAG_General = "General";
// contacts JSONArray
JSONArray data = new JSONArray();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.towns_php_activity);
// Show the Up button in the action bar.
//setupActionBar();
Button gettowns = (Button) findViewById(R.id.buttonGo);
gettowns.setOnClickListener(new View.OnClickListener(){
public void onClick(View v){
GetTowns getTowns = new GetTowns();
}
});
}
public class GetTowns extends ListActivity{
// Hashmap for ListView
ArrayList<HashMap<String, String>> contactList = new ArrayList<HashMap<String, String>>();
// Creating JSON Parser instance
JSONParser jParser = new JSONParser();
StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
StrictMode.setThreadPolicy(policy);
// getting JSON string from URL
JSONObject json = jParser.getJSONFromUrl(url);
try {
// Getting Array of Contacts
data = json.getJSONArray(TAG_Data);
// looping through All Contacts
for(int i = 0; i < data.length(); i++){
JSONObject c = data.getJSONObject(i);
// Storing each json item in variable
String id = c.getString(TAG_ID);
String name = c.getString(TAG_Name);
String locale = c.getString(TAG_Locale);
String genre = c.getString(TAG_General);
// creating new HashMap
HashMap<String, String> map = new HashMap<String, String>();
// adding each child node to HashMap key => value
map.put(TAG_ID, id);
map.put(TAG_Name, name);
map.put(TAG_Locale, locale);
map.put(TAG_General, general);
// adding HashList to ArrayList
contactList.add(map);
}
} catch (JSONException e) {
e.printStackTrace();
}
/**
* Updating parsed JSON data into ListView
* */
ListAdapter adapter = new SimpleAdapter(this, contactList,
R.layout.list_item,
new String[] { TAG_Name, TAG_Locale, TAG_General }, new int[] {
R.id.name, R.id.locale, R.id.general });
setListAdapter(adapter);
// selecting single ListView item
ListView lv = getListView();
// Launching new screen on Selecting Single ListItem
lv.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
// getting values from selected ListItem
String named = ((TextView) view.findViewById(R.id.name)).getText().toString();
String location = ((TextView) view.findViewById(R.id.locale)).getText().toString();
String gen = ((TextView) view.findViewById(R.id.general)).getText().toString();
// Starting new intent
Intent in = new Intent(getApplicationContext(), SingleListItem.class);
in.putExtra(TAG_Name, named);
in.putExtra(TAG_Locale, location);
in.putExtra(TAG_General, gen);
startActivity(in);
}
});
}
}
}
}
私が得ているのは、これらの部分のエラーです:
StrictMode.setThreadPolicy(policy);
この行に複数のマーカー
1.Syntax error on token "policy", VariableDeclaratorId expected after this token
2.Syntax error on token(s), misplaced construct(s)
と
setListAdapter(adapter);
この行に複数のマーカー:
1.Return type for the method is missing
2.Syntax error on token "adapter", VariableDeclaratorId expected after this token
3.Syntax error on token ")", { expected after this token
4.adapter cannot be resolved to a type
私がすべてを試したので、誰かが私にとってこれがなぜなのかを明らかにしてください。
ありがとうございました。テキストの壁で申し訳ありません。