use of android.support.v7.graphics.drawable.DrawerArrowDrawable in project floatingsearchview by arimorty.
the class FloatingSearchView method initDrawables.
private void initDrawables() {
mMenuBtnDrawable = new DrawerArrowDrawable(getContext());
mIconClear = Util.getWrappedDrawable(getContext(), R.drawable.ic_clear_black_24dp);
mIconBackArrow = Util.getWrappedDrawable(getContext(), R.drawable.ic_arrow_back_black_24dp);
mIconSearch = Util.getWrappedDrawable(getContext(), R.drawable.ic_search_black_24dp);
}
use of android.support.v7.graphics.drawable.DrawerArrowDrawable in project Rocket.Chat.Android by RocketChat.
the class MainActivity method setupSidebar.
private void setupSidebar() {
SlidingPaneLayout pane = (SlidingPaneLayout) findViewById(R.id.sliding_pane);
if (pane == null) {
return;
}
final SlidingPaneLayout subPane = (SlidingPaneLayout) findViewById(R.id.sub_sliding_pane);
pane.setPanelSlideListener(new SlidingPaneLayout.SimplePanelSlideListener() {
@Override
public void onPanelClosed(View panel) {
super.onPanelClosed(panel);
if (subPane != null) {
subPane.closePane();
}
}
});
final DrawerArrowDrawable drawerArrowDrawable = new DrawerArrowDrawable(this);
Toolbar toolbar = (Toolbar) findViewById(R.id.activity_main_toolbar);
toolbar.setNavigationIcon(drawerArrowDrawable);
toolbar.setNavigationOnClickListener(view -> {
if (pane.isSlideable() && !pane.isOpen()) {
pane.openPane();
}
});
//ref: ActionBarDrawerToggle#setProgress
pane.setPanelSlideListener(new SlidingPaneLayout.PanelSlideListener() {
@Override
public void onPanelSlide(View panel, float slideOffset) {
drawerArrowDrawable.setProgress(slideOffset);
}
@Override
public void onPanelOpened(View panel) {
drawerArrowDrawable.setVerticalMirror(true);
}
@Override
public void onPanelClosed(View panel) {
drawerArrowDrawable.setVerticalMirror(false);
}
});
}
use of android.support.v7.graphics.drawable.DrawerArrowDrawable in project Rashr by DsLNeXuS.
the class RashrActivity method onCreate.
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Const.FilesDir = mContext.getFilesDir();
Const.RashrLog = new File(Const.FilesDir, Const.LOG_NAME);
//isDark = Common.getBooleanPref(mContext, Const.PREF_NAME, Const.PREF_KEY_DARK_UI);
setTheme(R.style.Rashr);
setContentView(R.layout.loading_layout);
ActivityCompat.requestPermissions(this, new String[] { Manifest.permission.WRITE_EXTERNAL_STORAGE }, 0);
final TextView tvLoading = (TextView) findViewById(R.id.tvLoading);
final Thread StartThread = new Thread(new Runnable() {
@Override
public void run() {
/* Checking if version has changed */
final int previous_version = Common.getIntegerPref(mContext, Const.PREF_NAME, Const.PREF_KEY_CUR_VER);
mVersionChanged = BuildConfig.VERSION_CODE > previous_version;
Common.setIntegerPref(mContext, Const.PREF_NAME, Const.PREF_KEY_CUR_VER, BuildConfig.VERSION_CODE);
/* Try to get root access */
try {
RashrApp.SHELL = startShell();
File logs = new File(mContext.getFilesDir(), Const.Logs);
RashrApp.SHELL.setLogFile(logs);
RashrApp.TOOLBOX = new Toolbox(RashrApp.SHELL);
} catch (IOException e) {
String message;
if (e.toString() != null) {
message = e.toString();
} else {
message = "Shell could not be started. Error: " + e.toString();
}
RashrApp.ERRORS.add(Const.RASHR_TAG + " " + message);
mActivity.runOnUiThread(new Runnable() {
@Override
public void run() {
setContentView(R.layout.err_layout);
}
});
return;
}
/* Creating needed folder and unpacking files */
mActivity.runOnUiThread(new Runnable() {
@Override
public void run() {
if (tvLoading != null)
tvLoading.setText(R.string.loading_data);
}
});
if (Const.PathToTmp.exists()) {
Common.deleteFolder(Const.PathToTmp, true);
}
for (File i : Folder) {
if (!i.exists()) {
if (!i.mkdirs()) {
RashrApp.ERRORS.add(Const.RASHR_TAG + " " + i + " can't be created!");
}
}
}
try {
extractFiles();
} catch (IOException e) {
RashrApp.ERRORS.add("Failed to extract files. Error: " + e);
mActivity.runOnUiThread(new Runnable() {
@Override
public void run() {
Toast.makeText(mContext, R.string.failed_unpack_files, Toast.LENGTH_LONG).show();
}
});
}
try {
File LogCopy = new File(mContext.getFilesDir(), Const.LastLog.getName() + ".txt");
RashrApp.SHELL.execCommand(Const.Busybox + " chmod 777 " + Const.LastLog);
if (LogCopy.exists())
LogCopy.delete();
RashrApp.SHELL.execCommand(Const.Busybox + " cp " + Const.LastLog + " " + LogCopy);
RashrApp.SHELL.execCommand(Const.Busybox + " chmod 777 " + LogCopy);
ApplicationInfo info = getApplicationInfo();
RashrApp.SHELL.execCommand(Const.Busybox + " chown " + info.uid + ":" + info.uid + " " + LogCopy);
RashrApp.SHELL.execCommand(Const.Busybox + " chmod 777 " + LogCopy);
LastLogExists = LogCopy.exists();
} catch (FailedExecuteCommand e) {
RashrApp.ERRORS.add(Const.RASHR_TAG + " LastLog not found: " + e);
}
mActivity.runOnUiThread(new Runnable() {
@Override
public void run() {
checkAppUpdates();
if (tvLoading != null)
tvLoading.setText(R.string.reading_device);
}
});
if (!RashrApp.DEVICE.isSetup()) {
String pref_dev_name = Common.getStringPref(mContext, Const.PREF_NAME, Const.PREF_KEY_DEVICE_NAME);
RashrApp.DEVICE.setup(pref_dev_name);
}
/* If device is not supported, you can report it now or close the App */
if ((!RashrApp.DEVICE.isRecoverySupported() && !RashrApp.DEVICE.isKernelSupported()) || BuildConfig.DEBUG) {
mActivity.runOnUiThread(new Runnable() {
@Override
public void run() {
showDeviceNotSupportedDialog();
}
});
} else {
Common.setBooleanPref(mContext, Const.PREF_NAME, Const.PREF_KEY_SHOW_UNIFIED, true);
if (!Common.getBooleanPref(mContext, Const.PREF_NAME, Const.PREF_KEY_FIRST_RUN)) {
firstSetup(mContext);
mActivity.runOnUiThread(new Runnable() {
@Override
public void run() {
showUsageWarning();
}
});
}
}
mActivity.runOnUiThread(new Runnable() {
@Override
public void run() {
try {
mRoot = (DrawerLayout) View.inflate(mContext, R.layout.activity_rashr, null);
mRoot.startAnimation(AnimationUtils.loadAnimation(mContext, R.anim.abc_fade_in));
setContentView(mRoot);
mToolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(mToolbar);
mNavigationView = (NavigationView) findViewById(R.id.navigation_view);
mDrawerToggle = new ActionBarDrawerToggle(mActivity, mRoot, mToolbar, R.string.app_name, R.string.app_name);
DrawerArrowDrawable coloredArrow = new DrawerArrowDrawable(mContext);
TypedValue typedValue = new TypedValue();
Resources.Theme theme = getTheme();
theme.resolveAttribute(R.attr.colorAccent, typedValue, true);
coloredArrow.setColor(typedValue.data);
mDrawerToggle.setDrawerArrowDrawable(coloredArrow);
mRoot.addDrawerListener(mDrawerToggle);
mDrawerToggle.syncState();
mNavigationView.setNavigationItemSelectedListener(mActivity);
AdView ads = (AdView) findViewById(R.id.ads);
if (ads != null) {
if (Common.getBooleanPref(mContext, Const.PREF_NAME, Const.PREF_KEY_ADS)) {
ads.loadAd(new AdRequest.Builder().addTestDevice("7DE4544A9DF140825046328923A50A91").build());
}
}
if (getIntent().getAction().equals(Intent.ACTION_VIEW)) {
/* Rashr is opened by other app to flash supported files (.zip) or (.img) */
File file = new File(getIntent().getData().getPath());
if (file.exists()) {
if (file.toString().endsWith(Device.EXT_ZIP)) {
/* If it is a zip file open the ScriptManager */
switchTo(ScriptManagerFragment.newInstance(mActivity, file));
} else {
/* If it is a img file open FlashAs to choose mode (recovery or kernel) */
switchTo(FlashAsFragment.newInstance(mActivity, file, true));
}
}
} else {
onNavigationItemSelected(mNavigationView.getMenu().getItem(0));
}
} catch (NullPointerException e) {
setContentView(R.layout.err_layout);
RashrApp.ERRORS.add("Error while inflating layout:" + e);
AppCompatTextView tv = (AppCompatTextView) findViewById(R.id.tvErr);
try {
if (tv != null) {
tv.setText(R.string.failed_setup_layout);
}
} catch (RuntimeException ex) {
RashrApp.ERRORS.add(Const.RASHR_TAG + e);
ReportDialog dialog = new ReportDialog(mActivity, e.toString());
dialog.show();
ex.printStackTrace();
}
ReportDialog dialog = new ReportDialog(mActivity, e.toString());
dialog.show();
e.printStackTrace();
}
}
});
}
});
StartThread.start();
}
Aggregations