0
這是我的自定義視圖(custom_view.xml):*請注意,我在CardView上定義了3個邊距。android xml沒有考慮自定義佈局上的邊距
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginTop="8dp"
android:background="@color/white"
android:orientation="vertical"
app:cardCornerRadius="4dp"
app:cardElevation="0dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginTop="16dp"
android:background="@color/white">
<ImageView
android:id="@+id/left_image"
android:layout_width="64dp"
android:layout_height="40dp"
android:layout_marginTop="5dp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toEndOf="@id/left_image"
android:layout_toLeftOf="@+id/right_image"
android:layout_toRightOf="@id/left_image"
android:layout_toStartOf="@id/right_image"
android:orientation="vertical">
<com.ringapp.ui.view.TypefaceTextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<com.ringapp.ui.view.TypefaceTextView
android:id="@+id/description"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
<ImageView
android:id="@id/right_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_marginTop="5dp"
android:src="@drawable/icon_md_gray_arrow" />
</RelativeLayout>
</android.support.v7.widget.CardView>
我在下面的XML添加自定義佈局(container.xml中):
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginTop="8dp"
android:orientation="vertical">
<com.ringapp.ui.view.CustomView
android:id="@+id/test2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
app:description="edsc"
app:title="title" />
<com.ringapp.ui.view.CustomView
android:id="@+id/test"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
app:description="asdasd"
app:title="asdasdasd" />
</LinearLayout>
的問題是,我在custom_view.xml定義的利潤率不會出現在container.xml佈局上。這是爲什麼發生?如果我將custom_view.xml的代碼直接粘貼到container.xml上,則會出現邊距。
您的container.xml具有一個customview,其佈局寬度和高度與wrap_content相同。你在'com.ringapp.ui.view.CustomView'中做了什麼? – Raghunandan
嘗試填充 – Pavan
CustomView正在擴展CardView,並且讀取了我設置的屬性。 檢查編輯@Raghunandan – Sol