首页 > 其他分享 >记账本开发记录八

记账本开发记录八

时间:2024-02-29 18:23:03浏览次数:35  
标签:账单 记录 开发 记账 往常 页面

实现第三个功能,查看账单记录。

和往常相同,首先制作页面布局

 

 

复制代码
<?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="match_parent"
    android:orientation="vertical"
    android:background="@color/grey_f3f3f3">
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="50dp">
        <ImageView
            android:id="@+id/history_iv_back"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:src="@mipmap/it_back"
            android:layout_marginLeft="10dp"
            android:onClick="onClick"/>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/history_record"
            android:textStyle="bold"
            android:textSize="18sp"
            android:layout_centerInParent="true"/>
        <ImageView
            android:id="@+id/history_iv_rili"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_marginRight="10dp"
            android:src="@mipmap/it_rili"
            android:layout_alignParentRight="true"
            android:onClick="onClick"/>
    </RelativeLayout>
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="10dp">
        <TextView
            android:id="@+id/history_tv_time"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="2021年10月"/>
        <TextView
            android:id="@+id/history_tv_info"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:textColor="@color/green_006400"
            android:text="@string/history_info"/>
    </RelativeLayout>

    <ListView
        android:id="@+id/history_lv"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:divider="@null"
        android:dividerHeight="5dp"
        android:padding="10dp" />
</LinearLayout>
复制代码

标签:账单,记录,开发,记账,往常,页面
From: https://www.cnblogs.com/bdsz/p/18045069

相关文章

  • 云数据库常见问题与解决方案:从开发工程师的角度看
    本文分享自天翼云开发者社区《云数据库常见问题与解决方案:从开发工程师的角度看》,作者:不知不觉随着云计算的普及和发展,云数据库作为支撑现代应用的重要基础设施,其重要性日益凸显。作为开发工程师,我们在使用云数据库时,难免会遇到一些问题。本文旨在探讨云数据库常见的问题,并提出相......
  • vue中draggable使用记录
    NPM或yarn安装方式yarnaddvuedraggablenpmi-SvuedraggableUMD浏览器直接引用JS方式<scriptsrc="https://www.itxst.com/package/vue/vue.min.js"></script><scriptsrc="https://www.itxst.com/package/sortable/Sortable.min.js"></scri......
  • 好用的网站记录
    1.DataV一个基于Vue的数据可视化组件库,提供用于提升页面视觉效果的SVG边框和装饰、常用的图表如折线图等和飞线图/轮播表等其他组件 在线观看地址:DataV(jiaminghi.com)github地址:GitHub-lin-xin/vue-manage-system:Vue3、ElementPlus、typescript后台管理系统  2......
  • ssts-hospital-web-master项目实战记录三十:项目迁移-Hook实现(useSystemService)
    记录时间:2024-02-29一、useSystemService模块实现service/system-service/useTerminalService.tsimporthydatefrom'@/utils/date-format'import{LogInfo}from'@/framework/utils/log-local'import{Device}from'@/types/device'impor......
  • Android 开发Day6
    <?xmlversion="1.0"encoding="UTF-8"?><projectversion="4"><componentname="GradleMigrationSettings"migrationVersion="1"/><componentname="GradleSettings">&l......
  • Android 开发Day7
    <projectversion="4"><componentname="ExternalStorageConfigurationManager"enabled="true"/><componentname="ProjectRootManager"><outputurl="file://$PROJECT_DIR$/build/classes&q......
  • Android 开发Day8
    /*AUTO-GENERATEDFILE.DONOTMODIFY.**Thisclasswasautomaticallygeneratedbythe*gradlepluginfromtheresourcedataitfound.It*shouldnotbemodifiedbyhand.*/packageandroidx.activity;publicfinalclassR{privateR(){}......
  • Android 开发Day9
    /***Automaticallygeneratedfile.DONOTMODIFY*/packagecom.hui.tally;publicfinalclassBuildConfig{publicstaticfinalbooleanDEBUG=Boolean.parseBoolean("true");publicstaticfinalStringAPPLICATION_ID="com.hui.tally......
  • Android 开发Day3
    每次重新创建一个项目时,需要下载所对应的.gradle文件,但是你的磁盘里有相应的.gradle文件,随着你创建的Project越多,下载的gradle文件就会越多,占用内存就会越大。 解决方案:首先设置Gradleuserhome的相对路径,(第一次设置时,加载Gradle文件会有点慢,如有报错或重新下载,直接按图2......
  • Android 开发Day4
     我们双击进入activity_main.xml先将android.support.constraint.ConstraintLayout改为LinerLayout线性的,意思就是水平的的结构并加入android:orientation="vertical"意思是将所有组件垂直摆放<?xmlversion="1.0"encoding="utf-8"?><LinearLayoutxmlns:android=&......