zoukankan      html  css  js  c++  java
  • 团队作业第二天

    用户部分为:个人主页,添加订单页面,订单页面,查询页面四个页面

    为了方便首先写了一个导航控件

    复制代码
    <?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="wrap_content"
        android:background="#CCCCFF">
    
        <Button
            android:id="@+id/order"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="center"
            android:layout_marginLeft="30dp"
            android:text="订单"
    
            ></Button>
        <Button
            android:id="@+id/add"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:text="添加"
            android:layout_gravity="center"
            ></Button>
        <Button
            android:id="@+id/modify"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:text="修改"
            ></Button>
        <Button
            android:id="@+id/my"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="center"
            android:layout_marginRight="2dp"
            android:text="我的"></Button>
    </LinearLayout>
    复制代码

    然后是控件的运用重构之后就可以直接插入运行了

    复制代码
    package com.e.recily;
    
    import android.content.Context;
    import android.util.AttributeSet;
    import android.view.LayoutInflater;
    import android.widget.LinearLayout;
    
    import androidx.annotation.Nullable;
    
    public class guide extends LinearLayout {
    
        public guide(Context context, @Nullable AttributeSet attrs) {
            super(context, attrs);
            LayoutInflater.from(context).inflate(R.layout.guide,this);
        }
    }
    复制代码
  • 相关阅读:
    呈现系统-组件间的通信方式(7)
    web项目中图标的前端处理方案
    ADO--数据访问技术
    canvas--绘制路径
    canvas--改变颜色
    canvas-在画布中画两个方块(一个空心一个实体)
    canvas--画布《第一步》
    拼图游戏【简单】
    判断字符串是否为空--string.Empty、string=""、s.length==0
    判断Char是否为数字
  • 原文地址:https://www.cnblogs.com/zyljal/p/14762828.html
Copyright © 2011-2022 走看看