В гарантии отказывают, повторяют "что-то же ее сожгло".А на что тогда распространяется гарантия?
// показываем нужный фрагмент
private void showFragment(Fragment fragment) {
FragmentManager fm = getSupportFragmentManager();
FragmentTransaction transaction = fm.beginTransaction();
if (fm.findFragmentByTag(TAG) == null) {
transaction.add(R.id.activity_content, fragment, TAG);
} else if (fragment.getClass().equals(fm.findFragmentByTag(TAG).getClass())){
transaction.show(fragment);
} else {
transaction.replace(R.id.activity_content, fragment, TAG);
}
//transaction.addToBackStack(fragment.getClass().getName());
transaction.commit();
}
Radeon™ серии R7 300, R9 295X2, R9 280X, R9 280, R9 270X, R9 270, R7 265, HD 8700 - HD 8900 и HD 7900
runas /profile /user:<username> <program>
<sipLines>
<line
button="1">
<featureID>9</featureID>
<featureLabel>Hello world</featureLabel>
<proxy>ip-sip-servera.celecom.ru</proxy>
<?xml version="1.0" encoding="utf-8" ?>
<dialplan>
<template match="*" timeout="2"/>
</dialplan>
new RecyclerItemClickListener(getActivity(), rv ,new RecyclerItemClickListener.OnItemClickListener() {
@Override public void onItemClick(View view, int position) {
// do whatever
usr = adapter.getItem(position);
Context context=view.getContext();
Intent intent = new Intent(context, DetailActivity.class);
context.startActivity(intent);
}
Intent intent = getIntent();
Bundle bundle = intent.getExtras();
if(bundle != null){
// здесь достаем из bundle данные
}