本文整理汇总了Java中android.support.design.widget.AppBarLayout.setElevation方法的典型用法代码示例。如果您正苦于以下问题:Java AppBarLayout.setElevation方法的具体用法?Java AppBarLayout.setElevation怎么用?Java AppBarLayout.setElevation使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.support.design.widget.AppBarLayout
的用法示例。
在下文中一共展示了AppBarLayout.setElevation方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onCreate
import android.support.design.widget.AppBarLayout; //导入方法依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (provideContentViewId() != 0) {
setContentView(provideContentViewId());
} else if (provideContentViewLayout() != null) {
setContentView(provideContentViewLayout());
} else {
throw new IllegalStateException("No main layout, you should set provideContentViewId or provideContentViewLayout");
}
mAppBar = (AppBarLayout) findViewById(R.id.toolbar_layout);
mToolbar = (Toolbar) findViewById(R.id.toolbar);
if (mToolbar == null || mAppBar == null) {
throw new IllegalStateException("No toolbar");
}
setSupportActionBar(mToolbar);
if (isCanBack()) {
ActionBar actionBar = getSupportActionBar();
if (actionBar != null) actionBar.setDisplayHomeAsUpEnabled(true);
}
//设置ToolBar下面的阴影
if (Build.VERSION.SDK_INT >= 21) {
mAppBar.setElevation(0);//10.6f
}
}
示例2: showElevation
import android.support.design.widget.AppBarLayout; //导入方法依赖的package包/类
public void showElevation(AppBarLayout appBarLayout) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
appBarLayout.setElevation(10);
}
}
示例3: removeEvelation
import android.support.design.widget.AppBarLayout; //导入方法依赖的package包/类
public void removeEvelation(AppBarLayout appBarLayout) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
appBarLayout.setElevation(0);
}
}