カスタムアダプターにはカスタム行がありますが、カスタム行のチェックボックスは表示されません。カスタム行にチェックボックスが表示されない
ここでは、行のXMLコードです:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:paddingBottom="10dp"
android:paddingTop="7dp">
<android.support.v7.widget.AppCompatCheckBox
android:id="@+id/delete_checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_marginTop="10dp" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="3"
android:orientation="vertical">
<TextView
android:id="@+id/company_symbol"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/unknown"
android:textColor="@color/md_grey_600"
android:textSize="18dp" />
<TextView
android:id="@+id/company_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:paddingRight="10dp"
android:text="@string/unknown"
android:textColor="@color/md_grey_800"
android:textSize="12dp" />
</LinearLayout>
私はチェックボックスが行の左側に表示されますが、ここでの結果は次のようになりますことを期待:
どれでもチェックボックスが表示されない理由についてのヘルプ
同時に重量とラップコンテンツを使用しないでください –