sendrequest_dialog.xml 959 B

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/sendrequest"
  4. android:layout_width="fill_parent"
  5. android:layout_height="wrap_content"
  6. android:orientation="vertical" >
  7. <TextView
  8. android:id="@+id/sendrequest_tip"
  9. android:layout_width="fill_parent"
  10. android:layout_height="wrap_content"
  11. android:paddingLeft="8dp"
  12. android:paddingRight="8dp"
  13. android:singleLine="false"
  14. android:textColor="@color/white"
  15. android:textSize="@dimen/TitleTextSize" />
  16. <View
  17. style="@style/MMSplit"
  18. android:layout_width="fill_parent"
  19. android:layout_height="10dp" />
  20. <EditText
  21. android:id="@+id/sendrequest_content"
  22. style="@style/MMLineEditText"
  23. android:layout_marginLeft="8dp"
  24. android:layout_marginRight="8dp"
  25. android:maxLength="16" />
  26. </LinearLayout>