zoukankan      html  css  js  c++  java
  • JAVA日报

    换汤不换药之家庭记账本app开发(layout4) 

    <?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="wrap_content"
    android:orientation="vertical">
    <TextView
    android:text="日期:"
    android:textSize="20dp"
    android:textColor="@color/purple_200"
    android:id="@+id/date"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>
    <TextView
    android:text="食品消费:"
    android:textSize="20dp"
    android:textColor="@color/purple_200"
    android:id="@+id/eat"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>
    <TextView
    android:text="娱乐消费:"
    android:textSize="20dp"
    android:textColor="@color/purple_200"
    android:id="@+id/play"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>
    <TextView
    android:text="衣物消费:"
    android:textSize="20dp"
    android:textColor="@color/purple_200"
    android:id="@+id/clothes"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>
    <TextView
    android:text="水电消费:"
    android:textSize="20dp"
    android:textColor="@color/purple_200"
    android:id="@+id/live"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>
    <TextView
    android:text="其他消费:"
    android:textSize="20dp"
    android:textColor="@color/purple_200"
    android:id="@+id/usual"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>

    </LinearLayout>
  • 相关阅读:
    设计模式 -- 桥接模式(Bridge)
    设计模式 -- 单例模式(Singleton)
    设计模式 -- 简单工厂模式
    Nginx服务器的启动控制
    【Vue.js】二、Vue的基础
    【Vue.js】一、Vue介绍和安装使用
    linux常用操作命令
    Redis的学习(一、Redis的一些常用技术)
    Spring的学习(四、Spring事务管理)
    Spring的学习(三、Spring中的AOP)
  • 原文地址:https://www.cnblogs.com/mumulailai/p/14909806.html
Copyright © 2011-2022 走看看