首页 > 其他分享 >学习进度

学习进度

时间:2023-02-23 20:13:09浏览次数:24  
标签:content layout height 学习 width 进度 wrap android

今天完成了对android的学习,用了一个半小时的时间。今天,我又重新系统地复习了之前的内容,并开始跟随编程写代码了,就是对之前已经学习过的内容进行动手实践,亲自写代码,找找错误,还有加深印象等。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="300dp"
android:background="#ffff99"
android:orientation="vertical">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="横排第一个"
android:textSize="17sp"
android:textColor="#000000"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="横排第二个"
android:textSize="17sp"
android:textColor="#000000"/>
</LinearLayout>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="横排第一个"
android:textSize="17sp"
android:textColor="#000000"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="横排第一个"
android:textSize="17sp"
android:textColor="#000000"/>
</LinearLayout>

标签:content,layout,height,学习,width,进度,wrap,android
From: https://www.cnblogs.com/liuxuefeng/p/17149222.html

相关文章

  • Redis入门学习
    认识RedisRedis诞生于2009年全称是RemoteDictionaryServer,远程词典服务器,是一个基于内存的键值型NoSQL数据库。特征:键值(key-value)型,value支持多种不同数据结构,功能丰......
  • Prometheus学习笔记之设置存储时间为30天不生效
    0x00概述Prometheus升级到2.23进行测试发现,设置存储时间为30天未生效,根据官方说明手册,实际运行后发现数据只能存储几个小时。。。。--storage.tsdb.retention.time=30d......
  • 圆方树学习笔记
    圆方树学习笔记oiwiki模板voidtarjan(intu){ dfn[u]=low[u]=++ct;st[++tp]=u;tot++; for(intv:g[u]) if(!dfn[v]) { tarjan(v);low[u]=min(low[v],low......
  • 2023.2.23软件工程学习日报
    所花时间:1.5小时代码量:100行博客量:1了解到的知识点:今天学习了在AndroidStudio中进行activity的跳转了解到的内容为:创建一个活动后一定要在项目中进行注册,注册完成后要......
  • 爬虫学习素材:国家中英文名对照表
    国家中英文对照表,做爬虫时可能会需要用到。我在去年做新冠肺炎疫情地图时用到了该素材,并且对其中发现的错误内容做了修正,可以满足小型项目使用。需要的朋友可以自取。nam......
  • 声纹识别SR学习
    声纹模型基础训练、推理的流程框架ASV简介关联任务说话人日志(Speakerdiarisation)通过声纹识别把说话人身份表示出来,采访、庭审特定说话人分离(Targetspeakersep......
  • vue中页面加载进度条效果的实现
    我们在vue项目中,为了减少首屏加载的时间,通常会开启路由的懒加载。路由懒加载配合gizp确实能帮助我们大大的加快首屏的加载时间。然而,路由懒加载会使得我们在第一次打开一......
  • python学习笔记
    1.变量名称区分大小写(age、Age和AGE是三个不同的变量)2.在函数内部创建一个与全局变量同名的变量:x="awesome"defmyfunc():x="fantastic"print("Pythonis"......
  • 学习笔记——Nginx在linux中的命令
    2023-02-231、Nginx命令(1)开启Nginx安装Nginx之后,在“/usr/local/nginx/sbin”目录中sudo./nginx(2)关闭Nginx,在“/usr/local/nginx/sbin”目录中sudo./nginx-s......
  • 深度学习-LSTM
    目录前言神经网络的历史和背景循环神经网络的出现及其作用LSTM在处理序列数据中的应用LSTM的基本原理LSTM的结构和原理遗忘门、输入门、输出门的作用LSTM的训练方法代码LST......