本文整理汇总了Java中com.afollestad.assent.Assent类的典型用法代码示例。如果您正苦于以下问题:Java Assent类的具体用法?Java Assent怎么用?Java Assent使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Assent类属于com.afollestad.assent包,在下文中一共展示了Assent类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onClickFab
import com.afollestad.assent.Assent; //导入依赖的package包/类
@OnClick(R.id.fab)
public void onClickFab() {
if (!Assent.isPermissionGranted(Assent.WRITE_EXTERNAL_STORAGE)) {
Assent.requestPermissions(
results -> {
if (results.allPermissionsGranted()) {
request.send().subscribe();
} else {
Snackbar.make(rootView, R.string.permission_denied, Snackbar.LENGTH_LONG).show();
}
},
69,
Assent.WRITE_EXTERNAL_STORAGE);
return;
}
request.send().subscribe();
}
示例2: grantExternalStoragePermission
import com.afollestad.assent.Assent; //导入依赖的package包/类
public void grantExternalStoragePermission() {
if (!Assent.isPermissionGranted(Assent.WRITE_EXTERNAL_STORAGE)) {
Assent.requestPermissions(new AssentCallback() {
@Override
public void onPermissionResult(PermissionResultSet result) {
if (result.isGranted(Assent.WRITE_EXTERNAL_STORAGE)) {
startDownload();
} else {
Snackbar.make(ivPreview, R.string.please_accept_write_external_storage_permission, Snackbar.LENGTH_LONG).show();
}
}
}, 5, Assent.WRITE_EXTERNAL_STORAGE);
} else {
startDownload();
}
}
示例3: grantExternalStoragePermission
import com.afollestad.assent.Assent; //导入依赖的package包/类
private void grantExternalStoragePermission() {
if (!Assent.isPermissionGranted(Assent.WRITE_EXTERNAL_STORAGE)) {
Assent.requestPermissions(new AssentCallback() {
@Override
public void onPermissionResult(PermissionResultSet result) {
if (result.isGranted(Assent.WRITE_EXTERNAL_STORAGE)) {
startDownload();
} else {
Snackbar.make(ivPreview, R.string.please_accept_write_external_storage_permission, Snackbar.LENGTH_LONG).show();
}
}
}, 5, Assent.WRITE_EXTERNAL_STORAGE);
} else {
startDownload();
}
}
示例4: onCreate
import com.afollestad.assent.Assent; //导入依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_fragment);
// Sets this activity for Android M and up permissions.
Assent.setActivity(this, this);
// Gets fragment manager and current fragment in layout.
FragmentManager fragmentManager = getSupportFragmentManager();
Fragment fragment = fragmentManager.findFragmentById(R.id.fragment_container);
// Check if the fragment exists, if not it adds a new one.
if (fragment == null) {
fragment = MainFragment.newInstance();
fragmentManager.beginTransaction()
.add(R.id.fragment_container, fragment)
.commit();
}
}
示例5: onCreate
import com.afollestad.assent.Assent; //导入依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_setup);
((SpeculumApplication) getApplication()).createSetupComponent(this).inject(this);
ButterKnife.bind(this);
Assent.setActivity(this, this);
if (!Assent.isPermissionGranted(Assent.READ_CALENDAR)) {
Assent.requestPermissions(result -> {
// Permission granted or denied
if (!result.allPermissionsGranted()) {
Toast.makeText(SetupActivity.this, noPermissionForCalendar, Toast.LENGTH_SHORT).show();
}
}, 1, Assent.READ_CALENDAR);
}
cbVoiceCommands.setOnCheckedChangeListener(this);
rbSimpleLayout.setOnCheckedChangeListener(this);
}
示例6: onCheckedChanged
import com.afollestad.assent.Assent; //导入依赖的package包/类
@Override
@SuppressWarnings("all")
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (buttonView.getId() == R.id.cb_voice_commands) {
if (isChecked) {
if (!Assent.isPermissionGranted(Assent.RECORD_AUDIO)) {
Assent.requestPermissions(result -> {
// Permission granted or denied
if (!result.allPermissionsGranted()) {
Toast.makeText(SetupActivity.this, noPermissionForVoice, Toast.LENGTH_SHORT).show();
cbVoiceCommands.setChecked(false);
}
}, 2, Assent.RECORD_AUDIO);
}
}
} else {
if (isChecked) {
etSubreddit.setVisibility(View.GONE);
tvRedditTitle.setVisibility(View.GONE);
} else {
etSubreddit.setVisibility(View.VISIBLE);
tvRedditTitle.setVisibility(View.VISIBLE);
}
}
}
示例7: onCreate
import com.afollestad.assent.Assent; //导入依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
((SpeculumApplication) getApplication()).createMainComponent(this).inject(this);
Assent.setActivity(this, this);
Configuration configuration = objectStore.get();
boolean didLoadOldConfig = getIntent().getBooleanExtra(Constants.SAVED_CONFIGURATION_IDENTIFIER, false);
ViewStub viewStub = configuration.isSimpleLayout() ?
(ViewStub) findViewById(R.id.stub_simple) :
(ViewStub) findViewById(R.id.stub_verbose);
if (null != viewStub) viewStub.inflate();
ButterKnife.bind(this);
//never sleep
getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
if (didLoadOldConfig)
showConfigurationSnackbar();
presenter.setConfiguration(configuration);
}
示例8: onResume
import com.afollestad.assent.Assent; //导入依赖的package包/类
@Override
public void onResume() {
super.onResume();
Assent.setFragment(this, this);
mMapView.onResume();
if (isPlacesEnabled()) {
if (getView().getMeasuredHeight() == 0)
getView().post(new Runnable() {
@Override
public void run() {
prepareLayout(true);
}
});
else
prepareLayout(true);
}
askPermissions();
}
示例9: askPermissions
import com.afollestad.assent.Assent; //导入依赖的package包/类
private void askPermissions() {
if (!Assent.isPermissionGranted(Assent.ACCESS_COARSE_LOCATION) ||
!Assent.isPermissionGranted(Assent.ACCESS_FINE_LOCATION)) {
if (!mPermissionAsked) {
Assent.requestPermissions(this, REQUEST_PERMISSIONS,
Assent.ACCESS_COARSE_LOCATION,
Assent.ACCESS_FINE_LOCATION);
mPermissionAsked = true;
}
}
else {
if (mMap != null)
mMap.setMyLocationEnabled(true);
requestLocation();
}
}
示例10: onMapReady
import com.afollestad.assent.Assent; //导入依赖的package包/类
@Override
public void onMapReady(final AnyMap anyMap) {
super.onMapReady(anyMap);
if (SystemUtils.isPermissionGranted(getContext(), Assent.ACCESS_FINE_LOCATION)) {
@SuppressLint("MissingPermission")
Location lastLocation = mLocationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);
// Note that this can be NULL if last location isn't already known.
if (lastLocation != null) {
// Print current location if not null
Log.d(TAG, "last location: " + lastLocation.toString());
LatLng latLng = new LatLng(lastLocation.getLatitude(), lastLocation.getLongitude());
mMyLocation.setLatitude(lastLocation.getLatitude());
mMyLocation.setLongitude(lastLocation.getLongitude());
if (mMap != null)
mMap.animateCamera(CameraUpdateFactory.getInstance().newLatLngZoom(latLng, 16));
}
}
}
示例11: onResume
import com.afollestad.assent.Assent; //导入依赖的package包/类
@Override
public void onResume() {
super.onResume();
Assent.setFragment(this, this);
if (Authenticator.getDefaultAccount(getActivity()) == null) {
NumberValidation.start(getActivity());
getActivity().finish();
return;
}
// hold message center
MessageCenterService.hold(getActivity(), true);
ComposeMessage activity = getParentActivity();
if (activity == null || !activity.hasLostFocus() || activity.hasWindowFocus()) {
onFocus();
}
}
示例12: startRecording
import com.afollestad.assent.Assent; //导入依赖的package包/类
void startRecording() {
// ask parent to stop all sounds
if (mListener != null)
mListener.stopAllSounds();
if (!Assent.isPermissionGranted(Assent.READ_EXTERNAL_STORAGE) ||
!Assent.isPermissionGranted(Assent.WRITE_EXTERNAL_STORAGE) ||
!Assent.isPermissionGranted(Assent.RECORD_AUDIO)) {
Assent.requestPermissions(this, REQUEST_PERMISSIONS,
Assent.READ_EXTERNAL_STORAGE,
Assent.WRITE_EXTERNAL_STORAGE,
Assent.RECORD_AUDIO);
}
else {
doStartRecording();
}
}
示例13: onCreate
import com.afollestad.assent.Assent; //导入依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.scan_text_screen);
Assent.setActivity(this, this);
mScannerView = new ZXingScannerView(this);
List<BarcodeFormat> formats = Collections.singletonList(BarcodeFormat.QR_CODE);
mScannerView.setFormats(formats);
mScannerView.setAspectTolerance(0.5f);
ViewGroup contentFrame = findViewById(R.id.content);
contentFrame.addView(mScannerView);
setupToolbar(true, false);
setTitle(getIntent().getStringExtra("title"));
}
示例14: askPermissions
import com.afollestad.assent.Assent; //导入依赖的package包/类
private void askPermissions() {
if (mPermissionsAsked)
return;
if (!Assent.isPermissionGranted(Assent.READ_CONTACTS) ||
!Assent.isPermissionGranted(Assent.WRITE_CONTACTS)) {
Assent.requestPermissions(new AssentCallback() {
@Override
public void onPermissionResult(PermissionResultSet result) {
// we can go by write contacts denied, but not read contacts
if (!result.isGranted(Assent.READ_CONTACTS)) {
// just notify the user for now, we'll ask again later
error(R.string.err_validation_contacts_denied);
}
}
}, REQUEST_PERMISSIONS, Assent.READ_CONTACTS, Assent.WRITE_CONTACTS);
mPermissionsAsked = true;
}
}
示例15: onResume
import com.afollestad.assent.Assent; //导入依赖的package包/类
@Override
protected void onResume() {
super.onResume();
if (Authenticator.getDefaultAccount(this) == null) {
NumberValidation.start(this);
finish();
return;
}
Assent.setActivity(this, this);
// hold message center
MessageCenterService.hold(this, true);
mFragment.startQuery();
}