summaryrefslogtreecommitdiffstats
path: root/src/com/android/settings/applications/InstalledAppDetailsTop.java
blob: 4051aeba767d9f9a1ddd6465e008be196c4ccc96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
    }
}