爲什麼我看不到我的chechbox?我看不到我的複選框android
這是我的我的佈局的截圖:
我想這是因爲我的自定義背景! 即使我改變/刪除背景也不會影響!
爲什麼?!!!!!!!
我該如何解決?
佈局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<CheckBox
android:id="@+id/checkbox_amir_ghamsari"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true"
android:layout_marginTop="5dp"
android:layout_marginRight="15dp"
android:background="#ffffff"
/>
<TextView
android:id="@+id/textview_amir_ghamsari"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@id/checkbox_amir_ghamsari"
android:layout_alignTop="@id/checkbox_amir_ghamsari"
android:text="@string/textview_amir_ghamsari"
android:layout_marginTop="10dp"
android:textStyle="bold"
android:textSize="@dimen/amir_masoud_size"
android:textColor="#ffffff"
android:layout_marginRight="15dp"
/>
<CheckBox
android:id="@+id/checkbox_s_masoud_emamian"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/checkbox_amir_ghamsari"
android:layout_alignParentRight="true"
android:layout_marginTop="30dp"
android:layout_marginRight="15dp"
android:background="#46462e"
/>
<TextView
android:id="@+id/textview_s_masoud_emamian"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@id/checkbox_s_masoud_emamian"
android:layout_alignTop="@id/checkbox_s_masoud_emamian"
android:text="@string/textview_s_masoud_emamian"
android:textStyle="bold"
android:textSize="@dimen/amir_masoud_size"
android:textColor="#ffffff"
android:layout_marginRight="15dp"
/>
<EditText
android:id="@+id/edittext_sms"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/edittext_hint_comments"
android:lines="5"
android:background="#46462e"
android:textColor="#ffffff"
android:layout_centerInParent="true"
/>
<ImageButton
android:id="@+id/imagebutton_send_sms"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:src="@drawable/send_sms"
/>
</RelativeLayout>
我加了,但我沒有看到任何複選框! – user3103823
您在父級佈局的背景中使用了什麼顏色? –
那麼,你真的需要添加一個TextView旁邊的CheckBox嗎?一個CheckBox可以有它自己的文本... –