这两种设置 android:name 字段的方式有什么区别?
我看到了这两种类型,不知道为什么它们是用这两种不同的方式写的
我经常看到的一种方式是(注意“”和“服务器”之间的“。”):
android:name=".Server"
没有额外的“。”的另一种方式 姓名前:
android:name="Server"
示例 xml
<service
android:name=".Server"
android:icon="@drawable/ic_launcher"
android:label="audioservice"
android:process=":my_process" >
</service>
<activity android:name=".DBView">
<intent-filter >
<action android:name="com.example.test.DBVIEW"/>
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>