Android第一二周作业

1.

2.

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/v_0"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <View
        android:id="@+id/v_1"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:background="#000000"
        android:layout_centerInParent="true"/>
    <View
        android:id="@+id/v_2"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:background="#1C52B1"
        android:layout_above="@id/v_1"
        android:layout_toLeftOf="@id/v_1"
        />
    <View
        android:id="@+id/v_3"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:background="#331E1E"
        android:layout_above="@id/v_1"
        android:layout_toRightOf="@id/v_1"/>
    <View
        android:id="@+id/v_4"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:background="#FF004C"
        android:layout_below="@id/v_1"
        android:layout_toRightOf="@id/v_1"/>

    <View
        android:id="@+id/v_5"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:background="#6700DA"
        android:layout_below="@id/v_1"
        android:layout_toLeftOf="@id/v_1"/>
    <View
        android:id="@+id/v_6"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:background="#FCE103"
        android:layout_below="@id/v_2"
        android:layout_toLeftOf="@id/v_1"/>
    <View
        android:id="@+id/v_7"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:background="#86F803"
        android:layout_below="@id/v_1"
        android:layout_toLeftOf="@id/v_4"/>
    <View
        android:id="@+id/v_8"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:background="#432B096B"
        android:layout_below="@id/v_2"
        android:layout_toRightOf="@id/v_1"/>

    <View
        android:id="@+id/v_9"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:layout_above="@id/v_1"
        android:background="#432B096B"
        android:layout_toRightOf="@id/v_2"></View>
</RelativeLayout>

 

3.
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#FAFAFA"
    android:layout_margin="20dp"
    android:orientation="horizontal">

    <View
        android:id="@+id/v_1"
        android:layout_width="match_parent"
        android:layout_height="75dp"
        android:background="#03A9F4"
        android:layout_alignParentTop="true"/>
    <View
        android:id="@+id/v_2"
        android:layout_width="match_parent"
        android:layout_height="75dp"
        android:background="#03A9F4"
        android:layout_alignParentBottom="true"/>

    <View
        android:id="@+id/v_3"
        android:layout_width="80dp"
        android:layout_height="551dp"
        android:layout_below="@+id/v_1"
        android:layout_above="@+id/v_2"
        android:layout_alignParentLeft="true"
        android:background="#FFEB3B" />
    <View
        android:id="@+id/v_4"
        android:layout_width="80dp"
        android:layout_height="551dp"
        android:layout_below="@+id/v_1"
        android:layout_above="@+id/v_2"
        android:layout_alignParentRight="true"
        android:background="#FFEB3B" />
</RelativeLayout>

4.

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"

    android:layout_width="match_parent"
    android:layout_height="match_parent"

    tools:context=".MainActivity"
    android:orientation="vertical">


    <ImageView
        android:id="@+id/Tu_1"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:background="@drawable/user2"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="100dp"/>
    <TextView
        android:id="@+id/tv_1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="用户"
        android:textSize="24sp"
        android:textColor="#000000"
        android:layout_margin="10dp"
        android:layout_centerVertical="true"
        android:padding="10dp"/>
    <TextView
        android:id="@+id/tv_2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="密码"
        android:textSize="24sp"
        android:textColor="#000000"
        android:layout_margin="10dp"
        android:layout_centerVertical="true"
        android:padding="10dp"
        android:layout_below="@id/tv_1"/>
    <EditText
        android:id="@+id/et_1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:hint="请输入账号"
        android:textColor="#000000"
        android:textSize="24sp"
        android:layout_margin="10dp"
        android:padding="10dp"
        android:layout_toRightOf="@id/tv_1"
        android:drawablePadding="10dp"/>
    <EditText
        android:id="@+id/et_2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/tv_1"
        android:layout_centerVertical="true"
        android:hint="请输入密码"
        android:textColor="#000000"
        android:textSize="24sp"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:padding="10dp"
        android:layout_toRightOf="@id/tv_1"
        android:drawablePadding="10dp"/>
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/et_2"
        android:layout_centerHorizontal="true"
        android:layout_margin="20dp"
        android:padding="10dp"
        android:background="#17AAEE"
        android:text="登录"
        android:textSize="24sp"
        android:textColor="#000000"/>
</RelativeLayout>

 

posted @ 2021-08-29 14:12  韩世康  阅读(37)  评论(0编辑  收藏  举报