首页 > 其他分享 >5.17博客

5.17博客

时间:2024-06-16 20:10:00浏览次数:14  
标签:spring 安卓 boot 博客 没输 5.17

排球课比赛快完了,目前为止一场没输过,我感觉这跟我课脱不了关系

学习内容:spring-boot注册条件

安卓:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     xmlns:tools="http://schemas.android.com/tools"     android:id="@+id/ll_item"     android:layout_width="wrap_content"     android:layout_height="wrap_content"     android:layout_gravity="center"     android:background="@color/white"     android:gravity="center"     android:orientation="vertical">
    <TextView         android:id="@+id/tv_name"         android:layout_width="match_parent"         android:layout_height="wrap_content"         android:gravity="center"         android:textColor="@color/black"         android:textSize="17sp"         tools:text="小米手机" />
    <ImageView         android:id="@+id/iv_thumb"         android:layout_width="180dp"         android:layout_height="150dp"         android:scaleType="fitCenter"         tools:src="@drawable/xiaomi" />
    <LinearLayout         android:layout_width="match_parent"         android:layout_height="45dp"         android:orientation="horizontal">
        <TextView             android:id="@+id/tv_price"             android:layout_width="0dp"             android:layout_height="match_parent"             android:layout_weight="2"             android:gravity="center"             android:textColor="@color/red"             android:textSize="15sp"             tools:text="20" />
        <Button             android:id="@+id/btn_add"             android:layout_width="0dp"             android:layout_height="match_parent"             android:layout_weight="3"             android:gravity="center"             android:text="加入购物车"             android:textColor="@color/black"             android:textSize="15sp" />     </LinearLayout>
</LinearLayout>

标签:spring,安卓,boot,博客,没输,5.17
From: https://www.cnblogs.com/zjm921/p/18251166

相关文章

  • 5.6博客
    过完五一假了该进入学习状态了学习内容:安卓<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"  xmlns:tools="http://schemas.android.com/tools"  android:layout_width="match_parent"  android:layout_height="m......
  • 4.30博客
    上午计网下午建民课晚上跑步真是充实学习内容:安卓<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"  android:layout_width="match_parent"  android:layout_height="match_parent"  android:orientation="vertical&qu......
  • 2024年6月16日 18:10,cnblog博客园的第一天!!!
    终于A了P06614迷宫游戏5,原来是动态规划......点击查看代码#include<bits/stdc++.h>#definedebug(a);cout<<#a<<"="<<a<<endl;#definerep(i,a,b)for(inti=a;i<=b;i++)#definepep(i,a,b)for(inti=a;i>=b;i--)usingnamespacestd;......
  • css样式综合案例----博客园首页简单搭建
    1<!DOCTYPEhtml>2<htmllang="en">3<head>4<metacharset="UTF-8">5<title>博客园</title>6<metaname="viewport"content="width=device-width,initial-scal......
  • 博客园入门
    一、语言:通常博客都是采用markdown语言。1.1markdown语言教程1:https://markdown.com.cn/basic-syntax/教程2:https://forum-zh.obsidian.md/t/topic/435/教程3:https://markdown.com.cn/intro.html1.2Html语言(1)markdown提供了可无缝转换为HTML的轻量级语法。对于......
  • 5.17
    今日总结今天上数据库原理,实验二是给出数据后对数据进行多方面的查询。4、在数据库test1中进行下列查询操作,将查询语句与结果写入实验报告。(1)查询所有供应商情况,先按城市升序排列,城市相同按供应商名称降序排列。select*fromsorderbycityasc,snamedesc;(2)查询所有零......
  • 博客园商业化之路-众包平台:继续召集早期合作开发者
    会员、周边、广告是园子现在维持生存的主要收入来源,而众包平台是园子未来实现商业化规模增长的希望所在。今年5月开始的众包平台建设是万里长征,不仅需要融资,还需要找到合伙人组建新的团队。虽然当前既没有钱又没人,但万里长征已经迈出了第一步,采用企业微信+自己搭建的gitlab以原......
  • 4.23博客
    建民老师的课真是今天的快乐源泉学习内容:安卓<?xmlversion="1.0"encoding="utf-8"?><LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"  android:layout_width="match_parent"  android:layout_height=&qu......
  • 4.24博客
    python学习importmathclassShape:defcal_perimeter(self):    pass defcal_area(self):    pass defcal_volume(self):    passclassPoint(Shape):def\__init_\_(self,x=0,y=0):    self.x=x    self.y=y defsetX(s......
  • 【工具推荐】基于Win10系统自带软件Xbox Game Bar录屏后下载安装ffmpeg然后使用ffmpeg
    本文详细介绍了如何基于Win10系统自带软件XboxGameBar录屏,以及如何下载安装ffmpeg,然后如何使用ffmpeg将录屏得到的mp4视频转换为可用于博客中做功能演示用的gif动态图片,同时还提供了一个一键转换脚本,减少繁琐的操作步骤。......