嗨,我已经成功开发了一个listview应用程序。.现在,我必须单击该列表中的任何项目,这意味着详细说明将显示在下一个活动中……它也已成功完成。。现在,我的输出是以下格式:

1   F   Krishna
2   Q   Danesh
3   P   Mercy


在这里,我必须单击2 Q Danesh项目,它转到下一个活动。下一个活动必须显示

Q Danesh

它成功地工作了。

但是现在我希望需要像这种格式的列表视图:

1 Krishna
2 Danesh
3 Mercy


在这里,我必须单击2 Danesh,这意味着它要转到下一个活动,而下一个活动必须显示

Q

我该怎么办....请帮助我...

以下代码是我的网络服务代码:

 public class RetailerWs {
 public String customerData1(){
 String customerInfo = "";
 try{
 Class.forName("com.mysql.jdbc.Driver");
 Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/xcart-432pro","root","");


//查找最大客户ID的客户信息
PreparedStatement语句= con.prepareStatement(“ SELECT * FROM xcart_orders”);
ResultSet结果= statement.executeQuery();

 while(result.next()){
   customerInfo = customerInfo
            + result.getString("orderid")
            + " "   // this to separate order id from status
            + result.getString("status")
            + " "
    // this to separate order id from status
            + result.getString("login")
            + "&" ;
 //Here "&"s are added to the return string. This is help to split the string in Android application
}
}

catch(Exception exc){
System.out.println(exc.getMessage());
}

return customerInfo;
}

 }


这是我的android代码:

public class RetailerActivity extends Activity {
ListView list;
private static final String SOAP_ACTION = "http://xcart.com/customerData1";
private static final String METHOD_NAME = "customerData1";
private static final String NAMESPACE = "http://xcart.com";
private static final String URL = "http://192.168.1.168:8089/XcartLogin/services/RetailerWs?wsdl";
private static final String KEY_STATUS = "status";
private static final String KEY_LOGIN = "login";


/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);

    SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);

    envelope.setOutputSoapObject(request);

    HttpTransportSE ht = new HttpTransportSE(URL);
    try {
        ht.call(SOAP_ACTION, envelope);
        SoapPrimitive response = (SoapPrimitive)envelope.getResponse();
        SoapPrimitive s = response;
        String str = s.toString();
        String resultArr[] = str.split("&");
        list=(ListView)findViewById(R.id.list);


        list.setAdapter(new ArrayAdapter(this, android.R.layout.simple_list_item_1,resultArr));
        list.setOnItemClickListener(new OnItemClickListener() {
        @Override
        public void onItemClick(AdapterView<?> parent, View view,
                    int position, long id) {
                String status =  parent.getItemAtPosition(position).toString();

                String[] status1  = status.split(" ");

                 String StrStatus = status1[1].toString();

                Intent in = new Intent(getApplicationContext(), SingleMenuItemActivity.class);
                in.putExtra(KEY_STATUS, StrStatus);

                startActivity(in);



            }
        });
    }


    catch (Exception e) {
        e.printStackTrace();
    }
}

  }


这是我的下一个活动:

 public class SingleMenuItemActivity  extends Activity {

// XML node keys
static final String KEY_STATUS = "status";

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

    Intent in = getIntent();
    String StrStatus = in.getStringExtra(KEY_STATUS);


    // Displaying all values on the screen
    TextView lblName = (TextView) findViewById(R.id.status_label);
    lblName.setText(StrStatus);

  }
  }


请帮我....

最佳答案

有可能的。您可以将Q从列表屏幕转到其他活动。

您只需更改您的第一个活动(即您的Q值)

in.putExtra("StrStatus", StrStatus);


然后您可以通过其他活动获得此信息

Bundle extras=getIntent().getExtras();
if(extras!=null) {
    STRStatus=extras.getString("StrStatus");
}


这将具有您的Q值,您可以做任何您想做的事情。

-----
BTW-您会遇到哪个错误?
您可以使用它来单击您的列表项

public void onListItemClick(ListView parent,View v,int position,long id){
try {
    TextView t4=(TextView)v.findViewById(R.id.No);

    if (t4!=null){
        BeanClass/*ClassName*/  mSelected;
        int idx=position;
        mSelected=m_adapter.getItem(idx);
        String ActionID=mSelected.getID();

        Intent intent=new Intent(this,SoneActivity.class);
        intent.putExtra("StrStatus", StrStatus);
        startActivity(intent);
    }
}

08-18 15:58