I have 3 EditText
's in a layout that the weights are distributed between them, but when I go deep with a color, it gives the impression that it is one, would it have a method to edit better or put a margin? / p>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" >
<EditText
android:id="@+id/M00"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#0000ff"
android:ems="10"
android:gravity="center"
android:inputType="numberSigned|numberDecimal"
android:textColor="#ffffff" >
<requestFocus />
</EditText>
<EditText
android:id="@+id/M01"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#0000ff"
android:ems="10"
android:gravity="center"
android:inputType="numberSigned|numberDecimal"
android:textColor="#ffffff" />
<EditText
android:id="@+id/M02"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#0000ff"
android:ems="10"
android:gravity="center"
android:inputType="numberSigned|numberDecimal"
android:textColor="#ffffff" />
</LinearLayout>