本文整理汇总了Java中android.support.v7.app.AppCompatDialogFragment类的典型用法代码示例。如果您正苦于以下问题:Java AppCompatDialogFragment类的具体用法?Java AppCompatDialogFragment怎么用?Java AppCompatDialogFragment使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
AppCompatDialogFragment类属于android.support.v7.app包,在下文中一共展示了AppCompatDialogFragment类的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createSublimePicker
import android.support.v7.app.AppCompatDialogFragment; //导入依赖的package包/类
private void createSublimePicker() {
SublimePickerFragment pickerFrag = new SublimePickerFragment();
pickerFrag.setCallback(mFragmentCallback);
SublimeOptions options = new SublimeOptions();
options.setDisplayOptions(SublimeOptions.ACTIVATE_DATE_PICKER); // 设置显示什么选择器(日期,时间)
options.setPickerToShow(SublimeOptions.Picker.DATE_PICKER); // 设置显示什么选择器(日期,时间)
options.setCanPickDateRange(true); // 设置长按拖动进行日期范围选择
Bundle bundle = new Bundle();
bundle.putParcelable("SUBLIME_OPTIONS", options);
pickerFrag.setArguments(bundle);
pickerFrag.setStyle(AppCompatDialogFragment.STYLE_NO_TITLE, 0);
pickerFrag.show(getSupportFragmentManager(), "SUBLIME_PICKER");
}
示例2: createSublimePicker
import android.support.v7.app.AppCompatDialogFragment; //导入依赖的package包/类
private void createSublimePicker() {
SublimePickerFragment pickerFrag = new SublimePickerFragment();
pickerFrag.setCallback(mFragmentCallback);
SublimeOptions options = new SublimeOptions();
options.setDisplayOptions(SublimeOptions.ACTIVATE_DATE_PICKER); // 设置显示什么选择器(日期,时间)
options.setPickerToShow(SublimeOptions.Picker.DATE_PICKER); // 设置显示什么选择器(日期,时间)
options.setCanPickDateRange(false); // 设置长按拖动进行日期范围选择
Bundle bundle = new Bundle();
bundle.putParcelable("SUBLIME_OPTIONS", options);
pickerFrag.setArguments(bundle);
pickerFrag.setStyle(AppCompatDialogFragment.STYLE_NO_TITLE, 0);
pickerFrag.show(getSupportFragmentManager(), "SUBLIME_PICKER");
}
示例3: onCreate
import android.support.v7.app.AppCompatDialogFragment; //导入依赖的package包/类
@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
presenter = new Presenter(this);
//Prepare the Dialog
progressDialog = new ProgressDialog(getActivity());
progressDialog.setIndeterminate(true);
progressDialog.setCancelable(false);
setStyle(AppCompatDialogFragment.STYLE_NO_TITLE, R.style.AppTheme);
}
示例4: onCreateHomeScreenShortcut
import android.support.v7.app.AppCompatDialogFragment; //导入依赖的package包/类
@Override
public void onCreateHomeScreenShortcut(AppCompatDialogFragment dialogFragment) {
EditText shortcutNameEditText = dialogFragment.getDialog().findViewById(R.id.shortcut_name_edittext);
Intent intent1 = new Intent(getApplicationContext(), MainActivity.class);
intent1.setAction(Intent.ACTION_VIEW);
intent1.setData(Uri.parse(mSearchView.getText().toString()));
intent1.putExtra("duplicate", false);
ShortcutInfoCompat pinShortcutInfo = new ShortcutInfoCompat.Builder(MainActivity.this, webViewTitle)
.setShortLabel(shortcutNameEditText.getText().toString())
.setIcon(IconCompat.createWithBitmap(StaticUtils.getCircleBitmap(favoriteIcon)))
.setIntent(intent1)
.build();
ShortcutManagerCompat.requestPinShortcut(MainActivity.this, pinShortcutInfo, null);
}
示例5: onOptionsItemSelected
import android.support.v7.app.AppCompatDialogFragment; //导入依赖的package包/类
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
return true;
case R.id.action_about:
AppCompatDialogFragment frag = new AboutDialogFragment();
frag.show(getSupportFragmentManager(), "dialog1");
return true;
}
return super.onOptionsItemSelected(item);
}
示例6: onCreate
import android.support.v7.app.AppCompatDialogFragment; //导入依赖的package包/类
@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Bundle args = getArguments();
if (args != null) {
mPrompt = args.getString(KEY_PROMPT);
}
setStyle(AppCompatDialogFragment.STYLE_NO_FRAME, getTheme());
}
示例7: SessionListAdapter
import android.support.v7.app.AppCompatDialogFragment; //导入依赖的package包/类
public SessionListAdapter(final Context context, final URI url, final UUID current, SessionChangeListener.SessionChangeType type, final AppCompatDialogFragment fragment) {
this.context = context;
this.current = current;
this.type = type;
this.fragment = fragment;
sessions = new ArrayList<>(
CacheManager.getInstance(context).getSessions(url, RedditAccountManager.getInstance(context).getDefaultAccount()));
final TypedArray attr = context.obtainStyledAttributes(new int[]{R.attr.rrIconRefresh,});
rrIconRefresh = ContextCompat.getDrawable(context, attr.getResourceId(0, 0));
attr.recycle();
}
示例8: onOptionsItemSelected
import android.support.v7.app.AppCompatDialogFragment; //导入依赖的package包/类
@Override
public boolean onOptionsItemSelected(MenuItem item) {
int id = item.getItemId();
// setting menu activity is launched
if (id == R.id.action_settings) {
Intent settings = new Intent(this, SettingsActivity.class);
startActivity(settings);
return true;
}
// about activity is launched
if (id == R.id.action_about) {
AppCompatDialogFragment newFragment = AboutDialogFragment.newInstance();
newFragment.show(getSupportFragmentManager(), "dialog");
return true;
}
// connect action
if (id == R.id.action_connect) {
presenter.onConnectMenuClicked();
return true;
}
// clear all preset
if (id == R.id.action_clear_preset) {
new MaterialDialog.Builder(this)
.title("Clear all the presets?")
.content("This will clear all the guitarix presets stored on the device. Guitarix presets will remain intact. Do you wish to continue?")
.positiveText(R.string.agree)
.negativeText("Cancel")
.onPositive(new MaterialDialog.SingleButtonCallback() {
@Override
public void onClick(@NonNull MaterialDialog dialog, @NonNull DialogAction which) {
presenter.clearAllPreset();
}
})
.show();
return true;
}
return super.onOptionsItemSelected(item);
}
示例9: onCreate
import android.support.v7.app.AppCompatDialogFragment; //导入依赖的package包/类
@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setStyle(AppCompatDialogFragment.STYLE_NO_TITLE, R.style.AppTheme);
}
示例10: showFragment
import android.support.v7.app.AppCompatDialogFragment; //导入依赖的package包/类
public static void showFragment(Activity activity, Bundle bundle, AppCompatDialogFragment fragmentClass) {
FragmentTransaction ft = ((AppCompatActivity) activity).getSupportFragmentManager().beginTransaction();
fragmentClass.setArguments(bundle);
fragmentClass.show(ft, null);
}
示例11: onCreateHomeScreenShortcut
import android.support.v7.app.AppCompatDialogFragment; //导入依赖的package包/类
void onCreateHomeScreenShortcut(AppCompatDialogFragment dialogFragment);