当前位置:   article > 正文

【Android】联系人列表补充

【Android】联系人列表补充

真布局--叠起来垂直管

效果展示

部分代码(在activity_main)里面

  1. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:layout_width="match_parent"
  3. android:layout_height="match_parent">
  1. <ImageView
  2. android:id="@+id/imgAdd"
  3. android:layout_gravity="bottom|end"
  4. android:layout_width="60dp"
  5. android:layout_height="60dp"
  6. android:layout_marginEnd="28dp"
  7. android:layout_marginBottom="20dp"
  8. android:src="@drawable/add"
  9. />

增加联系人

布局显示

部分代码(add_contact.xml)

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="150dp"
  4. android:layout_height="wrap_content"
  5. android:padding="20dp"
  6. android:gravity="center"
  7. android:orientation="vertical">
  8. <EditText
  9. android:id="@+id/dtAddName"
  10. android:layout_width="match_parent"
  11. android:layout_height="45dp"
  12. android:layout_marginTop="10dp"
  13. android:hint="请输入姓名"/>
  14. <RadioGroup
  15. android:id="@+id/rgAddGender"
  16. android:layout_width="match_parent"
  17. android:orientation="horizontal"
  18. android:layout_marginTop="10dp"
  19. android:layout_height="45dp">
  20. <RadioButton
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content"
  23. android:text="男"/>
  24. <RadioButton
  25. android:layout_marginStart="50dp"
  26. android:layout_width="wrap_content"
  27. android:layout_height="wrap_content"
  28. android:text="女"/>
  29. </RadioGroup>
  30. <EditText
  31. android:id="@+id/dtAddTel"
  32. android:layout_width="match_parent"
  33. android:layout_height="45dp"
  34. android:layout_marginTop="10dp"
  35. android:hint="请输入姓名"/>
  36. <EditText
  37. android:id="@+id/dtAddAddress"
  38. android:layout_width="match_parent"
  39. android:layout_height="45dp"
  40. android:layout_marginTop="10dp"
  41. android:hint="请输入地址"/>
  42. <EditText
  43. android:id="@+id/dtAddEmail"
  44. android:layout_width="match_parent"
  45. android:layout_height="45dp"
  46. android:layout_marginTop="10dp"
  47. android:hint="请输入邮箱"/>
  48. <Button
  49. android:id="@+id/btnAdd"
  50. android:layout_marginTop="20dp"
  51. android:layout_width="wrap_content"
  52. android:layout_height="wrap_content"
  53. android:text="确定"/>
  54. </LinearLayout>
  1. sql

页面使用

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/596950
推荐阅读
相关标签
  

闽ICP备14008679号