第一二周作业

作业1:安装环境,截图编程界面,截图运行界面

 

 

 

作业2:九宫格

<?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:id="@+id/r_1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="20dp">
    <View
        android:id="@+id/v_1"
        android:layout_width="90dp"
        android:layout_height="90dp"
        android:background="#D47DE6"
        android:layout_centerInParent="true"/>
    <View
        android:id="@+id/v_2"
        android:layout_width="90dp"
        android:layout_height="90dp"
        android:background="#1231DA"
        android:layout_above="@id/v_1"
        android:layout_toLeftOf="@id/v_1"/>
    <View
        android:id="@+id/v_3"
        android:layout_width="90dp"
        android:layout_height="90dp"
        android:background="#1ACE21"
        android:layout_below="@id/v_2"
        android:layout_toLeftOf="@id/v_1"/>
    <View
        android:id="@+id/v_4"
        android:layout_width="90dp"
        android:layout_height="90dp"
        android:background="#EBD304"
        android:layout_toLeftOf="@id/v_1"
        android:layout_below="@id/v_3"/>
    <View
        android:id="@+id/v_5"
        android:layout_width="90dp"
        android:layout_height="90dp"
        android:background="#B1C210"
        android:layout_below="@id/v_1"
        android:layout_toRightOf="@id/v_1"/>
    <View
        android:id="@+id/v_6"
        android:layout_width="90dp"
        android:layout_height="90dp"
        android:background="#DB7069"
        android:layout_above="@id/v_5"
        android:layout_toRightOf="@id/v_1"/>
    <View
        android:id="@+id/v_7"
        android:layout_width="90dp"
        android:layout_height="90dp"
        android:background="#51B1A8"
        android:layout_above="@id/v_6"
        android:layout_toRightOf="@id/v_1"/>
    <View
        android:id="@+id/v_8"
        android:layout_width="90dp"
        android:layout_height="90dp"
        android:background="#0685EE"
        android:layout_below="@id/v_1"
        android:layout_toRightOf="@id/v_2"/>
    <View
        android:id="@+id/v_9"
        android:layout_width="90dp"
        android:layout_height="90dp"
        android:background="#DAEE06"
        android:layout_above="@id/v_1"
        android:layout_toRightOf="@id/v_2"/>



</RelativeLayout>

 

 

作业3:布局界面(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="#FFFFFF"
    android:layout_margin="10dp"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:background="#4CAF50"/>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="4"
        android:background="#0000FF0D"
        android:orientation="horizontal">

        <View
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="#2196F3"/>

        <View
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="4"
            android:background="#02FF5722"/>

        <View
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="#2196F3"/>

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:background="#4CAF50"/>

</LinearLayout>

 

 

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

 

<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
<ImageButton
    android:id="@+id/v_1"
    android:layout_width="150dp"
    android:layout_height="150dp"
    android:background="#FFFFFF"
    android:src="@drawable/icon"
    android:layout_above="@id/v_2"
    android:layout_centerInParent="true"
    ></ImageButton>
    <EditText
        android:id="@+id/v_2"
        android:layout_width="match_parent"
        android:layout_height="60dp"
        android:hint="用户名"
        android:background="@drawable/tv_1"
        android:layout_marginLeft="10dp"
        android:textColor="#000000"
        android:textSize="15sp"
        android:padding="10dp"
        android:layout_margin="15dp"
        android:drawablePadding="10dp"
        android:layout_centerInParent="true"
        android:drawableLeft="@drawable/user"></EditText>

    <EditText
        android:id="@+id/v_3"
        android:layout_width="match_parent"
        android:layout_height="60dp"
        android:layout_marginLeft="10dp"
        android:hint="密码"
        android:background="@drawable/tv_1"
        android:padding="10dp"
        android:textColor="#000000"
        android:textSize="15sp"
        android:layout_below="@id/v_2"
        android:layout_margin="15dp"
        android:drawablePadding="10dp"
        android:drawableLeft="@drawable/pwd"></EditText>
    <Button
        android:id="@+id/btn_1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/btn_1"
        android:textColor="#00FFEE"
        android:layout_below="@id/v_3"
        android:layout_margin="15dp"
        android:text="登录"></Button>
</RelativeLayout>

 

posted @ 2021-08-29 15:35  叶鑫宇  阅读(30)  评论(0编辑  收藏  举报