I am talking about <action android:name="packagename.ImagePagerActivity" />
. It's seems unnessesary to add it, because the application works fine without it. But why do some developers write such reference?
<activity
android:name=".adapter.imageview.ImagePagerActivity"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Light.NoTitleBar" >
<intent-filter>
<action android:name="packagename.ImagePagerActivity" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>