I set up some Alias for an activity with different meta-data.
In this meta-data I set the name of the fragment which I then load by reflection.
I don\'t know if
To specify the alias, you need to use setComponent(ComponentName)
on an empty Intent() object.
I tend to set the manifest entry to be a relative name
<activity-alias
android:name=".ActivityListItem"
(note the period at the beginning of the name), and then form the ComponentName for the Intent using
Intent intent = new Intent();
String packageName = context.getPackageName();
ComponentName componentName = new ComponentName(packageName,
packageName + ".ActivityListItem");
intent.setComponent(componentName);