• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.android.settings.applications;
2 
3 import android.content.Intent;
4 import android.preference.PreferenceActivity;
5 
6 public class InstalledAppDetailsTop extends PreferenceActivity {
7     @Override
getIntent()8     public Intent getIntent() {
9         Intent modIntent = new Intent(super.getIntent());
10         modIntent.putExtra(EXTRA_SHOW_FRAGMENT, InstalledAppDetails.class.getName());
11         modIntent.putExtra(EXTRA_NO_HEADERS, true);
12         return modIntent;
13     }
14 }
15