This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
final Toolbar toolbar = (Toolbar) findViewById(R.id.activity_main_toolbar); | |
//toolbar.setTitle("This is toolbar title"); | |
toolbar.setTitleTextAppearance(getBaseContext(), R.style.AppTheme_TextStyle); | |
//toolbar.setSubtitle("This is toolbar Subtitle"); | |
toolbar.setSubtitleTextAppearance(getBaseContext(), R.style.AppTheme_TextStyle); | |
toolbar.inflateMenu(R.menu.menu_main); | |
ShareActionProvider bob = (ShareActionProvider) MenuItemCompat.getActionProvider(toolbar.getMenu().findItem(R.id.share_test)); | |
Intent intent = new Intent(Intent.ACTION_SEND); | |
intent.setType("text/plain"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
actions=true | |
ads=true | |
analytics=true | |
appindexing=true | |
appstate=true | |
auth=true | |
cast=true | |
common=true | |
drive=false | |
dynamic=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# Authors: Olivier Grisel <[email protected]> | |
# Mathieu Blondel <[email protected]> | |
# Lars Buitinck <[email protected]> | |
# Robert Layton <[email protected]> | |
# Jochen Wersdörfer <[email protected]> | |
# Roman Sinayev <[email protected]> | |
# | |
# License: BSD 3 clause | |
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
####### start emulators script: | |
#!/bin/bash | |
export PATH=$ANDROID_HOME/tools/:$ANDROID_HOME/platform-tools/:$PATH | |
echo "Android HOME : $ANDROID_HOME" | |
echo "Android SDK HOME : $ANDROID_SDK_HOME" | |
echo "PATH : $PATH" | |
`dirname $0`/kill_android_emulators.sh |
NewerOlder