第1-2周作业

 

 

 

 

 

作业二:九宫格

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/rl_1"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <View
        android:id="@+id/v_1"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="#FFE1FF"
        android:layout_centerInParent="true"/>
    <View
        android:id="@+id/v_2"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="#0EDB16"
        android:layout_above="@id/v_1"
        android:layout_toLeftOf="@id/v_1"
        />
    <View
        android:id="@+id/v_3"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="#F80505"
        android:layout_above="@id/v_1"
        android:layout_toRightOf="@id/v_1"/>
    <View
        android:id="@+id/v_4"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="#028FFA"
        android:layout_below="@id/v_1"
        android:layout_toRightOf="@id/v_1"/>

    <View
        android:id="@+id/v_5"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="#F08080"
        android:layout_below="@id/v_1"
        android:layout_toLeftOf="@id/v_1"/>
    <View
        android:id="@+id/v_6"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="#EE00EE"
        android:layout_below="@id/v_2"
        android:layout_toLeftOf="@id/v_1"/>
    <View
        android:id="@+id/v_7"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="#98F5FF"
        android:layout_below="@id/v_1"
        android:layout_toLeftOf="@id/v_4"/>
    <View
        android:id="@+id/v_8"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="#CDCDC1"
        android:layout_below="@id/v_2"
        android:layout_toRightOf="@id/v_1"/>
    <View
        android:id="@+id/v_9"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="#5CACEE"
        android:layout_above="@id/v_1"
        android:layout_toRightOf="@id/v_2"/>
</RelativeLayout>

 

 

 作业三:布局界面(QQ群截图)

 

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout   xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#01DFD7"
    android:layout_margin="15dp"
    android:orientation="vertical">



    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:background="#FFB90F"/>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="4"
        android:background="#EEAEEE"
        android:orientation="horizontal">
        <View
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="#F300BCD4"/>
        <View
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="4"
            android:background="#90F48F36"/>
        <View
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="#D800BCD4"/>
    </LinearLayout>>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:background="#2542FB2D"/>

 

作业四:制作登录界面(要求至少2个edittext,1个button,最好有一个imageview要求美观)

<?xml version="1.0" encoding="utf-8"?>
<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">

    <TextView
        android:id="@+id/tv_1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:padding="15dp"
        android:layout_margin="15dp"
        android:text="账号"
        android:textSize="15sp" />

    <TextView
        android:id="@+id/tv_2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/tv_1"
        android:layout_margin="15dp"
        android:padding="15dp"
        android:text="密码"
        android:textSize="15sp" />

    <EditText
        android:id="@+id/et_1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_marginLeft="5dp"
        android:layout_marginRight="15dp"
        android:layout_toRightOf="@+id/tv_1"
        android:background="@drawable/btn_1"
        android:padding="10dp"
        android:hint="请输入账号"
        android:drawablePadding="10dp"
        android:drawableLeft="@drawable/user"/>


    <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:layout_marginLeft="5dp"
        android:layout_marginRight="15dp"
        android:layout_marginTop="25dp"
        android:layout_toRightOf="@+id/tv_2"
        android:background="@drawable/btn_1"
        android:padding="10dp"
        android:hint="请输入密码"
        android:drawablePadding="10dp"
        android:drawableLeft="@drawable/pwd"/>

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/et_2"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="24dp"
        android:backgroundTint="#CAC8C8"
        android:text="登录"
        android:textColor="#E02A2A"
        android:background="#FDFDFD"/>

    <ImageView
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:layout_above="@id/et_1"
        android:layout_centerInParent="true"
        android:layout_marginBottom="30dp"
        android:src="@drawable/btn_2" />

 

posted @ 2021-08-17 13:35  ·梓清  阅读(38)  评论(0编辑  收藏  举报