03 2021 档案
摘要:Code.java package com.example.helloworld; import android.graphics.Bitmap; import android.graphics.Canvas; import android.graphics.Color; import androi
阅读全文
摘要:MoreActivity.java package com.example.helloworld; import android.content.Intent; import android.os.Bundle; import android.util.Log; import android.vie
阅读全文
摘要:MainActivity.java package com.example.helloworld; import android.app.AlertDialog; import android.content.ContentValues; import android.content.DialogI
阅读全文
摘要:loginActivity.java package com.example.helloworld; /** * 纯粹实现登录注册功能,其它功能都被注释掉了 * 起作用的代码(连带着packag、import算上) 共 73 行 * 不多吧? */ import android.content.In
阅读全文
摘要:RegisterActivity.java package com.example.helloworld; import android.content.Intent; import android.os.Bundle; import android.text.TextUtils; import a
阅读全文
摘要:User.java package com.example.helloworld; class User { private String username; private String userid; private String userphone; private String userad
阅读全文
摘要:activity_main.xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://
阅读全文
摘要:activity_register.xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="htt
阅读全文
摘要:new_cost_data.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation=
阅读全文
摘要:CostListAdapter.java package com.example.jizhangben; import android.content.Context; import android.view.LayoutInflater; import android.view.View; imp
阅读全文