如果类TestClass没有扩展任何其他类,如Activity。这将是一个帮助类。在这种情况下,是否需要在清单文件中注册此类?或者因为这个类没有显示UI或扩展任何UI类,我可以将它从清单中删除而不会导致问题吗?
<activity android:name=".TestClass">
<intent-filter >
<action android:name="com.example.TESTCLASS"/>
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
答案 0 :(得分:1)