2/28每日总结
所花时间:3小时
代码量:如下:
博客量:本学期截至目前12篇
了解到的知识点:android的布局
今天上学习了数据库原理和英语准备四级,但下午发烧严重就请了半天假,晚上退烧之后学习了Android 的布局的代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/frey_f3f3f3"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:padding="20dp">
<TextView
android:id="@+id/item_mainlv_top_tv1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/month_out" />
<TextView
android:id="@+id/item_mainlv_top_out"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="💴 0"
android:layout_below="@id/item_mainlv_top_tv1"
android:textSize="26sp"
android:textStyle="bold"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:layout_marginStart="10dp"
android:textColor="@color/black"
/>
<ImageView
android:id="@+id/item_mainlv_top_iv_hide"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:src="@mipmap/ih_show"
android:layout_alignTop="@+id/item_mainlv_top_out"
/>
<TextView
android:id="@+id/item_mainlv_top_tv2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/month_in"
android:layout_below="@id/item_mainlv_top_out"
/>
<TextView
android:id="@+id/item_mainlv_top_in"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/black"
android:text="💴 0"
android:layout_below="@id/item_mainlv_top_out"
android:layout_toRightOf="@id/item_mainlv_top_tv2"
android:layout_marginLeft="5dp"
/>
<TextView
android:id="@+id/item_mainlv_top_budget"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="💴 0"
android:textColor="@color/black"
android:layout_alignParentRight="true"
android:layout_alignBottom="@id/item_mainlv_top_tv2"
/>
<TextView
android:id="@+id/item_mainlv_top_tv3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@id/item_mainlv_top_tv2"
android:layout_toLeftOf="@id/item_mainlv_top_budget"
android:text="@string/budget" />
<TextView
android:id="@+id/item_mainlv_top_tv4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableLeft="@mipmap/ih_biaoge"
android:layout_below="@id/item_mainlv_top_tv2"
android:layout_centerHorizontal="true"
android:layout_marginTop="20dp"
android:text="@string/see_excel"
android:textColor="@color/green_006400"
android:drawblePadding="10dp"/>
</RelativeLayout>
<TextView
android:id="@+id/item_mainlv_top_day"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="今日支出 💴0 收入 💴0"
android:textStyle="bold"
android:layout_marginTop="20dp"
android:layout_marginBottom="10dp"
/>
</LinearLayout>

浙公网安备 33010602011771号