当前位置:   article > 正文

Android Studio:基本UI界面设计 (详细)_android studio界面设计实例

android studio界面设计实例

一、 实验题目 

基本UI界面设计

二、 实现内容

实现一个 Android 应用,界面呈现如下效果:

三、 实验过程

(1)标题  

首先我们建立一个TextView控件来写标题。

实验对标题的要求如下:

1 标题字体大小 20sp(android:textSize="20sp")

2 与顶部距离 20dp  (与父容器顶部对齐后再设置与顶部距离20dp)

3 居中 (与父容器左右都对齐后即可)

实现效果如下:

(2)图片  

建立一个ImageView控件来写标题。先将图片复制到res/drawable目录下,然后通过app:srcCompat="@drawable/sysu"来引用。

实验对图片的要求如下:

1 图片与标题的间距为 20dp (先将图片顶部与标题底部对齐,再设置20dp的间距)

2 居中 (与父容器左右都对齐后即可,就不再放代码了)

 实现效果如下:

(3)输入框  

先建立两个TextView控件,用来写“学号”和“密码”。“学号”(user_id)控件放在距离图片20dp,与屏幕左边也距离20dp。

“密码”(user_pwd)控件放在user_id下方20dp处,用以实现上下两栏间距 20dp。

接着设置建立两个EditView控件,用来输入学号和密码。

输入学号的控件布局设置如下:

由上面代码可知道,我们将其放在user_id控件右边,同时距离屏幕右边20dp。但是下划线长度一直保持跟hint字数长短一致,查阅资料后,将layout_width的属性由wrap_content改为fill_parent才使得下划线由下图左的状态变为下图右。 

     →   

输入密码的控件布局设置如法炮制即可。

同时注意以下两点:

1 学号对应的 EditText 只能输入数字:android:digits="0123456789"

2 密码对应的 EditText 输入方式为密码:android:password="true"

3 下划线上面固定的字体应这样设置:android:hint="请输入学号(密码)"

实现效果如下:

(4)单选按钮 

由于是单选按钮,所以我们先建立一个RadioGroup,之后再在里面建立两个单选按钮RadioButton。先让RadioGroup与容器左右都对齐,这样能实现两个单选按钮整体居中。对第2个按钮设置android:layout_marginLeft="10dp",使得两个按钮间距10dp。因为要求默认选中的按钮为第一个,所以对第一个按钮设置android:checked="true"

实现效果如下:

(5)按钮  

因为我无法实现两个按钮整体居中(也许可以通过数值坐标设定使得看起来“居中”,但是不够准确...),于是我先设置了一个id为“button_box”的View控件并使其居中,然后再将两个按钮放入其中。View的布局就是将其放在RadioGroup下方20dp处并居中,代码便不放了。

接下来就是建立两个Button控件,将第一个button与View左上对齐,第二个button设置其左边与第一个button右边距离10dp,从而实现按钮间的间距为10dp。

实验要求“按钮背景框左右边框与文字间距 10dp,上下边框与文字间距 5dp,圆角半径 10dp,背景色为#3F51B5”,本来是想在button控件下直接设置的,但是无法实现。后来查阅资料后才找到以下的解决方法:

先是在res/drawable下新建一个shape.xml文件,在里面写上background属性设置:

然后返回activity_main.xml文件,在button控件下进行引用:

实现效果如下:

(这里的圆角框有点被虚线挡住)

(6)实验结果

在Android Studio的布局为图1。将app导入手机中运行结果如图2(手机截图)。

图1 图2

 

四、 实验思考及感想

1  在做实验之前,我并没有好好看下载包里的实验文档,只是粗略看了下实验要求便开始着手打代码。实验中途遇到了一些不了解的困难也都是自己手动搜索了蛮久才找到适合的解决方案,有点费时费力。后来实验做完了又浏览了下实验文档,才发现里面讲了很多关于布局和控件的知识点,如果早点看到就不用浪费自己那么多精力去搜索相应的知识点了。以后每次实验一定要先仔细看看实验文档,做好基础打底。另外,设置RadioButton时漏看了“默认第一个按钮已选中”这个要求,添加代码之后也得顺道把实验报告里相关截图重新改了,实在麻烦,以后须更加细心。

2  之前选修过web课程,在AS上进行控件布局时发现了其与网页CSS布局有很多相同之处,包括位置的约束、属性的设定。这使得我更容易去理解、学会UI布局。编程开发大抵都有相通之处吧。

最后放上代码。

activity_main.xml 
 

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. tools:context="com.example.yc.sysu.MainActivity">
  8. <TextView
  9. android:id="@+id/title"
  10. android:layout_width="wrap_content"
  11. android:layout_height="wrap_content"
  12. android:text="中山大学学生信息系统"
  13. android:textSize="20sp"
  14. android:textColor="#000000"
  15. app:layout_constraintTop_toTopOf="parent"
  16. android:layout_marginTop="20dp"
  17. app:layout_constraintLeft_toLeftOf="parent"
  18. app:layout_constraintRight_toRightOf="parent"/>
  19. <ImageView
  20. android:id="@+id/icon"
  21. android:layout_width="104dp"
  22. android:layout_height="104dp"
  23. app:srcCompat="@drawable/sysu"
  24. app:layout_constraintTop_toBottomOf="@id/title"
  25. android:layout_marginTop="20dp"
  26. app:layout_constraintLeft_toLeftOf="parent"
  27. app:layout_constraintRight_toRightOf="parent" />
  28. <TextView
  29. android:id="@+id/user_id"
  30. android:text="学号:"
  31. android:textColor="#000000"
  32. android:textSize="18sp"
  33. android:layout_width="wrap_content"
  34. android:layout_height="wrap_content"
  35. app:layout_constraintLeft_toLeftOf="parent"
  36. android:layout_marginLeft="20dp"
  37. app:layout_constraintTop_toBottomOf="@id/icon"
  38. android:layout_marginTop="20dp" />
  39. <TextView
  40. android:id="@+id/user_pwd"
  41. android:text="密码:"
  42. android:textColor="#000000"
  43. android:textSize="18sp"
  44. android:layout_width="wrap_content"
  45. android:layout_height="wrap_content"
  46. app:layout_constraintLeft_toLeftOf="parent"
  47. android:layout_marginLeft="20dp"
  48. app:layout_constraintTop_toBottomOf="@id/user_id"
  49. android:layout_marginTop="20dp"/>
  50. <EditText
  51. android:id="@+id/text_userid"
  52. android:hint="请输入学号"
  53. android:textColor="#000000"
  54. android:textSize="18sp"
  55. android:paddingTop="0dp"
  56. android:digits="0123456789"
  57. android:layout_width="fill_parent"
  58. android:layout_height="wrap_content"
  59. app:layout_constraintTop_toTopOf="@id/user_id"
  60. app:layout_constraintLeft_toRightOf="@+id/user_id"
  61. app:layout_constraintRight_toRightOf="parent"
  62. android:layout_marginRight="20dp"/>
  63. <EditText
  64. android:id="@+id/text_userpwd"
  65. android:hint="请输入密码"
  66. android:textColor="#000000"
  67. android:textSize="18sp"
  68. android:password="true"
  69. android:paddingTop="0dp"
  70. android:layout_width="fill_parent"
  71. android:layout_height="wrap_content"
  72. app:layout_constraintTop_toTopOf="@id/user_pwd"
  73. app:layout_constraintLeft_toRightOf="@+id/user_pwd"
  74. app:layout_constraintRight_toRightOf="parent"
  75. android:layout_marginRight="20dp" />
  76. <RadioGroup
  77. android:id="@+id/radioButton"
  78. android:orientation="horizontal"
  79. android:layout_width="wrap_content"
  80. android:layout_height="wrap_content"
  81. app:layout_constraintLeft_toLeftOf="parent"
  82. app:layout_constraintRight_toRightOf="parent"
  83. app:layout_constraintTop_toBottomOf="@id/user_pwd"
  84. android:layout_marginTop="30dp">
  85. <RadioButton
  86. android:id="@+id/radioButton1"
  87. android:text="学生"
  88. android:textColor="#000000"
  89. android:textSize="18sp"
  90. android:checked="true"
  91. android:layout_width="wrap_content"
  92. android:layout_height="wrap_content"/>
  93. <RadioButton
  94. android:id="@+id/radioButton2"
  95. android:text="教职工"
  96. android:textColor="#000000"
  97. android:textSize="18sp"
  98. android:layout_width="wrap_content"
  99. android:layout_height="wrap_content"
  100. android:layout_marginLeft="10dp"/>
  101. </RadioGroup>
  102. <View
  103. android:id="@+id/button_box"
  104. android:layout_height="50dp"
  105. android:layout_width="185dp"
  106. app:layout_constraintTop_toBottomOf="@id/radioButton"
  107. android:layout_marginTop="20dp"
  108. app:layout_constraintLeft_toLeftOf="parent"
  109. app:layout_constraintRight_toRightOf="parent"/>
  110. <Button
  111. android:id="@+id/button1"
  112. android:text="登录"
  113. android:textColor="#ffffff"
  114. android:background="@drawable/shape"
  115. android:textSize="18sp"
  116. android:layout_width="wrap_content"
  117. android:layout_height="wrap_content"
  118. app:layout_constraintLeft_toLeftOf="@id/button_box"
  119. app:layout_constraintTop_toTopOf="@id/button_box" />
  120. <Button
  121. android:id="@+id/button2"
  122. android:text="注册"
  123. android:textColor="#ffffff"
  124. android:background="@drawable/shape"
  125. android:textSize="18sp"
  126. android:layout_width="wrap_content"
  127. android:layout_height="wrap_content"
  128. app:layout_constraintLeft_toRightOf="@id/button1"
  129. android:layout_marginLeft="10dp"
  130. app:layout_constraintTop_toTopOf="@id/button_box"/>
  131. </android.support.constraint.ConstraintLayout>

shape.xml

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <shape xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:shape="rectangle">
  4. <solid android:color="#3f51b5"/>
  5. <corners android:radius="10dip"/>
  6. <padding
  7. android:bottom="5dp"
  8. android:top="5dp"
  9. android:left="10dp"
  10. android:right="10dp"/>
  11. </shape>

 

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

闽ICP备14008679号