首页 > 其他分享 >5.14博客

5.14博客

时间:2024-06-16 20:10:49浏览次数:9  
标签:学习 安卓 内容 博客 5.14

学习内容:安卓

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     xmlns:tools="http://schemas.android.com/tools"     android:layout_width="match_parent"     android:layout_height="wrap_content"     android:background="@color/white"     android:orientation="horizontal">
    <ImageView         android:id="@+id/iv_thumb"         android:layout_width="85dp"         android:layout_height="85dp"         android:scaleType="fitCenter"         tools:src="@drawable/xiaomi"/>
    <LinearLayout         android:layout_width="0dp"         android:layout_height="match_parent"         android:layout_weight="3"         android:orientation="vertical">
        <TextView             android:id="@+id/tv_name"             android:layout_width="match_parent"             android:layout_height="0dp"             android:layout_weight="2"             android:gravity="left|center"             android:textColor="@color/black"             android:textSize="17sp"             tools:text="小米手机"/>
        <TextView             android:id="@+id/tv_desc"             android:layout_width="match_parent"             android:layout_height="0dp"             android:layout_weight="3"             android:gravity="left|center"             android:textColor="@color/black"             android:textSize="12sp"             tools:text="小米 MI10 8GB+128GB 钛银黑 5G手机 游戏拍照手机"/>     </LinearLayout>
    <TextView         android:id="@+id/tv_count"         android:layout_width="0dp"         android:layout_height="match_parent"         android:layout_weight="1"         android:gravity="center"         android:textColor="@color/black"         android:textSize="17sp"         tools:text="2"/>
    <TextView         android:id="@+id/tv_price"         android:layout_width="0dp"         android:layout_height="match_parent"         android:layout_weight="1"         android:gravity="right|center"         android:textColor="@color/black"         android:textSize="15sp"         tools:text="1000"/>
    <TextView         android:id="@+id/tv_sum"         android:layout_width="0dp"         android:layout_height="match_parent"         android:layout_weight="1.2"         android:gravity="right|center"         android:textColor="@color/red"         android:textSize="17sp"         tools:text="2000"/>
</LinearLayout>

标签:学习,安卓,内容,博客,5.14
From: https://www.cnblogs.com/zjm921/p/18251163

相关文章

  • 5.13博客
    看看日历又是周一,本来都起床了感觉尸体有点不舒服,再躺会吧学习内容:安卓<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"  android:layout_width="match_parent"  android:layout_height="match_parent"  android:orientation="......
  • 5.17博客
    排球课比赛快完了,目前为止一场没输过,我感觉这跟我课脱不了关系学习内容:spring-boot注册条件安卓:<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"  xmlns:tools="http://schemas.android.com/tools"  android:id="@+id/ll_item"  an......
  • 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月开始的众包平台建设是万里长征,不仅需要融资,还需要找到合伙人组建新的团队。虽然当前既没有钱又没人,但万里长征已经迈出了第一步,采用企业微信+自己搭建的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......