zoukankan      html  css  js  c++  java
  • 今日总结

    2021年2月16日:

    time.xml:

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@color/white">
    <DatePicker
    android:id="@+id/dialog_time_dp"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>

    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/please_input_time"
    android:padding="10dp"/>
    <LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:padding="10dp">
    <EditText
    android:id="@+id/dialog_time_et_hour"
    android:layout_width="60dp"
    android:layout_height="wrap_content"
    android:inputType="number"
    android:maxLength="2"/>
    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text=" : "
    android:textSize="20dp"
    android:textStyle="bold"/>
    <EditText
    android:id="@+id/dialog_time_et_minute"
    android:layout_width="60dp"
    android:layout_height="wrap_content"
    android:inputType="number"
    android:maxLength="2"/>
    </LinearLayout>
    <LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="right"
    android:orientation="horizontal">
    <Button
    android:id="@+id/dialog_time_btn_cancel"
    android:layout_width="80dp"
    android:layout_height="wrap_content"
    android:text="@string/cancel"
    android:textColor="@color/green_006400"
    android:background="@null"
    android:layout_marginRight="20dp"/>
    <Button
    android:id="@+id/dialog_time_btn_ensure"
    android:layout_width="80dp"
    android:layout_height="wrap_content"
    android:text="@string/ensure"
    android:textColor="@color/green_006400"
    android:background="@null"
    android:layout_marginRight="20dp"/>
    </LinearLayout>
    </LinearLayout>

     incom_chart.xml:

    <?xml version="1.0" encoding="utf-8"?>
    <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/grey_f3f3f3">

    <!-- TODO: Update blank fragment layout -->
    <ListView
    android:id="@+id/frag_chart_lv"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:dividerHeight="1dp"
    android:divider="@color/grey_f3f3f3"/>
    </FrameLayout>

  • 相关阅读:
    Beta冲刺 5
    Beta冲刺 4
    Beta冲刺 3
    Beta冲刺 2
    Beta冲刺 1
    项目评测博客
    Beta冲刺前准备
    Alpha 冲刺11——总结
    Alpha冲刺10
    Alpha冲刺9
  • 原文地址:https://www.cnblogs.com/yitiaokuailedexiaojingyu/p/14407457.html
Copyright © 2011-2022 走看看