我有一个RecyclerView
,其中包含各种视图类型。每个视图都有自己的背景,顶部,底部或没有圆角。每个使用相同的视图高程。
这是XML
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:color="@color/card_background_pressed"
tools:targetApi="lollipop">
<item>
<shape>
<size
android:width="1dp"
android:height="1dp" />
<solid android:color="@color/card_background_normal" />
</shape>
</item>
</ripple>
当视图彼此相邻而没有任何边距时,它看起来像具有相同的背景。这是我创建动态卡背景的方式。换句话说,我可以在RecyclerView
问题
如下所示,当两个视图彼此相邻排列时,即使角落背景半径为0,它们的阴影也会在角落中相互重叠。
那么有谁知道如何修复它?我只关心API 21+,所以需要担心旧版本的支持。提前谢谢!
答案 0 :(得分:5)
我没有试过RippleDrawable
,但我认为这个想法是一样的。因此,让我们从一个简单的案例开始:
Android提供了一个名为ViewOutlineProvider的课程。您可以使用此类创建自己的阴影。对于您的问题,您可以为底部视图的阴影设置偏移,以便重叠区域由顶视图的阴影绘制。
请注意一些代码:
首先,我尝试使用此布局创建您的问题:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MainActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:layout_width="300dp"
android:layout_height="400dp"
android:layout_centerInParent="true"
android:orientation="vertical">
<TextView
android:id="@+id/top"
android:layout_width="100dp"
android:layout_height="50dp"
android:layout_marginLeft="50dp"
android:layout_marginTop="50dp"
android:background="@android:color/holo_blue_dark"
android:elevation="25dp"
android:gravity="center"
android:text="Top" />
<TextView
android:id="@+id/bottom"
android:layout_width="100dp"
android:layout_height="50dp"
android:layout_below="@id/top"
android:layout_marginLeft="50dp"
android:layout_marginTop="2dp"
android:background="@android:color/holo_orange_light"
android:elevation="25dp"
android:gravity="center"
android:text="Bottom" />
</LinearLayout>
</RelativeLayout>
</android.support.design.widget.CoordinatorLayout>
识别重叠阴影有点难:
现在我通过这段代码添加一些任意的y偏移量:
public class MainActivity extends AppCompatActivity {
TextView mTopTv,mBottomTv;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
mTopTv = (TextView)findViewById(R.id.top);
mBottomTv = (TextView)findViewById(R.id.bottom);
mBottomTv.setOutlineProvider(new ViewOutlineProvider() {
@Override
public void getOutline(View view, Outline outline) {
outline.setRect(0, 50, view.getWidth(), view.getHeight());
}
});
}
}
结果是:
比较两幅图像时,很明显可以消除重叠区域。