安卓开发日记45

所学时间:3小时

代码行数:178

博客园数:1篇

所学知识:今天编程了添加前端界面

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:padding="10dp"
android:layout_height="match_parent"
android:background="@drawable/bg">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<TextView
android:id="@+id/tv"
android:layout_width="match_parent"
android:layout_height="120dp"
android:gravity="center"
android:text="发布志愿内容"
android:textSize="30sp"
android:textColor="#516D2C"/>

<ImageView
android:layout_width="144dp"
android:layout_height="140dp"
android:layout_gravity="center"
android:layout_marginBottom="20dp"
android:src="@drawable/usercre" />

<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:orientation="horizontal"
android:layout_marginTop="10dp">

<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:text="志 愿 i d : "
android:textSize="20sp"
android:gravity="center"
android:textColor="#000000"/>

<EditText
android:id="@+id/et_gameid"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:hint="请输入志愿id"
android:background="@drawable/editext_selector"
android:textSize="20sp"
android:textColor="#000000"
android:inputType="text"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:gravity="left|center"
android:maxLength="20"
android:paddingLeft="10dp"/>
</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:orientation="horizontal"
android:layout_marginTop="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="match_parent"
android:hint="请输入名称"
android:background="@drawable/editext_selector"
android:textSize="20sp"
android:textColor="#000000"
android:inputType="text"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:gravity="left|center"
android:maxLength="20"
android:paddingLeft="10dp"/>
</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:orientation="horizontal"
android:layout_marginTop="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"/>

<AutoCompleteTextView
android:id="@+id/et_gametime"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:hint="请输入志愿时间"
android:background="@drawable/editext_selector"
android:textSize="20sp"
android:textColor="#000000"
android:inputType="text"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:gravity="left|center"
android:maxLength="20"
android:paddingLeft="10dp"
android:completionThreshold="0"
android:completionHint="选择专业"/>
</LinearLayout>


<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:orientation="horizontal"
android:layout_marginTop="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="match_parent"
android:hint="请输入备注"
android:background="@drawable/editext_selector"
android:textSize="20sp"
android:textColor="#000000"
android:inputType="text"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:gravity="left|center"
android:maxLength="6"
android:paddingLeft="10dp"/>
</LinearLayout>

<Button
android:id="@+id/btn_add"
android:layout_width="match_parent"
android:layout_height="50dp"
android:text="发布"
android:gravity="center"
android:textSize="20sp"
android:textColor="#FFFFFF"
android:background="@drawable/btn_selector"
android:layout_marginTop="10dp"/>


</LinearLayout>


</RelativeLayout>
posted @ 2024-06-04 16:22  大虚胖子  阅读(4)  评论(0编辑  收藏  举报