zoukankan      html  css  js  c++  java
  • 家庭记账本(五)

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

    <TextView
    android:id="@+id/tv_title"
    android:layout_width="150dp"
    android:layout_height="80dp"
    android:layout_marginLeft="10dp"
    android:layout_alignParentLeft="true"
    android:gravity="center"
    android:singleLine="true"
    android:textSize="35sp"
    android:text="costTitle"
    android:ellipsize="marquee" />

    <TextView
    android:id="@+id/tv_date"
    android:layout_width="wrap_content"
    android:layout_height="80dp"
    android:layout_toRightOf="@+id/tv_title"
    android:layout_marginLeft="15dp"
    android:textSize="20sp"
    android:gravity="center"
    android:text="costDate"/>

    <TextView
    android:id="@+id/tv_cost"
    android:layout_width="wrap_content"
    android:layout_height="80dp"
    android:text="30"
    android:textSize="30sp"
    android:layout_marginRight="20dp"
    android:layout_alignParentRight="true"
    android:gravity="center"/>
    </RelativeLayout>
  • 相关阅读:
    A1020 Tree Traversals [中序后序建树]
    bfs 找步数最少的迷宫路径
    hdu 1241
    hdu 素数环
    A1054 The Dominant Color [map]
    A1097 Deduplication on a Linked List [链表去重]
    C# 中Dictionary的用法及用途
    C#文件操作
    C# 属性概述
    C# Lock的用法
  • 原文地址:https://www.cnblogs.com/huangmouren233/p/14912773.html
Copyright © 2011-2022 走看看