ttw_sdk.xml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  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:padding="10dip"
  6. android:orientation="vertical"
  7. >
  8. <Button
  9. android:id="@+id/btn_login"
  10. android:layout_width="fill_parent"
  11. android:layout_height="wrap_content"
  12. android:text="登录" />
  13. <EditText
  14. android:id="@+id/et_money"
  15. android:numeric="decimal"
  16. android:singleLine="true"
  17. android:maxLength="8"
  18. android:layout_marginTop="10dip"
  19. android:layout_marginBottom="10dip"
  20. android:layout_width="fill_parent"
  21. android:layout_height="wrap_content"
  22. />
  23. <Button
  24. android:id="@+id/btn_charger"
  25. android:layout_width="fill_parent"
  26. android:layout_height="wrap_content"
  27. android:text="充值" />
  28. <TextView
  29. android:id="@+id/tv_msg"
  30. android:layout_width="wrap_content"
  31. android:layout_height="wrap_content"
  32. />
  33. </LinearLayout>