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


    日期:2019.5.6

    博客期:069

    星期一

      今天是开会把自己的研究历程大致的描绘一下,那么我呢,主要是对于学习如何配置、安装、使用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

      

      

  • 相关阅读:
    jqGrid api 中文说明
    jsp + js + 前端弹出框
    js中关于带数字类型参数传参丢失首位数字0问题
    java中WGS84坐标(ios)转换BD-09坐标(百度坐标)
    Java中的“浅复制”与“深复制”
    Git错误:error:failed to push some refs to 'git@gitee.com:name/project.git'
    git操作教程
    线程调度及进程调度
    同步锁Lock
    多线程案例
  • 原文地址:https://www.cnblogs.com/onepersonwholive/p/10871968.html
Copyright © 2020-2023  润新知