我想單擊圖像時發生新的活動。 我已經在清單文件中寫入activity android:name=.openPdf
。顯式意圖錯誤
,但它讓我看到了一個錯誤: -
"android.content.ActivityNotFoundException: Unable to find explicit activity class {Parsing.this/openPdf.class}; have you declared this activity in your AndroidManifest.xml?
"
代碼::
iv1.setOnClickListener(new View.OnClickListener()
{
public void onClick(View v)
{
// Toast.makeText(getApplicationContext(), "hello",Toast.LENGTH_SHORT).show();
Intent pdf=new Intent(Parsing.this,openPdf.class);
startActivity(pdf);
}
});
像
請編輯你的答案以添加新信息而不是評論它。 –
nope ....相同的錯誤happen.i已經在同一個包中創建了第二個活動,現在我使用完整的類名但沒有效果。 – arpit