首页 > 其他 > 详细

星辰小队针对于软件“星遇”的10天冲刺——第2天

时间:2019-05-15 20:37:58      阅读:121      评论:0      收藏:0      [点我收藏+]

日期: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>
activity_main.xml

  

  技术分享图片

 

星辰小队针对于软件“星遇”的10天冲刺——第2天

原文:https://www.cnblogs.com/onepersonwholive/p/10871968.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!