日期:2019.5.6
博客期:058
星期一
今天是开会把自己的研究历程大致的描绘一下,那么我呢,主要是对于学习如何配置、安装、使用Android Studio 和一些基础开发知识的学习,我们也针对各自的总结做出来一定的分析。
<*>学习基本的Android Studio的模拟器和相关应用
<*>学习基本的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=".MainActivity"> 8 9 <TextView 10 android:id="@+id/theTitle" 11 android:layout_width="wrap_content" 12 android:layout_height="wrap_content" 13 android:text="雷达小程序" 14 android:textColor="@color/colorAccent" 15 android:textSize="36sp" 16 app:layout_constraintBottom_toBottomOf="parent" 17 app:layout_constraintLeft_toLeftOf="parent" 18 app:layout_constraintRight_toRightOf="parent" 19 app:layout_constraintTop_toTopOf="parent" 20 app:layout_constraintVertical_bias="0.243" /> 21 22 </android.support.constraint.ConstraintLayout>
原文:https://www.cnblogs.com/onepersonwholive/p/10871968.html