本文整理匯總了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);
}
}