我已经玩了L预览了几天,而且似乎不起作用的一件事是视图的android:elevation
属性。它在调用View.setElevation()
时工作得很好,但它似乎忽略了XML属性。我使用的是Android Studio 0.8.2,minSdkVersion
和targetSdkVersion
设置为'L'
,compileSdkVersion
设置为'android-L'
。 buildToolsVersion
是"20.0.0"
。这是一个无法正常工作的示例布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:layout_margin="10dp"
android:elevation="5dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="top"/>
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:layout_margin="10dp"
android:elevation="0dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="bottom"/>
</android.support.v7.widget.CardView>
</LinearLayout>
以下是结果的屏幕截图:imgur.com/mqeq9vK
根据我设置的android:elevation
,底部卡片应该在地面上平放,但它不是。事实上,它看起来与顶级卡片的升高没有什么不同5dp
。这是一个已知问题,它对你有用吗?
编辑:似乎只有CardView
的情况,或者至少它不是Buttons
的问题。在这个布局中,我将CardView
替换为Button
,即使阴影有点搞砸(已知错误),您仍然可以看到高程差异。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:elevation="2dp"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:elevation="1dp"/>
</LinearLayout>
编辑2:它已经确认此问题仅影响CardView
,android:elevation
适用于任何其他视图。有关为何发生这种情况的详细说明,请查看已接受的答案。与此同时,我的解决方法是将CardView
替换为FrameLayout
并将android:background
设置为drawable。以下是可用的卡背景可绘制的示例:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<solid android:color="#fff" />
</shape>
我还将此作为错误提交,因此如果它影响您,请将此问题归档。 https://code.google.com/p/android-developer-preview/issues/detail?id=731
答案 0 :(得分:8)
CardView在初始化期间设置自己的高程,它将覆盖您从XML设置的任何内容。你应该在https://code.google.com/p/android-developer-preview/wiki/FilingIssues?tm=3
将其归档为错误@Override
public void initialize(CardViewDelegate cardView, Context context, int backgroundColor,
float radius) {
cardView.setBackgroundDrawable(new RoundRectDrawable(backgroundColor, radius));
View view = (View) cardView;
view.setClipToOutline(true);
view.setElevation(context.getResources().getDimension(R.dimen.cardview_elevation));
}
答案 1 :(得分:3)
请使用cardElevation属性在CardView上设置高程。这也将影响前L的阴影大小。
另外,请参阅documentation了解其他属性。
答案 2 :(得分:1)
请在根目录中添加
xmlns:card_view="http://schemas.android.com/apk/res-auto"
下面是cardview的代码
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
card_view:cardElevation="10dp"
android:id="@+id/view" >
.
.
.
.
.
Child
.
.
.
.
</android.support.v7.widget.CardView>
答案 3 :(得分:0)
在bug修复程序发布之前,您可以通过编程方式进行设置。
我已经在RecyclerView
这样做了:
在RecyclerView.Adapter中:
public class MyAdapter extends RecyclerView.Adapter<TripsAdapter.ViewHolder> {
/* ... */
public class ViewHolder extends RecyclerView.ViewHolder {
CardView card;
public ViewHolder(View itemView) {
card = (CardView) itemView.findViewById(R.id.card_view);
}
}
/* ... */
@Override public void onBindViewHolder(ViewHolder holder, int position) {
/// ...
// Update Card Elevation
final float scale = mContext.getResources().getDisplayMetrics().density;
holder.card.setElevation(1f * scale); //TODO set this in xml once CardView elevation bug is fixed
}
}