本文整理汇总了Java中com.example.jingbin.cloudreader.utils.ToastUtil类的典型用法代码示例。如果您正苦于以下问题:Java ToastUtil类的具体用法?Java ToastUtil怎么用?Java ToastUtil使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
ToastUtil类属于com.example.jingbin.cloudreader.utils包,在下文中一共展示了ToastUtil类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: isOtherType
import com.example.jingbin.cloudreader.utils.ToastUtil; //导入依赖的package包/类
private boolean isOtherType(String selectType) {
String clickText = SPUtils.getString("gank_cala", "全部");
if (clickText.equals(selectType)) {
ToastUtil.showToast("当前已经是" + selectType + "分类");
return false;
} else {
// 重置XRecyclerView状态,解决 如出现刷新到底无内容再切换其他类别后,无法上拉加载的情况
bindingView.xrvCustom.reset();
return true;
}
}
示例2: initTitle
import com.example.jingbin.cloudreader.utils.ToastUtil; //导入依赖的package包/类
private void initTitle() {
StatusBarUtil.setColor(this, CommonUtils.getColor(R.color.colorTheme), 0);
mProgressBar = (ProgressBar) findViewById(R.id.pb_progress);
webView = (WebView) findViewById(R.id.webview_detail);
videoFullView = (FrameLayout) findViewById(R.id.video_fullView);
mTitleToolBar = (Toolbar) findViewById(R.id.title_tool_bar);
setSupportActionBar(mTitleToolBar);
ActionBar actionBar = getSupportActionBar();
if (actionBar != null) {
//去除默认Title显示
actionBar.setDisplayShowTitleEnabled(false);
actionBar.setDisplayShowTitleEnabled(false);
actionBar.setDisplayHomeAsUpEnabled(true);
actionBar.setHomeAsUpIndicator(R.drawable.icon_back);
}
setTitle(mTitle);
mTitleToolBar.setOverflowIcon(ContextCompat.getDrawable(this, R.drawable.actionbar_more));
mTitleToolBar.setNavigationOnClickListener(v -> onBackPressed());
mTitleToolBar.setOnMenuItemClickListener(item -> {
switch (item.getItemId()) {
case R.id.actionbar_share:// 分享到
String shareText = mWebChromeClient.getTitle() + mUrl + "(分享自云阅)";
ShareUtils.share(WebViewActivity.this, shareText);
break;
case R.id.actionbar_cope:// 复制链接
BaseTools.copy(mUrl);
ToastUtil.showToast("复制成功");
break;
case R.id.actionbar_open:// 打开链接
BaseTools.openLink(WebViewActivity.this, mUrl);
break;
default:
break;
}
return false;
});
}
示例3: isOtherType
import com.example.jingbin.cloudreader.utils.ToastUtil; //导入依赖的package包/类
private boolean isOtherType(String selectType) {
String clickText = SPUtils.getString(GANK_CALA, "全部");
if (clickText.equals(selectType)) {
ToastUtil.showToast("当前已经是" + selectType + "分类");
return false;
} else {
// 重置XRecyclerView状态,解决 如出现刷新到底无内容再切换其他类别后,无法上拉加载的情况
bindingView.xrvCustom.reset();
return true;
}
}
示例4: initTitle
import com.example.jingbin.cloudreader.utils.ToastUtil; //导入依赖的package包/类
private void initTitle() {
StatusBarUtil.setColor(this, CommonUtils.getColor(R.color.colorTheme), 0);
mProgressBar = (ProgressBar) findViewById(R.id.pb_progress);
webView = (WebView) findViewById(R.id.webview_detail);
videoFullView = (FrameLayout) findViewById(R.id.video_fullView);
mTitleToolBar = (Toolbar) findViewById(R.id.title_tool_bar);
setSupportActionBar(mTitleToolBar);
ActionBar actionBar = getSupportActionBar();
if (actionBar != null) {
//去除默认Title显示
actionBar.setDisplayShowTitleEnabled(false);
actionBar.setDisplayShowTitleEnabled(false);
actionBar.setDisplayHomeAsUpEnabled(true);
actionBar.setHomeAsUpIndicator(R.drawable.icon_back);
}
setTitle(mTitle);
mTitleToolBar.setOverflowIcon(ContextCompat.getDrawable(this, R.drawable.actionbar_more));
mTitleToolBar.setNavigationOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onBackPressed();
}
});
mTitleToolBar.setOnMenuItemClickListener(new Toolbar.OnMenuItemClickListener() {
@Override
public boolean onMenuItemClick(MenuItem item) {
switch (item.getItemId()) {
case R.id.actionbar_share:// 分享到
String shareText = mWebChromeClient.getTitle() + mUrl + "(分享自云阅)";
ShareUtils.share(WebViewActivity.this, shareText);
break;
case R.id.actionbar_cope:// 复制链接
BaseTools.copy(mUrl);
ToastUtil.showToast("复制成功");
break;
case R.id.actionbar_open:// 打开链接
BaseTools.openLink(WebViewActivity.this, mUrl);
break;
}
return false;
}
});
}