I can not see my checkbox android

user3103823

why I can not see my chechbox ?

this is my screenshot of my layout :

enter image description here

I think it is due to my custom background ! Even if I change/remove the background does not affect!

why?!!!!!!!

How can I solve it?

layout :

<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>
A.R.

Use this layout...

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <TextView
        android:id="@+id/textview_amir_ghamsari"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="28dp"
        android:text="amir_ghamsari" />

    <CheckBox
        android:id="@+id/checkbox_amir_ghamsari"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBaseline="@+id/textview_amir_ghamsari"
        android:layout_alignBottom="@+id/textview_amir_ghamsari"
        android:layout_toRightOf="@+id/textview_amir_ghamsari" />

    <TextView
        android:id="@+id/textview_s_masoud_emamian"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignRight="@+id/textview_amir_ghamsari"
        android:layout_below="@+id/checkbox_amir_ghamsari"
        android:layout_marginTop="22dp"
        android:text="masoud_emamian" />

    <CheckBox
        android:id="@+id/checkbox_s_masoud_emamian"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBaseline="@+id/textview_s_masoud_emamian"
        android:layout_alignBottom="@+id/textview_s_masoud_emamian"
        android:layout_alignLeft="@+id/checkbox_amir_ghamsari" />

    <EditText
        android:id="@+id/editText1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:layout_below="@+id/checkbox_s_masoud_emamian"
        android:layout_marginTop="120dp"
        android:background="#46462e"
        android:hint="hint_comments"
        android:lines="5"
        android:textColor="#ffffff" >

        <requestFocus />
    </EditText>

    <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>

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Why i can not see my installed android application on my phone?

From Dev

How can I see my debug logs on Unity Android?

From Dev

Can I see my gem version history?

From Dev

How can I see my password on the terminal?

From Dev

I can not see values in my dropdown

From Dev

I can't see my SharedFolder

From Dev

I can't show my checkbox results

From Dev

Why can I not see my USB connected Android device over SSH?

From Dev

Why can I not see my USB connected Android device over SSH?

From Dev

I can't see my app icon in my phone

From Dev

How can I see the full layout in Android?

From Dev

I can not see the error in the Android Studio

From Dev

Where can i see the new file i created in my workspace?

From Dev

Why would IntelliJ be able to see my application context, but when I run my tests they can't see it?

From Java

Where can I see my pull requests on GitHub?

From Dev

How can I see the time of my last git pull?

From Dev

How can I see a report of my AWS Bounced emails?

From Dev

How can I see the source code of a gem installed on my machine?

From Dev

Where can I see the http requests my browser sends

From Dev

How can I see what my reactive extensions query is doing?

From Dev

I can't see my app in beta distribution

From Dev

Why can't I see the parameters for my script in PowerShell?

From Dev

Why I can't see my files inside a docker container?

From Dev

AngularJS: Where can I see $httpBackend responses in my browser directly?

From Dev

How can i check to see if my WordPress code is correct?

From Dev

How can I see my System details in a Graphical way? (in Lubuntu)

From Dev

What API can I use to see my GCP bill amount?

From Dev

Why can't I see remote video in my WebRTC app?

From Dev

Why can't I see my taken pictures in gallery?

Related Related

  1. 1

    Why i can not see my installed android application on my phone?

  2. 2

    How can I see my debug logs on Unity Android?

  3. 3

    Can I see my gem version history?

  4. 4

    How can I see my password on the terminal?

  5. 5

    I can not see values in my dropdown

  6. 6

    I can't see my SharedFolder

  7. 7

    I can't show my checkbox results

  8. 8

    Why can I not see my USB connected Android device over SSH?

  9. 9

    Why can I not see my USB connected Android device over SSH?

  10. 10

    I can't see my app icon in my phone

  11. 11

    How can I see the full layout in Android?

  12. 12

    I can not see the error in the Android Studio

  13. 13

    Where can i see the new file i created in my workspace?

  14. 14

    Why would IntelliJ be able to see my application context, but when I run my tests they can't see it?

  15. 15

    Where can I see my pull requests on GitHub?

  16. 16

    How can I see the time of my last git pull?

  17. 17

    How can I see a report of my AWS Bounced emails?

  18. 18

    How can I see the source code of a gem installed on my machine?

  19. 19

    Where can I see the http requests my browser sends

  20. 20

    How can I see what my reactive extensions query is doing?

  21. 21

    I can't see my app in beta distribution

  22. 22

    Why can't I see the parameters for my script in PowerShell?

  23. 23

    Why I can't see my files inside a docker container?

  24. 24

    AngularJS: Where can I see $httpBackend responses in my browser directly?

  25. 25

    How can i check to see if my WordPress code is correct?

  26. 26

    How can I see my System details in a Graphical way? (in Lubuntu)

  27. 27

    What API can I use to see my GCP bill amount?

  28. 28

    Why can't I see remote video in my WebRTC app?

  29. 29

    Why can't I see my taken pictures in gallery?

HotTag

Archive