1.今日收获内容
写登录的页面
<?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"> <TextView android:layout_width="wrap_content" android:layout_height="46dp" android:text="手机号:" android:textSize="30dp" /> <EditText android:id="@+id/edit_21" android:layout_width="match_parent" android:layout_height="55dp" android:hint="请填写手机号"/> <Button android:id="@+id/button1" android:layout_width="match_parent" android:layout_height="60dp" android:text="登录" /> <Button android:id="@+id/button2" android:layout_width="match_parent" android:layout_height="60dp" android:text="注册" /> <Button android:id="@+id/button" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="查看今日登记情况" /> </LinearLayout>
2.遇到的问题
手机号登录,但是没有短信验证,不好看
3.明天目标
java部分