...
FluigSdkEditText
;FluigSdkEditText
, removendo os cornerRadii
padrões entre dois FluigSdkEditText
adjacentes.Bloco de código | ||||||
---|---|---|---|---|---|---|
| ||||||
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <sdk.fluig.com.ui.components.edittext.FluigSdkGroupText> <sdk.fluig.com.ui.components.edittext.FluigSdkEditText android:layout_width="match_parent" android:layout_height="wrap_content" android:text="@string/my_text" /> <!--Este Button será ignorado e removido automaticamente, pois não é uma instância de FluigSdkEditText--> <Button android:layout_width="match_parent" android:layout_height="50dp"/> <sdk.fluig.com.ui.components.edittext.FluigSdkEditText android:layout_width="match_parent" android:layout_height="wrap_content" android:text="@string/my_text_2" /> </sdk.fluig.com.ui.components.edittext.FluigSdkGroupText> </LinearLayout> |
...