android:name フィールドを設定するこれら 2 つの方法の違いは何ですか?
両方のタイプを見ましたが、なぜこれらの 2 つの異なる方法で書かれているのかわかりません
私がよく目にする 1 つの方法は (" と "Server" の間の "." に注意してください):
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>