git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
Button actionLauncherButton = (Button) findViewById(R.id.action_launcher_button); | |
actionLauncherButton.setOnClickListener(new View.OnClickListener() { | |
@Override | |
public void onClick(View v) { | |
// Check Action Launcher is installed | |
Intent intent = getPackageManager().getLaunchIntentForPackage("com.actionlauncher.playstore"); | |
if (intent != null) { | |
// TODO BY YOU: set this package name as appropriate. Eg "kov.theme.stark" | |
String yourPackageName = ; |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script> | |
<script type="text/javascript"> | |
jQuery(document).ready(function(){ | |
jQuery('ul.tab-nav li').click(function(e){ | |
var tab_id = jQuery(this).attr('id'); | |
jQuery('ul.tab-nav li').removeClass('active'); | |
$(this).addClass('active'); | |
jQuery('.tab-container div.tab').hide(); | |
jQuery('.tab-container div#' + tab_id + '-tab').show(); | |
}); |