I am facing very strange issue with android manifest file.
我就这样说了。
<application android:icon="@drawable/icon" android:label="TestApplication">
<activity android:name=".Test" android:label="Test" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
Then in that case the name of my application is "TestApplication" which should be appear on the device menu with icon. The name of launcher activity is "Test" which should be appear on the Title Bar when application launches.
但是,问题在于申请中显示“试验”作为申请国名,而申请国名是“申请”。
I am so stuck that why it is showing the launcher activity name as application name however i have specified the application name explicitly.....
请解决这个问题
增 编
Nikhil