Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 10.16 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:app="http://schemas.android.com/apk/res-auto"
  4.    xmlns:tools="http://schemas.android.com/tools"
  5.    android:layout_width="match_parent"
  6.    android:layout_height="match_parent"
  7.    tools:context=".MainActivity">
  8.  
  9.     <Button
  10.        android:id="@+id/btn_prec"
  11.        android:layout_width="wrap_content"
  12.        android:layout_height="wrap_content"
  13.        android:layout_marginStart="8dp"
  14.        android:text="@string/precedent"
  15.        app:layout_constraintStart_toStartOf="@+id/tableLayout"
  16.        app:layout_constraintTop_toTopOf="parent" />
  17.  
  18.     <TextView
  19.        android:id="@+id/tv_month_year"
  20.        android:layout_width="372dp"
  21.        android:layout_height="43dp"
  22.        android:layout_marginStart="8dp"
  23.        android:text="Juillet 2019"
  24.        android:textAlignment="center"
  25.        android:textSize="20dp"
  26.        android:textStyle="bold"
  27.        app:layout_constraintStart_toEndOf="@+id/btn_prec"
  28.        app:layout_constraintTop_toTopOf="parent" />
  29.  
  30.     <Button
  31.        android:id="@+id/btn_suiv"
  32.        android:layout_width="wrap_content"
  33.        android:layout_height="wrap_content"
  34.        android:layout_marginStart="8dp"
  35.        android:text="@string/suivant"
  36.        app:layout_constraintStart_toEndOf="@+id/tv_month_year"
  37.        app:layout_constraintTop_toTopOf="parent" />
  38.  
  39.     <TextView
  40.        android:id="@+id/tv_items"
  41.        android:layout_width="311dp"
  42.        android:layout_height="378dp"
  43.        android:layout_marginStart="8dp"
  44.        android:layout_marginTop="8dp"
  45.        android:text="ITEM"
  46.        app:layout_constraintStart_toEndOf="@+id/tableLayout"
  47.        app:layout_constraintTop_toTopOf="@+id/tv_month_year" />
  48.  
  49.     <TableLayout
  50.        android:id="@+id/tableLayout"
  51.        android:layout_width="612dp"
  52.        android:layout_height="339dp"
  53.        android:layout_marginStart="8dp"
  54.        android:layout_marginTop="36dp"
  55.        app:layout_constraintStart_toStartOf="parent"
  56.        app:layout_constraintTop_toBottomOf="@+id/tv_month_year">
  57.  
  58.         <TableRow
  59.            android:layout_width="match_parent"
  60.            android:layout_height="match_parent">
  61.  
  62.             <Button
  63.                android:id="@+id/b_00"
  64.                android:layout_width="wrap_content"
  65.                android:layout_height="wrap_content" />
  66.  
  67.             <Button
  68.                android:id="@+id/b_01"
  69.                android:layout_width="wrap_content"
  70.                android:layout_height="wrap_content" />
  71.  
  72.             <Button
  73.                android:id="@+id/b_02"
  74.                android:layout_width="wrap_content"
  75.                android:layout_height="wrap_content" />
  76.  
  77.             <Button
  78.                android:id="@+id/b_03"
  79.                android:layout_width="wrap_content"
  80.                android:layout_height="wrap_content" />
  81.  
  82.             <Button
  83.                android:id="@+id/b_04"
  84.                android:layout_width="wrap_content"
  85.                android:layout_height="wrap_content" />
  86.  
  87.             <Button
  88.                android:id="@+id/b_05"
  89.                android:layout_width="wrap_content"
  90.                android:layout_height="wrap_content" />
  91.  
  92.             <Button
  93.                android:id="@+id/b_06"
  94.                android:layout_width="wrap_content"
  95.                android:layout_height="wrap_content" />
  96.         </TableRow>
  97.  
  98.         <TableRow
  99.            android:layout_width="match_parent"
  100.            android:layout_height="match_parent">
  101.  
  102.             <Button
  103.                android:id="@+id/b_10"
  104.                android:layout_width="wrap_content"
  105.                android:layout_height="wrap_content" />
  106.  
  107.             <Button
  108.                android:id="@+id/b_11"
  109.                android:layout_width="wrap_content"
  110.                android:layout_height="wrap_content" />
  111.  
  112.             <Button
  113.                android:id="@+id/b_12"
  114.                android:layout_width="wrap_content"
  115.                android:layout_height="wrap_content" />
  116.  
  117.             <Button
  118.                android:id="@+id/b_13"
  119.                android:layout_width="wrap_content"
  120.                android:layout_height="wrap_content" />
  121.  
  122.             <Button
  123.                android:id="@+id/b_14"
  124.                android:layout_width="wrap_content"
  125.                android:layout_height="wrap_content" />
  126.  
  127.             <Button
  128.                android:id="@+id/b_15"
  129.                android:layout_width="wrap_content"
  130.                android:layout_height="wrap_content" />
  131.  
  132.             <Button
  133.                android:id="@+id/b_16"
  134.                android:layout_width="wrap_content"
  135.                android:layout_height="wrap_content" />
  136.  
  137.         </TableRow>
  138.  
  139.  
  140.         <TableRow
  141.            android:layout_width="match_parent"
  142.            android:layout_height="match_parent">
  143.  
  144.             <Button
  145.                android:id="@+id/b_20"
  146.                android:layout_width="wrap_content"
  147.                android:layout_height="wrap_content" />
  148.  
  149.             <Button
  150.                android:id="@+id/b_21"
  151.                android:layout_width="wrap_content"
  152.                android:layout_height="wrap_content" />
  153.  
  154.             <Button
  155.                android:id="@+id/b_22"
  156.                android:layout_width="wrap_content"
  157.                android:layout_height="wrap_content" />
  158.  
  159.             <Button
  160.                android:id="@+id/b_23"
  161.                android:layout_width="wrap_content"
  162.                android:layout_height="wrap_content" />
  163.  
  164.             <Button
  165.                android:id="@+id/b_24"
  166.                android:layout_width="wrap_content"
  167.                android:layout_height="wrap_content" />
  168.  
  169.             <Button
  170.                android:id="@+id/b_25"
  171.                android:layout_width="wrap_content"
  172.                android:layout_height="wrap_content" />
  173.  
  174.             <Button
  175.                android:id="@+id/b_26"
  176.                android:layout_width="wrap_content"
  177.                android:layout_height="wrap_content" />
  178.  
  179.         </TableRow>
  180.  
  181.         <TableRow
  182.            android:layout_width="match_parent"
  183.            android:layout_height="match_parent">
  184.  
  185.             <Button
  186.                android:id="@+id/b_30"
  187.                android:layout_width="wrap_content"
  188.                android:layout_height="wrap_content" />
  189.  
  190.             <Button
  191.                android:id="@+id/b_31"
  192.                android:layout_width="wrap_content"
  193.                android:layout_height="wrap_content" />
  194.  
  195.             <Button
  196.                android:id="@+id/b_32"
  197.                android:layout_width="wrap_content"
  198.                android:layout_height="wrap_content" />
  199.  
  200.             <Button
  201.                android:id="@+id/b_33"
  202.                android:layout_width="wrap_content"
  203.                android:layout_height="wrap_content" />
  204.  
  205.             <Button
  206.                android:id="@+id/b_34"
  207.                android:layout_width="wrap_content"
  208.                android:layout_height="wrap_content" />
  209.  
  210.             <Button
  211.                android:id="@+id/b_35"
  212.                android:layout_width="wrap_content"
  213.                android:layout_height="wrap_content" />
  214.  
  215.             <Button
  216.                android:id="@+id/b_36"
  217.                android:layout_width="wrap_content"
  218.                android:layout_height="wrap_content" />
  219.  
  220.         </TableRow>
  221.  
  222.  
  223.         <TableRow
  224.            android:layout_width="match_parent"
  225.            android:layout_height="match_parent">
  226.  
  227.             <Button
  228.                android:id="@+id/b_40"
  229.                android:layout_width="wrap_content"
  230.                android:layout_height="wrap_content" />
  231.  
  232.             <Button
  233.                android:id="@+id/b_41"
  234.                android:layout_width="wrap_content"
  235.                android:layout_height="wrap_content" />
  236.  
  237.             <Button
  238.                android:id="@+id/b_42"
  239.                android:layout_width="wrap_content"
  240.                android:layout_height="wrap_content" />
  241.  
  242.             <Button
  243.                android:id="@+id/b_43"
  244.                android:layout_width="wrap_content"
  245.                android:layout_height="wrap_content" />
  246.  
  247.             <Button
  248.                android:id="@+id/b_44"
  249.                android:layout_width="wrap_content"
  250.                android:layout_height="wrap_content" />
  251.  
  252.             <Button
  253.                android:id="@+id/b_45"
  254.                android:layout_width="wrap_content"
  255.                android:layout_height="wrap_content" />
  256.  
  257.             <Button
  258.                android:id="@+id/b_46"
  259.                android:layout_width="wrap_content"
  260.                android:layout_height="wrap_content" />
  261.  
  262.         </TableRow>
  263.  
  264.         <TableRow
  265.            android:layout_width="match_parent"
  266.            android:layout_height="match_parent">
  267.  
  268.             <Button
  269.                android:id="@+id/b_50"
  270.                android:layout_width="wrap_content"
  271.                android:layout_height="wrap_content" />
  272.  
  273.             <Button
  274.                android:id="@+id/b_51"
  275.                android:layout_width="wrap_content"
  276.                android:layout_height="wrap_content" />
  277.  
  278.             <Button
  279.                android:id="@+id/b_52"
  280.                android:layout_width="wrap_content"
  281.                android:layout_height="wrap_content" />
  282.  
  283.             <Button
  284.                android:id="@+id/b_53"
  285.                android:layout_width="wrap_content"
  286.                android:layout_height="wrap_content" />
  287.  
  288.             <Button
  289.                android:id="@+id/b_54"
  290.                android:layout_width="wrap_content"
  291.                android:layout_height="wrap_content" />
  292.  
  293.             <Button
  294.                android:id="@+id/b_55"
  295.                android:layout_width="wrap_content"
  296.                android:layout_height="wrap_content" />
  297.  
  298.             <Button
  299.                android:id="@+id/b_56"
  300.                android:layout_width="wrap_content"
  301.                android:layout_height="wrap_content" />
  302.  
  303.         </TableRow>
  304.  
  305.  
  306.     </TableLayout>
  307. </android.support.constraint.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement