Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/391.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java ListView项onClick can';没有显示想要的结果_Java_Android_Xml_Listview_Onclick - Fatal编程技术网

Java ListView项onClick can';没有显示想要的结果

Java ListView项onClick can';没有显示想要的结果,java,android,xml,listview,onclick,Java,Android,Xml,Listview,Onclick,这是listview。每个项目中仅显示3种类型的信息(即职位名称、位置、薪资): 职位名称1 地点1 薪水1 例如,上述3个信息是listview中的项目1。如果单击第1项,则应显示上述3个信息加上3个其他信息,即工作职责、公司、联系人: 职位名称1 地点1 薪水1 工作职责1 第一公司 联系人1 然而,它失败了。它只显示前3个信息,没有工作职责、公司和联系人。有人能帮忙吗?多谢各位 MainActivity.java public class MainActivity extends List

这是listview。每个项目中仅显示3种类型的信息(即职位名称、位置、薪资):

职位名称1

地点1

薪水1

例如,上述3个信息是listview中的项目1。如果单击第1项,则应显示上述3个信息加上3个其他信息,即工作职责、公司、联系人:

职位名称1

地点1

薪水1

工作职责1

第一公司

联系人1

然而,它失败了。它只显示前3个信息,没有工作职责、公司和联系人。有人能帮忙吗?多谢各位

MainActivity.java

public class MainActivity extends ListActivity {

private ProgressDialog pDialog;

// URL to get contacts JSON
private static String url = "http://192.168.0.102/get_json_select_all.php";

// JSON Node names
private static final String TAG_INFO = "info";
private static final String TAG_POSTNAME = "PostName";
private static final String TAG_LOCATION = "Location";
private static final String TAG_SALARY = "Salary";
private static final String TAG_RESPONSIBILITY = "Responsibility";
private static final String TAG_COMPANY = "Company";
private static final String TAG_CONTACT = "Contact";


// contacts JSONArray
JSONArray infos = null;

// Hashmap for ListView
ArrayList<HashMap<String, String>> infoList;

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

infoList = new ArrayList<HashMap<String, String>>();

ListView lv = getListView();

// Listview on item click listener
lv.setOnItemClickListener(new OnItemClickListener() {

    @Override
    public void onItemClick(AdapterView<?> parent, View view,
                            int position, long id) {
        // getting values from selected ListItem
        String name = ((TextView) view.findViewById(R.id.PostName))
                .getText().toString();
        String cost = ((TextView) view.findViewById(R.id.Location))
                .getText().toString();
        String description = ((TextView) view.findViewById(R.id.Salary))
                .getText().toString();


        // Starting single contact activity
        Intent in = new Intent(getApplicationContext(),
                SingleContactActivity.class);

        in.putExtra(TAG_POSTNAME, name);
        in.putExtra(TAG_LOCATION, cost);
        in.putExtra(TAG_SALARY, description);


        startActivity(in);

    }
});

// Calling async task to get json
new GetContacts().execute();
}

/**
 * Async task class to get json by making HTTP call
 * */
private class GetContacts extends AsyncTask<Void, Void, Void> {

@Override
protected void onPreExecute() {
    super.onPreExecute();
    // Showing progress dialog
    pDialog = new ProgressDialog(MainActivity.this);
    pDialog.setMessage("Please wait...");
    pDialog.setCancelable(false);
    pDialog.show();

}

@Override
protected Void doInBackground(Void... arg0) {
    // Creating service handler class instance
    ServiceHandler sh = new ServiceHandler();

    // Making a request to url and getting response
    String jsonStr = sh.makeServiceCall(url, ServiceHandler.GET);

    Log.d("Response: ", "> " + jsonStr);

    if (jsonStr != null) {
        try {
            JSONObject jsonObj = new JSONObject(jsonStr);

            // Getting JSON Array node
            infos = jsonObj.getJSONArray(TAG_INFO);

            // looping through All Contacts
            for (int i = 0; i < infos.length(); i++) {
                JSONObject c = infos.getJSONObject(i);

                String id = c.getString(TAG_POSTNAME);
                String name = c.getString(TAG_LOCATION);
                String email = c.getString(TAG_SALARY);
                String address = c.getString(TAG_RESPONSIBILITY);
                String gender = c.getString(TAG_COMPANY);
                String mobile = c.getString(TAG_CONTACT);


                // tmp hashmap for single contact
                HashMap<String, String> info = new HashMap<String, String>();

                // adding each child node to HashMap key => value
                info.put(TAG_POSTNAME, id);
                info.put(TAG_LOCATION, name);
                info.put(TAG_SALARY, email);
                info.put(TAG_RESPONSIBILITY, address);
                info.put(TAG_COMPANY, gender);
                info.put(TAG_CONTACT, mobile);
                // adding contact to contact list
                infoList.add(info);
            }
        } catch (JSONException e) {
            e.printStackTrace();
        }
    } else {
        Log.e("ServiceHandler", "Couldn't get any data from the url");
    }

    return null;
}

@Override
protected void onPostExecute(Void result) {
    super.onPostExecute(result);
    // Dismiss the progress dialog
    if (pDialog.isShowing())
        pDialog.dismiss();
    /**
     * Updating parsed JSON data into ListView
     * */
    ListAdapter adapter = new SimpleAdapter(
            MainActivity.this, infoList,

            R.layout.list_item, new String[] { TAG_POSTNAME, TAG_LOCATION,
            TAG_SALARY }, new int[] { R.id.PostName,
            R.id.Location, R.id.Salary });

    setListAdapter(adapter);
}

}

}        
public class SingleContactActivity extends Activity {

// JSON node keys
private static final String TAG_POSTNAME = "PostName";
private static final String TAG_LOCATION = "Location";
private static final String TAG_SALARY = "Salary";

private static final String TAG_RESPONSIBILITY = "Responsibility";
private static final String TAG_COMPANY = "Company";
private static final String TAG_CONTACT = "Contact";

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_single_contact);

// getting intent data
Intent in = getIntent();

// Get JSON values from previous intent
String PostName = in.getStringExtra(TAG_POSTNAME);
String Location = in.getStringExtra(TAG_LOCATION);
String Salary = in.getStringExtra(TAG_SALARY);

String Responsibility = in.getStringExtra(TAG_RESPONSIBILITY);
String Company = in.getStringExtra(TAG_COMPANY);
String Contact = in.getStringExtra(TAG_CONTACT);

// Displaying all values on the screen
TextView lblPostName = (TextView) findViewById(R.id.PostName_label);
TextView lblLocation = (TextView) findViewById(R.id.Location_label);
TextView lblSalary = (TextView) findViewById(R.id.Salary_label);

TextView lblResponsibility = (TextView)   findViewById(R.id.Responsibility_label);
TextView lblCompany = (TextView) findViewById(R.id.Company_label);
TextView lblContact = (TextView) findViewById(R.id.Contact_label);

lblPostName.setText(PostName);
lblLocation.setText(Location);
lblSalary.setText(Salary);

lblResponsibility.setText(Responsibility);
lblCompany.setText(Company);
lblContact.setText(Contact);
}
}
ServiceHandler.java

public class ServiceHandler {

static String response = null;
public final static int GET = 1;
public final static int POST = 2;

public ServiceHandler() {

}


public String makeServiceCall(String url, int method) {
return this.makeServiceCall(url, method, null);
}

public String makeServiceCall(String url, int method,
                          List<NameValuePair> params) {
try {
    // http client
    DefaultHttpClient httpClient = new DefaultHttpClient();
    HttpEntity httpEntity = null;
    HttpResponse httpResponse = null;

    // Checking http request method type
    if (method == POST) {
        HttpPost httpPost = new HttpPost(url);
        // adding post params
        if (params != null) {
            httpPost.setEntity(new UrlEncodedFormEntity(params));
        }

        httpResponse = httpClient.execute(httpPost);

    } else if (method == GET) {
        // appending params to url
        if (params != null) {
            String paramString = URLEncodedUtils
                    .format(params, "utf-8");
            url += "?" + paramString;
        }
        HttpGet httpGet = new HttpGet(url);

        httpResponse = httpClient.execute(httpGet);

    }
    httpEntity = httpResponse.getEntity();
    response = EntityUtils.toString(httpEntity);

} catch (UnsupportedEncodingException e) {
    e.printStackTrace();
} catch (ClientProtocolException e) {
    e.printStackTrace();
} catch (IOException e) {
    e.printStackTrace();
}

return response;

}
}
公共类ServiceHandler{
静态字符串响应=null;
公共最终静态int GET=1;
公共最终静态int POST=2;
公共服务处理程序(){
}
公共字符串makeServiceCall(字符串url,int方法){
返回此.makeServiceCall(url,方法,null);
}
公共字符串makeServiceCall(字符串url,int方法,
列表参数){
试一试{
//http客户端
DefaultHttpClient httpClient=新的DefaultHttpClient();
HttpEntity HttpEntity=null;
HttpResponse HttpResponse=null;
//检查http请求方法类型
if(方法==POST){
HttpPost HttpPost=新的HttpPost(url);
//添加post参数
如果(参数!=null){
setEntity(新的UrlEncodedFormEntity(参数));
}
httpResponse=httpClient.execute(httpPost);
}else if(方法==GET){
//将参数附加到url
如果(参数!=null){
String paramString=URLEncodedUtils
.格式(参数“utf-8”);
url+=“?”+参数字符串;
}
HttpGet HttpGet=新的HttpGet(url);
httpResponse=httpClient.execute(httpGet);
}
httpEntity=httpResponse.getEntity();
response=EntityUtils.toString(httpEntity);
}捕获(不支持的编码异常e){
e、 printStackTrace();
}捕获(客户端协议例外e){
e、 printStackTrace();
}捕获(IOE异常){
e、 printStackTrace();
}
返回响应;
}
}
acticity_main.xml

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

list_item.xml

<TextView
android:id="@+id/PostName"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingBottom="2dip"
android:paddingTop="6dip"
android:textColor="#43bd00"
android:textSize="16sp"
android:textStyle="bold" />


<TextView
android:id="@+id/Location"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingBottom="2dip"
android:textColor="#acacac" />


<TextView
android:id="@+id/Salary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="left"
android:text="Salary: "
android:textColor="#5d5d5d"
android:textStyle="bold" />

activity_single_contact.xml

<TextView android:id="@+id/PostName_label"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="25dip"
android:textStyle="bold"
android:paddingTop="10dip"
android:paddingBottom="10dip"
android:textColor="#43bd00"/>

<TextView android:id="@+id/Location_label"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#acacac"/>

<TextView android:id="@+id/Salary_label"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textStyle="bold"/>

<TextView android:id="@+id/Responsibility_label"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#ff1e76ac"/>

<TextView android:id="@+id/Company_label"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#ff1e76ac"/>

<TextView android:id="@+id/Contact_label"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#ff1e76ac"/>

编辑这部分代码

 final listView lv=getListView();

 lv.setOnItemClickListener(new OnItemClickListener() {

    @Override
    public void onItemClick(AdapterView<?> parent, View view,
                            int position, long id) {
        // getting values from selected ListItem
        String name = ((TextView) view.findViewById(R.id.PostName))
                .getText().toString();
        String cost = ((TextView) view.findViewById(R.id.Location))
                .getText().toString();
        String description = ((TextView) view.findViewById(R.id.Salary))
                .getText().toString();
HashMap<String, String> info = new HashMap<String, String>();
        info=(HashMap<String, String>)lv.getAdapter().getItem(position);

        // Starting single contact activity
        Intent in = new Intent(getApplicationContext(),
                SingleContactActivity.class);

        in.putExtra(TAG_POSTNAME, name);
        in.putExtra(TAG_LOCATION, cost);
        in.putExtra(TAG_SALARY, description);    
        in.putExtra(RESPONSIBILITY,  info.get(TAG_RESPONSIBILITY));
        in.putExtra(TAG_COMPANY, info.get(TAG_COMPANY));
        in.putExtra(TAG_CONTACT, info.get(TAG_CONTACT));
    startActivity(in);
final listView lv=getListView();
lv.setOnItemClickListener(新的OnItemClickListener(){
@凌驾
public void onItemClick(AdapterView父级、视图、,
内部位置,长id){
//从选定的ListItem获取值
字符串名称=((TextView)view.findViewById(R.id.PostName))
.getText().toString();
字符串成本=((TextView)view.findViewById(R.id.Location))
.getText().toString();
字符串描述=((TextView)view.findViewById(R.id.Salary))
.getText().toString();
HashMap info=新的HashMap();
info=(HashMap)lv.getAdapter().getItem(位置);
//启动单一联系人活动
Intent in=新的Intent(getApplicationContext(),
活动类);
in.putExtra(TAG_POSTNAME,name);
in.putExtra(标签位置、成本);
in.putExtra(标签、工资、说明);
in.putExtra(职责,信息获取(TAG_职责));
in.putExtra(TAG_COMPANY,info.get(TAG_COMPANY));
in.putExtra(TAG_CONTACT,info.get(TAG_CONTACT));
星触觉(in);

谢谢您的帮助!但是“getAdapter().getItem(i);”有问题:1.无法解析方法“getAdapter()”.2.无法解析符号“i”抱歉不是“i”,这是“位置”关于“getAdapter”如何在同一条线上。无法在Android Studio中解决此方法。它将要求您将lv设置为最终版本。我猜现在可以了!!!非常感谢您的帮助。感谢您的耐心:)