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