While browsing the Android developer docs I spotted example code where references to classes/packages are preceded by periods.
In the snippet below from http://developer.android.com/guide/topics/search/search-dialog.html there is ".SearchableActivity"
<application ... >
<activity android:name=".SearchableActivity" >
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
<meta-data android:name="android.app.searchable"
android:resource="@xml/searchable"/>
</activity>
...
</application>
Another example - http://developer.android.com//training/sharing/receive.html - has ".ui.MyActivity"
<activity android:name=".ui.MyActivity" >
What do these preceding "." imply, and when/why should/would you use one? What happens if they are ommited?