Intent i= new Intent( SetTest.this, SetTest.this);// compile error there
i.putExtra("question_number", questionNumber++);
startActivity(i);
I want to post the data to the same activity.. . Here is my intent filter in the mainfest file:
<activity android:name="SetTest">
<intent-filter android:label="@string/setQuestion">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
I dont understand why do I get the compile error?!?
I get compile error, with this too:
Context context=getApplicationContext();
Intent i= new Intent(context, SetTest.this);