安卓开发日记52
所学时间:2小时
代码行数:132
博客园数:1篇
所学知识:修改的前端界面
<?xml version="1.0" encoding="utf-8"?>
<!--修改 activity_register.xml 为 LinearLayout 布局-->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/activity_register"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg"
android:orientation="vertical">
<!--三个编辑框-->
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="100dp"
android:gravity="center"
android:text="更改发布内容"
android:textColor="#516D2C"
android:textSize="30sp" />
<ImageView
android:layout_width="140dp"
android:layout_height="140dp"
android:layout_gravity="center_horizontal"
android:layout_marginTop="10dp"
android:src="@drawable/userupd" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="10dp"
android:layout_marginTop="20dp"
android:layout_marginRight="10dp"
android:layout_marginBottom="5dp">
<ImageView
android:layout_width="25dp"
android:layout_height="50dp"
android:src="@drawable/id"
android:layout_marginRight="5dp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center"
android:text="志 愿 i d : "
android:textColor="#000000"
android:textSize="20sp" />
<EditText
android:id="@+id/et_gameid"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:background="@drawable/editext_selector"
android:padding="10dp" />
<Button
android:id="@+id/btn_search"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:background="@drawable/btn_selector"
android:padding="5dp"
android:text="查询"
android:textColor="#ffffff"
android:textSize="20sp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginTop="20dp"
android:layout_marginBottom="5dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
>
<ImageView
android:layout_width="25dp"
android:layout_height="50dp"
android:src="@drawable/user"
android:layout_marginRight="5dp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="名称:"
android:textSize="20sp"
android:gravity="center"
android:textColor="#000000"/>
<EditText
android:id="@+id/et_gamename"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:background="@drawable/editext_selector"
android:padding="10dp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginTop="20dp"
android:layout_marginBottom="5dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
>
<ImageView
android:layout_width="25dp"
android:layout_height="32dp"
android:src="@drawable/major"
android:layout_marginRight="5dp"
android:layout_gravity="center"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="志愿时间:"
android:textSize="20sp"
android:gravity="center"
android:textColor="#000000"/>
<EditText
android:id="@+id/et_gametime"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:background="@drawable/editext_selector"
android:padding="10dp"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginBottom="5dp"
android:layout_marginTop="20dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
>
<ImageView
android:layout_width="25dp"
android:layout_height="50dp"
android:src="@drawable/isbn"
android:layout_marginRight="5dp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="备 注:"
android:textSize="20sp"
android:gravity="center"
android:textColor="#000000"/>
<EditText
android:id="@+id/et_gamenote"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:background="@drawable/editext_selector"
android:padding="10dp"/>
</LinearLayout>
<Button
android:id="@+id/btn_edit"
android:layout_width="415dp"
android:layout_height="50dp"
android:layout_gravity="center_horizontal"
android:layout_marginLeft="35dp"
android:layout_marginTop="5dp"
android:layout_marginRight="35dp"
android:background="@drawable/btn_selector"
android:text="修改"
android:textColor="#FFFFFF"
android:textSize="20sp" />
</LinearLayout>