我正在尝试模拟一个为它添加一些额外布局的大型AppBar。
为此,我在AppBar下面放置一个布局并为其指定相同的颜色,但是我得到了高度阴影,如下图所示:
我尝试为我的布局配置一个4dp高程(我也试过8dp)以避免阴影,但它不会消失。
如何让阴影去模拟一个大的AppBar?
非常感谢。
答案 0 :(得分:1)
试试这个:
Import numpy as np re
df['c']=np.where(df['a']<df['b'], \
df['a'].astype('str')+"_"+df['b'].astype('str'), \
df['b'].astype('str')+"_"+df['a'].astype('str'))
print(len(df.drop_duplicates('c')))
或者您可以创建自己的视图并将其用作操作栏,如下面的答案:
答案 1 :(得分:1)
在布局的xml文件中,如果添加AppBarLayout标记,则可以定义高程并将其设置为0dp
<android.support.design.widget.AppBarLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
app:elevation="0dp"></android.support.design.widget.AppBarLayout>