user_profile_signature_layout.xml 789 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@color/white"
  6. android:orientation="vertical">
  7. <EditText
  8. android:id="@+id/signature_edit"
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:layout_marginLeft="10dp"
  12. android:layout_marginRight="10dp"
  13. android:layout_marginTop="20dp"
  14. android:padding="5dp"
  15. android:paddingLeft="15dp"
  16. android:paddingRight="15dp"
  17. android:textColor="@color/color_black_333333"
  18. android:textColorHint="@color/contact_letter_idx_bg"/>
  19. </LinearLayout>