海拔不适用于 android 搜索栏
Elevation not working on android seekbar
搜索栏似乎忽略了高度?有什么办法得到它运行?我已经将嵌入视图的背景更改为纯色,但没有帮助。
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white">
<SeekBar
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="4dp" />
</RelativeLayout>
经过大量测试后,我决定将 SeekBar 嵌入到包装器视图中,并提升了包装器而不是搜索栏。不那么酷,但有效。
搜索栏似乎忽略了高度?有什么办法得到它运行?我已经将嵌入视图的背景更改为纯色,但没有帮助。
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white">
<SeekBar
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="4dp" />
</RelativeLayout>
经过大量测试后,我决定将 SeekBar 嵌入到包装器视图中,并提升了包装器而不是搜索栏。不那么酷,但有效。