Files
app_Settings/src/com/android/settings/applications/InstalledAppDetailsTop.java
Patrick Dubroy 0c5b9ca58b fix 3185231: Dragging app to info button doesn't work
When dragging an app from all apps to the info button, it
is currently showing an empty dialog.
2011-01-05 15:28:21 -08:00

15 lines
463 B
Java

package com.android.settings.applications;
import android.content.Intent;
import android.preference.PreferenceActivity;
public class InstalledAppDetailsTop extends PreferenceActivity {
@Override
public Intent getIntent() {
Intent modIntent = new Intent(super.getIntent());
modIntent.putExtra(EXTRA_SHOW_FRAGMENT, InstalledAppDetails.class.getName());
modIntent.putExtra(EXTRA_NO_HEADERS, true);
return modIntent;
}
}