我正在使用Cardview作爲我正在寫入的自定義視圖的根。我使用v7支持庫。我的XML看起來像這樣:Cardview - 卡周圍的白色邊框
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginRight="6dp"
card_view:cardElevation="0dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<!-- some other views -->
</LinearLayout>
</android.support.v7.widget.CardView>
我的問題是,我正在我的卡片視圖周圍的白色邊框。它看起來像是在那裏表示高程,因爲它在右側較厚。我在我的XML嘗試調整cardElevation
和MaxCardElevation
像這樣: card_view:cardElevation="0dp"
,並在擴展CardView並使用此佈局我的自定義視圖代碼:
setCardElevation(0);
setMaxCardElevation(0);
但白色邊框依然存在。我不知道如何擺脫它。如果任何人有任何意見,爲什麼會發生這種情況或建議如何刪除白色邊框,將不勝感激。非常感謝。
可以共享屏幕抓取容易理解 – Fahim 2015-04-01 14:01:13
你還有這個「白邊」,如果你刪除'機器人:layout_marginRight =「6DP 「'? – Rami 2015-04-01 14:06:16
@Rami - 是的,它仍然存在 – TheMethod 2015-04-01 14:16:47