当我使用cardUseCompatPadding在我的卡片视图中显示阴影时,顶部填充比左边填充大。如何使两个填充相等,因为我的丝带看起来不漂亮,它在顶部更大?感谢。
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!-- Green triangles for badge -->
<FrameLayout
android:id="@+id/ribbon_parts"
android:layout_width="58dp"
android:layout_height="58dp"
android:background="@drawable/ic_ribbon_parts"
android:visibility="gone"/>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.CardView
android:id="@+id/item_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:animateLayoutChanges="true"
android:background="@color/red"
android:clickable="true"
android:foreground="?attr/selectableItemBackground"
android:theme="@style/LightGrayHighlightTheme"
card_view:cardBackgroundColor="@color/white"
card_view:cardCornerRadius="4dp"
card_view:cardElevation="2dp"
card_view:cardPreventCornerOverlap="true"
card_view:cardUseCompatPadding="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="130dp"
android:animateLayoutChanges="true"
android:orientation="horizontal"
android:background="@color/blue"
android:weightSum="3"> </LinearLayout>
</FrameLayout>
<!-- badge -->
<FrameLayout
android:id="@+id/ribbon_main"
android:layout_width="58dp"
android:layout_height="58dp"
android:background="@drawable/ic_ribbon_main"
android:visibility="gone"/>
答案 0 :(得分:2)
你无法解决这个问题。设置cardUseCompatPadding
标志时,这些方法用于计算所有API级别的填充:
final static float SHADOW_MULTIPLIER = 1.5f;
static float calculateVerticalPadding(float maxShadowSize, float cornerRadius, addPaddingForCorners) {
if (addPaddingForCorners) {
return (float) (maxShadowSize * SHADOW_MULTIPLIER + (1 - COS_45) * cornerRadius);
} else {
return maxShadowSize * SHADOW_MULTIPLIER;
}
}
static float calculateHorizontalPadding(float maxShadowSize, float cornerRadius, boolean addPaddingForCorners) {
if (addPaddingForCorners) {
return (float) (maxShadowSize + (1 - COS_45) * cornerRadius);
} else {
return maxShadowSize;
}
}
使用addPaddingForCorners
时 card_view:cardPreventCornerOverlap="true"
为真。
也许在layout_marginTop
和ribbon_main
上设置一些ribbon_parts
会给您带来预期效果?
答案 1 :(得分:2)
取自文件:
这可能导致卡片在棒棒糖和棒棒糖之间有不同的大小 在棒棒糖之前。如果您需要将CardView与其他视图对齐,那么您 可能需要api版本特定维度资源来考虑 变化。作为替代方案,您可以将此标志设置为true和CardView 将在Lollipop平台及之后添加相同的填充值。
接下来,您可以使用 margin 属性
添加所需的缩进<强>的example.xml:强>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#2861">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.CardView
android:id="@+id/item_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="1dp"
android:layout_marginEnd="2dp"
android:layout_marginStart="2dp"
android:layout_marginTop="1dp"
android:clickable="true"
android:focusable="true"
android:foreground="?attr/selectableItemBackground"
card_view:cardBackgroundColor="@android:color/white"
card_view:cardCornerRadius="4dp"
card_view:cardElevation="2dp"
card_view:cardPreventCornerOverlap="false"
card_view:cardUseCompatPadding="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="130dp"
android:animateLayoutChanges="true"
android:orientation="horizontal"
android:weightSum="3">
<!-- Your code here -->
</LinearLayout>
</android.support.v7.widget.CardView>
</FrameLayout>
<!-- badge -->
<FrameLayout
android:id="@+id/ribbon_main"
android:layout_width="58dp"
android:layout_height="58dp"
android:layout_gravity="end"
android:background="@drawable/corner_ribbon"
android:visibility="visible" />
</FrameLayout>
现在它在不同版本的API上看起来很棒。
在您的项目中,您可以将这些设置用于CardView和FrameLayout(功能区)以获得所需的结果。
<强> example_2.xml:强>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#2861">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.CardView
android:id="@+id/item_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginEnd="18dp"
android:layout_marginTop="17dp"
android:clickable="true"
android:focusable="true"
android:foreground="?attr/selectableItemBackground"
card_view:cardBackgroundColor="@android:color/white"
card_view:cardCornerRadius="4dp"
card_view:cardElevation="2dp"
card_view:cardPreventCornerOverlap="false"
card_view:cardUseCompatPadding="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="130dp"
android:animateLayoutChanges="true"
android:orientation="horizontal"
android:weightSum="3">
<!-- Your code here -->
</LinearLayout>
</android.support.v7.widget.CardView>
</FrameLayout>
<!-- badge -->
<FrameLayout
android:id="@+id/ribbon_main"
android:layout_width="58dp"
android:layout_height="58dp"
android:layout_gravity="end"
android:layout_marginEnd="16dp"
android:layout_marginTop="16dp"
android:background="@drawable/corner_ribbon"
android:visibility="visible" />
</FrameLayout>
答案 2 :(得分:-1)
这对我有用,也可能对你有用:
float cardelevation = cardView.getMaxCardElevation();
float cardradius = cardView.getRadius();
double cardcos = Math.cos(Math.toRadians(45));
int horizontalPadding = (int) (cardelevation + (1 - cardcos ) * cardradius);
int verticalPadding = (int) (cardelevation * 1.5 + (1 - cardcos ) * cardradius);
谢谢。