zoukankan      html  css  js  c++  java
  • 今日进度

    界面代码:

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:background="#f2f0b1"

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

    <RelativeLayout
    android:background="@color/colorPrimary"
    android:id="@+id/rilltop"
    android:layout_width="match_parent"
    android:layout_height="250dp">
    <ImageView
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    android:layout_marginBottom="30dp"
    android:src="@mipmap/千库网_卡通蓝色人物头像_元素编号12544782"
    android:layout_width="100dp"
    android:layout_height="100dp"/>
    </RelativeLayout>

    <RelativeLayout
    android:layout_margin="15dp"
    android:id="@+id/rillname"
    android:background="#ffffff"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <EditText
    android:hint="请输入用户名"
    android:textColor="#141414"
    android:textColorHint="#776E6E"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>
    <ImageView
    android:src=""
    android:layout_alignParentRight="true"
    android:scaleType="center"
    android:layout_width="40dp"
    android:layout_height="50dp"/>
    </RelativeLayout>
    <RelativeLayout
    android:layout_margin="15dp"
    android:layout_marginTop="3dp"
    android:background="#ffffff"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <EditText
    android:hint="请输入密码"
    android:textColor="#141414"
    android:textColorHint="#776E6E"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>
    </RelativeLayout>
    <Button
    android:layout_margin="25dp"
    android:background="@color/colorPrimary"
    android:textSize="25sp"
    android:textColor="#ffffff"
    android:text="注 册"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />



    </LinearLayout>






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

    <RelativeLayout
    android:id="@+id/rilltop"
    android:background="@color/colorPrimary"
    android:layout_width="match_parent"
    android:layout_height="250dp">
    <ImageView
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    android:layout_marginBottom="30dp"
    android:src="@mipmap/千库网_卡通蓝色人物头像_元素编号12544782"
    android:layout_width="100dp"
    android:layout_height="100dp"/>

    </RelativeLayout>
    <RelativeLayout
    android:layout_margin="15dp"
    android:id="@+id/rillname"
    android:background="#ffffff"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <EditText
    android:hint="请输入用户名"
    android:textColor="#141414"
    android:textColorHint="#776E6E"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>
    <ImageView
    android:src=""
    android:layout_alignParentRight="true"
    android:scaleType="center"
    android:layout_width="40dp"
    android:layout_height="50dp"/>
    </RelativeLayout>
    <RelativeLayout
    android:layout_margin="15dp"
    android:layout_marginTop="3dp"
    android:background="#ffffff"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <EditText
    android:hint="请输入密码"
    android:textColor="#141414"
    android:textColorHint="#776E6E"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>
    </RelativeLayout>
    <Button
    android:layout_margin="25dp"
    android:background="#009688"
    android:textSize="25sp"
    android:textColor="#ffffff"
    android:text="登 录"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />
    <RelativeLayout
    android:layout_alignParentBottom="true"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <TextView
    android:text="无法登录?"
    android:textColor="#464040"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>
    <TextView
    android:layout_alignParentRight="true"
    android:text="新用户"
    android:textColor="#464040"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>
    </RelativeLayout>

    </LinearLayout>
  • 相关阅读:
    Python入门-函数进阶
    Python入门-初始函数
    Leetcode300. Longest Increasing Subsequence最长上升子序列
    Leetcode139. Word Break单词拆分
    Leetcode279. Perfect Squares完全平方数
    Leetcode319. Bulb Switcher灯泡开关
    Leetcode322. Coin Change零钱兑换
    二叉树三种遍历两种方法(递归和迭代)
    Leetcode145. Binary Tree Postorder Traversal二叉树的后序遍历
    Leetcode515. Find Largest Value in Each Tree Row在每个树行中找最大值
  • 原文地址:https://www.cnblogs.com/hanmy/p/14882970.html
Copyright © 2011-2022 走看看