Android -如果我点击列表视图上的项目,强制关闭



我需要你的帮助来修复我的代码。

我的意图是,如果我点击ListView上的项目,它会带我到intent action_view。

问题是我得到强制关闭,如果我点击ListView上的项目。

我认为问题出在onItemClick方法上,你能给出更好的方法来完成它吗

下面是我的代码:

public class HotelList extends ListActivity{
hotelHelper dbHotelHelper;
protected Cursor cursor;
protected ListAdapter adapter;
ListView numberList;    
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState){
    super.onCreate(savedInstanceState);
    setContentView(R.layout.hotellist);
    numberList = (ListView)findViewById(android.R.id.list);
    numberList.setOnItemClickListener(new OnItemClickListener() {
        @Override
        public void onItemClick(AdapterView<?> arg0, View arg1, int position,
                long arg3) {
            // TODO Auto-generated method stub
                    String selectedItem = (String) getListAdapter().getItem(position);
                    String query = "SELECT lat, long FROM hoteltbl WHERE name = '" + selectedItem + "'";
                    SQLiteDatabase dbs = dbHotelHelper.getReadableDatabase();
                    Cursor result = dbs.rawQuery(query, null);
                    result.moveToFirst();
                    double lat = result.getDouble(result.getColumnIndex("lat"));
                    double longi = result.getDouble(result.getColumnIndex("long"));
                    Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("http://maps.google.com/maps?f=d&saddr=&daddr="+lat+","+longi));
                    startActivity(intent);
                }                   
            });     

    dbHotelHelper = new hotelHelper(this);
    try{
        dbHotelHelper.createDataBase();         
    }
    catch (Exception ioe){
        Log.e("err","Unable to create database");
    }        
    view();   

    }

private void view() {
    // TODO Auto-generated method stub
    SQLiteDatabase db = dbHotelHelper.getReadableDatabase();
    try{
        cursor = db.rawQuery("SELECT * FROM hoteltbl", null);
        adapter = new SimpleCursorAdapter(
                this, 
                android.R.layout.simple_list_item_1, 
                cursor, 
                new String[]{"name"}, 
                new int[] {android.R.id.text1}
                );
        numberList.setAdapter(adapter);     
    }
    catch (Exception e){
        Log.e("error",e.toString());
    }       
}

}

点击项目内部你有很多可能导致异常的方式,异常将导致应用程序强制关闭你的代码没有处理异常

我列出了可能导致异常的原因,请查看以下

String selectedItem = (String) getListAdapter().getItem(position);

在这里你可能会得到类型对话问题,你正在转换的东西是字符串

不支持的
SQLiteDatabase dbs = dbHotelHelper.getReadableDatabase();
Cursor result = dbs.rawQuery(query, null);
result.moveToFirst();
double lat = result.getDouble(result.getColumnIndex("lat"));
double longi = result.getDouble(result.getColumnIndex("long"));
    如果dbHotelHelper
  1. 。getReadableDatabase返回null或dbHotelHelper返回null,在这种情况下,应用程序将强制关闭
  2. 如果dbs。rawQuery返回null,你的应用将强制关闭
  3. 如果结果为空,那么你可能会调用moveToFirst, getDouble和getColumnIndex对空对象,在这种情况下,你的应用程序也会强制关闭

为您的信息在API级别11中已弃用SimpleCursorAdapter构造函数。不建议使用此选项,因为它会导致在应用程序的UI线程上执行Cursor查询,从而导致响应性差,甚至出现application Not Responding错误。作为一种替代方法,可以使用LoaderManager和CursorLoader。

相关内容

  • 没有找到相关文章

最新更新