Переход от одного действия ListView к другому ListView Activiy - PullRequest
1 голос
/ 15 апреля 2011

Я использую ListView в Android, создавая этот класс

public class HBSListView extends ListActivity;

Когда я нажимаю на элемент в списке и хочу перейти к следующему ListActivity, показывая относительную информацию о выбранном элементе в предыдущемсписок.

lv.setOnItemClickListener( new OnItemClickListener() {
    public void onItemClick(AdapterView<?> parent, View view, int position, long id) {              
        @SuppressWarnings("unchecked")
        HashMap<String, String> o = (HashMap<String, String>) lv.getItemAtPosition(position);                   

        Intent a = new Intent(iTeam.Ufinder.Application.HBS.HBSDetailView.class.getName()); 
        a.putExtra("store_id", o.get("id")); 
        startActivity(a); 

        // When I use above code it is not working. I want to pass ID also.

        // This works but i do not know how to pass ID this way.
        // startActivity(new Intent("iTeam.Ufinder.Application.HBSDETAILVIEW"));
    }
});

public class HBSDetailView extends ListActivity это класс, в который я хочу переместиться.

Файл Mainfest

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="iTeam.Ufinder.Application"
  android:versionCode="1"
  android:versionName="1.0">
<uses-sdk android:minSdkVersion="10" />

<application android:icon="@drawable/icon" android:label="@string/app_name">
    <activity android:name=".Startup"
              android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
     <activity android:name=".main"
              android:label="@string/app_name">
        <intent-filter>
            <action android:name="iTeam.Ufinder.Application.CLEARSCREEN" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
    <activity android:name="iTeam.Ufinder.Application.MANAGEMENT.Management"
              android:label="@string/app_name">
        <intent-filter>
            <action android:name="iTeam.Ufinder.Application.MANAGEMENT" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
    <activity android:name="iTeam.Ufinder.Application.HBS.HBSListView"
              android:label="@string/app_name">
        <intent-filter>
            <action android:name="iTeam.Ufinder.Application.HBSLISTVIEW" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
    <activity android:name="iTeam.Ufinder.Application.HBS.HBSDetailView"
              android:label="@string/app_name">
        <intent-filter>
            <action android:name="iTeam.Ufinder.Application.HBSDETAILVIEW" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>

</application>
<uses-permission android:name="android.permission.INTERNET" />

ЭтоException:

04-15 13: 04: 43.901: ОШИБКА / AndroidRuntime (1417): java.lang.RuntimeException: Невозможно создать экземпляр действия ComponentInfo {iTeam.Ufinder.Application / iTeam.Ufinder.Application.HBS.HBSDetailView}: java.lang.NullPointerException

Ответы [ 2 ]

1 голос
/ 15 апреля 2011

Когда вы создаете Intent, как это

Intent a = new Intent(iTeam.Ufinder.Application.HBS.HBSDetailView.class.getName()); 

вы создаете его с именем действия вашего имени класса. Вам нужно создать намерение так:

Intent a = new Intent(HBSListView.this, iTeam.Ufinder.Application.HBS.HBSDetailView.class); 

Разница заключается в подписи вызова. Первый из них имеет аргумент типа String. Это означает создание Intent с указанным действием. Второй - о Context и Class аргументах. Он предназначен для создания Intent для вызова указанного класса в указанном контексте.

Также проверьте, что o не равно нулю.

EDIT

Хорошо, если вы хотите начать деятельность таким образом ...

Intent a = new Intent("iTeam.Ufinder.Application.HBSDETAILVIEW");
a.putExtra("store_id", o.get("id")); 
startActivity(a); 

Код выше должен работать так, как вы ожидаете ...

0 голосов
/ 17 июля 2012
Bundle bundle = new Bundle();
ListAdapter adapter = (new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1,list1));
list.setAdapter(adapter);

list.setOnItemClickListener(new OnItemClickListener() {
    @Override
    public void onItemClick(AdapterView<?> arg0, View v,int position, long id) {
        HashMap<String, String> o = (HashMap<String, String>) lv.getItemAtPosition(position);

        if (position == 0) {
            bundle.putString("store_id", o.get("id"));
            Intent inten = new Intent("Activity name which is you must define in manifest file"); 
            inten.putExtras(bundle);

            startActivity(inten);
        }

        if(position==1) {
            //write your code for when second item of listview clicked
        }

        .....

    }
});

Добавьте ваш Activity в файл манифеста:

<activity
    android:name=".className"
    android:label="@string/app_name" >
    <intent-filter>
        <action android:name="com.test.ACTIVITY" />
        //use this name when you want to run this activty

        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>
...