ttw_bank_pay.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:paddingRight="6dip" >
  6. <EditText
  7. android:id="@+id/et_money"
  8. android:layout_width="fill_parent"
  9. android:layout_height="42dip"
  10. android:background="@drawable/ttw_edit_bg"
  11. android:numeric="integer"
  12. android:singleLine="true"
  13. android:maxLength="9"
  14. android:paddingLeft="6dip"
  15. android:focusable="false"
  16. android:focusableInTouchMode="false"
  17. android:layout_marginTop="6dip"
  18. />
  19. <TextView
  20. android:id="@+id/tv_desc"
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content"
  23. android:text="支持工、招、建、中、农等主流银行"
  24. android:textSize="14sp"
  25. android:textColor="#6E6E6E"
  26. android:layout_marginTop="3dip"
  27. android:layout_below="@id/et_money"
  28. />
  29. <TextView
  30. android:id="@+id/tv_pay"
  31. android:layout_width="match_parent"
  32. android:layout_height="42dip"
  33. android:gravity="center"
  34. android:textSize="16sp"
  35. android:text="立即付款"
  36. android:textColor="@android:color/white"
  37. android:background="#00b600"
  38. android:layout_alignParentBottom="true"
  39. android:layout_marginBottom="30dip"
  40. />
  41. </RelativeLayout>