Skip to content

Commit

Permalink
hzuapps#4 hzuapps#34 第四次作业
Browse files Browse the repository at this point in the history
  • Loading branch information
zhongwbang committed May 15, 2017
1 parent 543014b commit 7c03118
Show file tree
Hide file tree
Showing 4 changed files with 178 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package edu.hzuapps.androidlabs.homeworks.net1414080903202;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

import edu.hzuapps.androidlabs.R;

public class Net1414080903202List_Check extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_net1414080903202_list_check);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package edu.hzuapps.androidlabs.homeworks.net1414080903202;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

import edu.hzuapps.androidlabs.R;

public class Net1414080903202Main_Check extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_net1414080903202_main_check);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
<?xml version="1.0" encoding="utf-8"?>
<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="match_parent"
android:orientation="vertical"
tools:context="edu.hzuapps.androidlabs.homeworks.net1414080903202.Net1414080903202manage">

<FrameLayout

android:layout_margin="20dp"
android:background="#ffffff"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<TextView
android:layout_width="80dp"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:layout_marginLeft="40dp"
android:textSize="20dp"
android:textColor="#000000"
android:text="日期:"
/>


<TextView
android:layout_width="80dp"
android:layout_height="wrap_content"
android:layout_marginTop="50dp"
android:layout_marginLeft="40dp"
android:textSize="20dp"
android:textColor="#000000"
android:text="收入:"
/>

<TextView
android:layout_width="80dp"
android:layout_height="wrap_content"
android:layout_marginTop="85dp"
android:layout_marginLeft="40dp"
android:textSize="20dp"
android:textColor="#000000"
android:text="支出:"
/>

<TextView
android:layout_width="80dp"
android:layout_height="wrap_content"
android:layout_marginTop="120dp"
android:layout_marginLeft="40dp"
android:textSize="20dp"
android:textColor="#000000"
android:text="备注:"
/>

<TextView
android:layout_width="80dp"
android:layout_height="wrap_content"
android:layout_marginTop="155dp"
android:layout_marginLeft="40dp"
android:textSize="20dp"
android:textColor="#000000"
android:text="盈亏:"/>

<TextView
android:layout_width="80dp"
android:layout_height="wrap_content"
android:layout_marginTop="190dp"
android:layout_marginLeft="40dp"
android:textSize="20dp"
android:textColor="#000000"
android:text="余额:"/>

<TextView
android:layout_width="match_parent"
android:layout_height="30dp"
android:layout_marginTop="50dp"
android:layout_marginRight="40dp"
android:gravity="right"
android:textSize="20dp"
android:textColor="#000000"
android:hint=""
/>

<TextView
android:layout_width="match_parent"
android:layout_height="30dp"
android:layout_marginTop="85dp"
android:layout_marginRight="40dp"
android:gravity="right"
android:textSize="20dp"
android:textColor="#000000"
android:hint=""
/>

<TextView
android:layout_width="match_parent"
android:layout_height="30dp"
android:layout_marginTop="155dp"
android:layout_marginRight="40dp"
android:gravity="right"
android:textSize="20dp"
android:textColor="#000000"
android:hint=""
/>

<TextView
android:layout_width="match_parent"
android:layout_height="30dp"
android:layout_marginTop="190dp"
android:layout_marginRight="40dp"
android:gravity="right"
android:textSize="20dp"
android:textColor="#000000"
android:hint=""
/>


</FrameLayout>



</LinearLayout>



Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_net1414080903202_main_check"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="edu.hzuapps.androidlabs.homeworks.net1414080903202.Net1414080903202Main_Check">

<ListView
android:id="@+id/accountCheck"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:divider="#8F8F8F"
android:dividerHeight="1dp">



</ListView>


</RelativeLayout>

0 comments on commit 7c03118

Please sign in to comment.