zoukankan      html  css  js  c++  java
  • 冲刺阶段(1)

    今天是团队正式开始冲刺的第一天,大家精神头还是很足的,但是遇到问题,对于各自负责的功能都不是很熟练,于是就一边学习一边开发

    以下是我们的初步的部分登录界面代码,后期仍会改进

    <?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"
        android:background="#eeeeee"
        tools:context=".MainActivity">

        <RelativeLayout
            android:id="@+id/rl_loginactivity_top"
            android:layout_width="match_parent"
            android:layout_height="70dp"
            android:background="@color/color_minefragment_top" >

            <ImageView
                android:id="@+id/iv_loginactivity_back"
                android:layout_width="30dp"
                android:layout_height="30dp"
                android:layout_alignParentTop="true"
                android:layout_marginLeft="10dp"
                android:layout_marginTop="20dp"
                android:background="@drawable/ic_left_back"
                android:clickable="true"
                android:onClick="onClick" />

            <TextView
                android:id="@+id/tv_loginactivity_login"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="登录"
                android:textColor="#fff"
                android:textSize="20dp"
                android:layout_toRightOf="@+id/iv_loginactivity_back"
                android:layout_centerVertical="true"
                android:layout_marginLeft="20dp"
                />

  • 相关阅读:
    es date_histogram强制补零
    macos下默认的调试工具是lldb
    test
    mybaity 代码自动生成器
    初始化的问题
    SQLServer常用语句
    PowerShell Install-Module 离线安装 .nupkg包
    .NET Core语句记录
    system design(how to design tweet)
    软件-开源
  • 原文地址:https://www.cnblogs.com/swimming-learn/p/12793952.html
Copyright © 2011-2022 走看看