Je suis venu avec cette approche (Note: ceci est modélisé d'après la Google I/O de la Session 2012 app UIUtilis.java):
Dans l' AndroidManifest.xml
définir Activity
s pour inclure l' <meta-data>
:
<!-- Note: specify the target device for Activities with target_device meta-data of "universal|phone|tablet"
see UIUtils.java (configureDeviceSpecificActivities) for more details. -->
<!-- Activities for both phones and tablets -->
<activity android:name=".ui.AccountActivity"
android:configChanges="orientation|keyboardHidden"
android:label="@string/app_name"
android:theme="@style/Theme.Accounts">
<meta-data android:name="target_device" android:value="universal"/>
</activity>
<!-- Activities for tablets -->
<activity android:name=".ui.CoolMultipaneActivity"
android:label="@string/app_name">
<meta-data android:name="target_device" android:value="tablet"/>
Le travail dur est de mettre dans la méthode de configureDeviceSpecificActivities(Context context)
/**
* Enables and disables {@linkplain android.app.Activity activities} based on their "target_device" meta-data and
* the current device. Add <meta-data name="target_device" value="tablet|phone|universal" /> to an activity to
* specify its target device.
* @param context the current context of the device
* @see #isHoneycombTablet(android.content.Context)
*/
public static void configureDeviceSpecificActivities(Context context) {
final PackageManager package_manager = context.getPackageManager();
final boolean is_honeycomb_tablet = isHoneycombTablet(context);
try {
final ActivityInfo[] activity_info = package_manager.getPackageInfo(context.getPackageName(),
PackageManager.GET_ACTIVITIES | PackageManager.GET_META_DATA).activities;
for (ActivityInfo info : activity_info) {
final String target_device = info.metaData.getString("target_device");
if (target_device == null) break;
target_device = target_device.toLowerCase(Locale.US);
final boolean is_for_tablet = target_device.equals("tablet");
final boolean is_for_phone = target_device.equals("phone");
final String class_name = info.name;
package_manager.setComponentEnabledSetting(new ComponentName(context, Class.forName(class_name)),
is_honeycomb_tablet && is_for_phone
? PackageManager.COMPONENT_ENABLED_STATE_DISABLED
: !is_honeycomb_tablet && is_for_tablet
? PackageManager.COMPONENT_ENABLED_STATE_DISABLED
: PackageManager.COMPONENT_ENABLED_STATE_ENABLED,
PackageManager.DONT_KILL_APP);
}
} catch (PackageManager.NameNotFoundException error) {
Ln.w(error.getCause());
} catch (ClassNotFoundException error) {
Ln.w(error.getCause());
}
}
fait amusant: il ne fonctionne pas sans l' GET_META_DATA
drapeau, comme l' metaData
retourne toujours null si vous n'incluez pas cette balise.
La dernière touche est d'appeler cette méthode, probablement dans l' onCreate
de votre premier Activity
@Override
protected void onCreate(Bundle icicle) {
super.onCreate(icicle);
// Anything else you want to do in the onCreate callback
// Set up to use the appropriate Activities for the given device
UIUtils.configureDeviceSpecificActivities(this);
}
Maintenant vous pouvez avoir Activity
s qui sont spécialement conçus pour les téléphones et les tablettes pour les moments où simplement en changeant la mise en page et peut-être, y compris plus d' Fragment
s n'est pas suffisant.
REMARQUE: final String class_name = info.packageName + info.name;
pourrait être final String class_name = info.name;
si vous voyez un message d'avertissement.
NOTE(2): final String target_device = info.metaData.getString("target_device", "").toLowerCase();
devrait être pour la compatibilité descendante passé API 12.
String target_device = info.metaData.getString("target_device");
if (target_device == null) break;
target_device = target_device.toLowerCase();
REMARQUE(3): target_device.toLowerCase();
utilise les paramètres régionaux par défaut implicitement. Utiliser target_device.toLowerCase(Locale.US)
à la place. Et faites toutes les modifications dans le code ci-dessus.