Back to project page AppInspector.
The source code is released under:
GNU General Public License
If you think the Android project AppInspector listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (C) 2011-2012 Projectoria Ltd. * This file is part of App Inspector.//from w ww. ja v a2 s. c om * * App Inspector is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Foobar is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Foobar. If not, see <http://www.gnu.org/licenses/>. */ package bg.projectoria.appinspector; import android.content.Intent; import android.net.Uri; import android.os.Bundle; import android.view.View; import bg.projectoria.appinspector.AppsListFragment.OnAppSelectedListener; import com.actionbarsherlock.app.SherlockFragmentActivity; import com.actionbarsherlock.view.Menu; import com.actionbarsherlock.view.MenuItem; public class Main extends SherlockFragmentActivity implements OnAppSelectedListener{ private boolean isDual = false; private AppDetailsFragment detailsFragment = null; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); detailsFragment = (AppDetailsFragment) getSupportFragmentManager().findFragmentById(R.id.app_details); View detailsView = findViewById(R.id.app_details); if(detailsView != null && detailsView.getVisibility() == View.VISIBLE){ isDual = true; detailsFragment.getListView().setBackgroundResource(R.drawable.details_background); } } @Override public boolean onCreateOptionsMenu(Menu menu) { super.onCreateOptionsMenu(menu); menu .add(Menu.CATEGORY_CONTAINER, About.MENU_ABOUT, Menu.FIRST, "About") .setIcon(android.R.drawable.ic_menu_info_details) .setShowAsAction(MenuItem.SHOW_AS_ACTION_IF_ROOM); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { case About.MENU_ABOUT: startActivity(new Intent(this, About.class)); return true; } return false; } @Override public void onAppSelected(Uri uri, boolean savedState) { if(!isDual){ if(!savedState) { Intent i = new Intent(this, AppDetails.class); i.setData(uri); startActivity(i); } return; } detailsFragment.showDetails(uri); } }