# my-android-study **Repository Path**: M00nBack/my-android-study ## Basic Information - **Project Name**: my-android-study - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-04-18 - **Last Updated**: 2021-04-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 作业1-界面设计 ![image-20210418225316549](img/image-20210418225316549.png) ## 说明 使用了约束布局 主要控件:TextView RadioButton FrameLayout ProgressBar 控件属性: 颜色相关 ``` android:background="@color/back_blue" android:textColor="@color/white" ``` 内容相关 ``` android:text="@string/title" android:button="@drawable/button_a_select" ``` 大小相关 ``` android:layout_width="361dp" android:layout_height="250dp" android:textSize="19sp" android:layout_marginTop="100dp" android:layout_marginLeft="25dp" android:layout_marginRight="25dp" ``` 位置相关 ``` android:gravity="center" app:layout_constraintTop_toTopOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintLeft_toRightOf="parent" ``` 进度条 ``` style="?android:attr/progressBarStyleHorizontal" android:layout_width="match_parent" android:layout_height="68dp" android:max="100" android:progress="20" /> ``` ## 效果 ![image-20210327221708275](img/image-20210327221708275.png) # 作业2-基本控件使用 ![image-20210418225845080](img/image-20210418225845080.png) ## 效果 主界面: ![image-20210403202238145](img/image-20210403202238145-1618758464443.png) ![image-20210403202301473](img/image-20210403202301473-1618758479886.png) 提交显示界面 ![image-20210403202426180](img/image-20210403202426180-1618758481867.png) ## 界面布局、功能实现方法 ### 界面布局 主界面主要包括: ScrollView控件用于问题列表上下滑动进度条 TextView控件主要用于问题显示 问题答案单选使用RadioGroup包含多个RadioButton 多选则则使用CheckBox 接收输入文本内容则采用EditText 布局采用:LinearLayout 主界面xml文件: ```xml