Advertisement
Rementai

kalkulator XML

Nov 7th, 2022
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 26.45 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.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.    android:background="@color/blue"
  8.    tools:context=".MainActivity">
  9.  
  10.  
  11.     <TableLayout
  12.        android:id="@+id/tableLayout"
  13.        android:layout_width="0dp"
  14.        android:layout_height="420dp"
  15.        android:stretchColumns="*"
  16.        app:layout_constraintBottom_toBottomOf="parent"
  17.        app:layout_constraintEnd_toEndOf="parent"
  18.        app:layout_constraintHorizontal_bias="0.0"
  19.        app:layout_constraintStart_toStartOf="parent"
  20.        app:layout_constraintTop_toTopOf="parent"
  21.        app:layout_constraintVertical_bias="1.0">
  22.  
  23.         <TableRow
  24.            android:layout_width="match_parent"
  25.            android:layout_height="0dp"
  26.            android:layout_weight="1">
  27.  
  28.             <Button
  29.                android:id="@+id/clear"
  30.                android:layout_width="0dp"
  31.                android:layout_height="match_parent"
  32.                android:layout_weight="1"
  33.                android:background="@drawable/background_buttons"
  34.                android:text="AC"
  35.                android:onClick="allClear"
  36.                android:textSize="20sp"
  37.                app:backgroundTint="@color/light_gray" />
  38.  
  39.             <Button
  40.                android:id="@+id/minusButton"
  41.                android:layout_width="0dp"
  42.                android:layout_height="match_parent"
  43.                android:layout_weight="1"
  44.                android:background="@drawable/background_buttons"
  45.                android:text="+/-"
  46.                android:onClick="clickNumber"
  47.                android:textSize="20sp"
  48.                app:backgroundTint="@color/light_gray" />
  49.  
  50.             <Button
  51.                android:id="@+id/percentButton"
  52.                android:layout_width="0dp"
  53.                android:layout_height="match_parent"
  54.                android:layout_weight="1"
  55.                android:background="@drawable/background_buttons"
  56.                android:text="%"
  57.                android:onClick="countPerc"
  58.                android:textSize="20sp"
  59.                app:backgroundTint="@color/light_gray" />
  60.  
  61.             <Button
  62.                android:id="@+id/divButton"
  63.                android:layout_width="0dp"
  64.                android:layout_height="match_parent"
  65.                android:layout_weight="1"
  66.                android:background="@drawable/background_buttons"
  67.                android:text="/"
  68.                android:onClick="clickOperator"
  69.                android:textSize="20sp"
  70.                app:backgroundTint="@color/light_gray" />
  71.         </TableRow>
  72.  
  73.         <TableRow
  74.            android:layout_width="match_parent"
  75.            android:layout_height="0dp"
  76.            android:layout_weight="1">
  77.  
  78.             <Button
  79.                android:id="@+id/sevenButton"
  80.                android:layout_width="0dp"
  81.                android:layout_height="match_parent"
  82.                android:layout_weight="1"
  83.                android:background="@drawable/background_buttons"
  84.                android:text="7"
  85.                android:onClick="clickNumber"
  86.                android:textSize="20sp"
  87.                app:backgroundTint="@color/light_gray" />
  88.  
  89.             <Button
  90.                android:id="@+id/eightButton"
  91.                android:layout_width="0dp"
  92.                android:layout_height="match_parent"
  93.                android:layout_weight="1"
  94.                android:background="@drawable/background_buttons"
  95.                android:text="8"
  96.                android:onClick="clickNumber"
  97.                android:textSize="20sp"
  98.                app:backgroundTint="@color/light_gray" />
  99.  
  100.             <Button
  101.                android:id="@+id/nineButton"
  102.                android:layout_width="0dp"
  103.                android:layout_height="match_parent"
  104.                android:layout_weight="1"
  105.                android:background="@drawable/background_buttons"
  106.                android:text="9"
  107.                android:onClick="clickNumber"
  108.                android:textSize="20sp"
  109.                app:backgroundTint="@color/light_gray" />
  110.  
  111.             <Button
  112.                android:id="@+id/mulButton"
  113.                android:layout_width="0dp"
  114.                android:layout_height="match_parent"
  115.                android:layout_weight="1"
  116.                android:background="@drawable/background_buttons"
  117.                android:text="x"
  118.                android:onClick="clickOperator"
  119.                android:textSize="20sp"
  120.                app:backgroundTint="@color/light_gray" />
  121.         </TableRow>
  122.  
  123.         <TableRow
  124.            android:layout_width="match_parent"
  125.            android:layout_height="0dp"
  126.            android:layout_weight="1">
  127.  
  128.             <Button
  129.                android:id="@+id/fourButton"
  130.                android:layout_width="0dp"
  131.                android:layout_height="match_parent"
  132.                android:layout_weight="1"
  133.                android:background="@drawable/background_buttons"
  134.                android:text="4"
  135.                android:onClick="clickNumber"
  136.                android:textSize="20sp"
  137.                app:backgroundTint="@color/light_gray" />
  138.  
  139.             <Button
  140.                android:id="@+id/fiveButton"
  141.                android:layout_width="0dp"
  142.                android:layout_height="match_parent"
  143.                android:layout_weight="1"
  144.                android:background="@drawable/background_buttons"
  145.                android:text="5"
  146.                android:onClick="clickNumber"
  147.                android:textSize="20sp"
  148.                app:backgroundTint="@color/light_gray" />
  149.  
  150.             <Button
  151.                android:id="@+id/sixButton"
  152.                android:layout_width="0dp"
  153.                android:layout_height="match_parent"
  154.                android:layout_weight="1"
  155.                android:background="@drawable/background_buttons"
  156.                android:text="6"
  157.                android:onClick="clickNumber"
  158.                android:textSize="20sp"
  159.                app:backgroundTint="@color/light_gray" />
  160.  
  161.             <Button
  162.                android:id="@+id/subButton"
  163.                android:layout_width="0dp"
  164.                android:layout_height="match_parent"
  165.                android:layout_weight="1"
  166.                android:background="@drawable/background_buttons"
  167.                android:text="-"
  168.                android:onClick="clickOperator"
  169.                android:textSize="20sp"
  170.                app:backgroundTint="@color/light_gray" />
  171.  
  172.         </TableRow>
  173.  
  174.         <TableRow
  175.            android:layout_width="match_parent"
  176.            android:layout_height="0dp"
  177.            android:layout_weight="1">
  178.  
  179.             <Button
  180.                android:id="@+id/oneButton"
  181.                android:layout_width="0dp"
  182.                android:layout_height="match_parent"
  183.                android:layout_weight="1"
  184.                android:background="@drawable/background_buttons"
  185.                android:text="1"
  186.                android:onClick="clickNumber"
  187.                android:textSize="20sp"
  188.                app:backgroundTint="@color/light_gray" />
  189.  
  190.             <Button
  191.                android:id="@+id/twoButton"
  192.                android:layout_width="0dp"
  193.                android:layout_height="match_parent"
  194.                android:layout_weight="1"
  195.                android:background="@drawable/background_buttons"
  196.                android:text="2"
  197.                android:onClick="clickNumber"
  198.                android:textSize="20sp"
  199.                app:backgroundTint="@color/light_gray" />
  200.  
  201.             <Button
  202.                android:id="@+id/threeButton"
  203.                android:layout_width="0dp"
  204.                android:layout_height="match_parent"
  205.                android:layout_weight="1"
  206.                android:background="@drawable/background_buttons"
  207.                android:text="3"
  208.                android:onClick="clickNumber"
  209.                android:textSize="20sp"
  210.                app:backgroundTint="@color/light_gray" />
  211.  
  212.             <Button
  213.                android:id="@+id/sumButton"
  214.                android:layout_width="0dp"
  215.                android:layout_height="match_parent"
  216.                android:layout_weight="1"
  217.                android:background="@drawable/background_buttons"
  218.                android:text="+"
  219.                android:onClick="clickOperator"
  220.                android:textSize="20sp"
  221.                app:backgroundTint="@color/light_gray" />
  222.         </TableRow>
  223.  
  224.         <TableRow
  225.            android:layout_width="match_parent"
  226.            android:layout_height="match_parent"
  227.            android:layout_weight="1"
  228.            tools:layout_editor_absoluteX="-207dp"
  229.            tools:layout_editor_absoluteY="639dp">
  230.  
  231.             <Button
  232.                android:id="@+id/zeroButton"
  233.                android:layout_width="0dp"
  234.                android:layout_height="match_parent"
  235.                android:layout_weight="1"
  236.                android:background="@drawable/background_buttons"
  237.                android:text="0"
  238.                android:onClick="clickNumber"
  239.                android:textSize="20sp"
  240.                app:backgroundTint="@color/light_gray" />
  241.  
  242.             <Button
  243.                android:id="@+id/nothing"
  244.                android:layout_width="0dp"
  245.                android:layout_height="match_parent"
  246.                android:layout_weight="1"
  247.                android:background="@drawable/background_buttons"
  248.                app:backgroundTint="@color/light_gray"
  249.                tools:ignore="SpeakableTextPresentCheck" />
  250.  
  251.             <Button
  252.                android:id="@+id/commaButton"
  253.                android:layout_width="0dp"
  254.                android:layout_height="match_parent"
  255.                android:layout_weight="1"
  256.                android:background="@drawable/background_buttons"
  257.                android:text=","
  258.                android:onClick="clickNumber"
  259.                android:textSize="20sp"
  260.                app:backgroundTint="@color/light_gray" />
  261.  
  262.             <Button
  263.                android:id="@+id/equalsButton"
  264.                android:layout_width="0dp"
  265.                android:layout_height="match_parent"
  266.                android:layout_weight="1"
  267.                android:background="@drawable/background_buttons"
  268.                android:text="="
  269.                android:onClick="showResult"
  270.                android:textSize="20sp"
  271.                app:backgroundTint="@color/light_gray" />
  272.         </TableRow>
  273.     </TableLayout>
  274.  
  275.     <TextView
  276.        android:id="@+id/result"
  277.        android:layout_width="0dp"
  278.        android:layout_height="170dp"
  279.        android:background="@color/blue"
  280.        android:text="0"
  281.        android:textStyle="bold"
  282.        android:textAlignment="viewEnd"
  283.        android:textColor="@color/white"
  284.        android:textSize="75sp"
  285.        app:layout_constraintBottom_toTopOf="@+id/tableLayout"
  286.        app:layout_constraintEnd_toEndOf="parent"
  287.        app:layout_constraintHorizontal_bias="0.0"
  288.        app:layout_constraintStart_toStartOf="parent"
  289.        app:layout_constraintTop_toTopOf="parent"
  290.        app:layout_constraintVertical_bias="1.0"
  291.        tools:ignore="TextContrastCheck" />
  292.  
  293.     <TextView
  294.        android:id="@+id/workings"
  295.        android:layout_width="0dp"
  296.        android:layout_height="100dp"
  297.        android:text=""
  298.        android:textAlignment="viewEnd"
  299.        android:textColor="@color/white"
  300.        android:textSize="40sp"
  301.        app:layout_constraintBottom_toTopOf="@+id/result"
  302.        app:layout_constraintEnd_toEndOf="parent"
  303.        app:layout_constraintHorizontal_bias="0.0"
  304.        app:layout_constraintStart_toStartOf="parent"
  305.        app:layout_constraintTop_toTopOf="parent"
  306.        app:layout_constraintVertical_bias="1.0" />
  307. </androidx.constraintlayout.widget.ConstraintLayout>
  308.  
  309.  
  310.  
  311.  
  312.  
  313.  
  314.  
  315. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  316. LANDSCAPE
  317. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  318.  
  319.  
  320. <?xml version="1.0" encoding="utf-8"?>
  321. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  322.    xmlns:app="http://schemas.android.com/apk/res-auto"
  323.    xmlns:tools="http://schemas.android.com/tools"
  324.    android:layout_width="match_parent"
  325.    android:layout_height="match_parent"
  326.    android:background="@color/blue"
  327.    tools:context=".MainActivity">
  328.  
  329.  
  330.     <TableLayout
  331.        android:id="@+id/tableLayout"
  332.        android:layout_width="0dp"
  333.        android:layout_height="255dp"
  334.        android:stretchColumns="*"
  335.        app:layout_constraintBottom_toBottomOf="parent"
  336.        app:layout_constraintEnd_toEndOf="parent"
  337.        app:layout_constraintHorizontal_bias="0.0"
  338.        app:layout_constraintStart_toStartOf="parent"
  339.        app:layout_constraintTop_toTopOf="parent"
  340.        app:layout_constraintVertical_bias="1.0">
  341.  
  342.         <TableRow
  343.            android:layout_width="match_parent"
  344.            android:layout_height="0dp"
  345.            android:layout_weight="1">
  346.  
  347.             <Button
  348.                android:id="@+id/clear"
  349.                android:layout_width="0dp"
  350.                android:layout_height="match_parent"
  351.                android:layout_weight="1"
  352.                android:background="@drawable/background_buttons"
  353.                android:text="AC"
  354.                android:onClick="allClear"
  355.                android:textSize="20sp"
  356.                app:backgroundTint="@color/light_gray" />
  357.  
  358.             <Button
  359.                android:id="@+id/minusButton"
  360.                android:layout_width="0dp"
  361.                android:layout_height="match_parent"
  362.                android:layout_weight="1"
  363.                android:background="@drawable/background_buttons"
  364.                android:text="+/-"
  365.                android:onClick="clickNumber"
  366.                android:textSize="20sp"
  367.                app:backgroundTint="@color/light_gray" />
  368.  
  369.             <Button
  370.                android:id="@+id/percentButton"
  371.                android:layout_width="0dp"
  372.                android:layout_height="match_parent"
  373.                android:layout_weight="1"
  374.                android:background="@drawable/background_buttons"
  375.                android:text="%"
  376.                android:onClick="countPerc"
  377.                android:textSize="20sp"
  378.                app:backgroundTint="@color/light_gray" />
  379.  
  380.             <Button
  381.                android:id="@+id/divButton"
  382.                android:layout_width="0dp"
  383.                android:layout_height="match_parent"
  384.                android:layout_weight="1"
  385.                android:background="@drawable/background_buttons"
  386.                android:text="/"
  387.                android:onClick="clickOperator"
  388.                android:textSize="20sp"
  389.                app:backgroundTint="@color/light_gray" />
  390.  
  391.             <Button
  392.                android:id="@+id/logButton"
  393.                android:layout_width="0dp"
  394.                android:layout_height="match_parent"
  395.                android:layout_weight="1"
  396.                android:background="@drawable/background_buttons"
  397.                android:text="log10"
  398.                android:onClick="clickOperator"
  399.                android:textSize="20sp"
  400.                app:backgroundTint="@color/green" />
  401.         </TableRow>
  402.  
  403.         <TableRow
  404.            android:layout_width="match_parent"
  405.            android:layout_height="0dp"
  406.            android:layout_weight="1">
  407.  
  408.             <Button
  409.                android:id="@+id/sevenButton"
  410.                android:layout_width="0dp"
  411.                android:layout_height="match_parent"
  412.                android:layout_weight="1"
  413.                android:background="@drawable/background_buttons"
  414.                android:text="7"
  415.                android:onClick="clickNumber"
  416.                android:textSize="20sp"
  417.                app:backgroundTint="@color/light_gray" />
  418.  
  419.             <Button
  420.                android:id="@+id/eightButton"
  421.                android:layout_width="0dp"
  422.                android:layout_height="match_parent"
  423.                android:layout_weight="1"
  424.                android:background="@drawable/background_buttons"
  425.                android:text="8"
  426.                android:onClick="clickNumber"
  427.                android:textSize="20sp"
  428.                app:backgroundTint="@color/light_gray" />
  429.  
  430.             <Button
  431.                android:id="@+id/nineButton"
  432.                android:layout_width="0dp"
  433.                android:layout_height="match_parent"
  434.                android:layout_weight="1"
  435.                android:background="@drawable/background_buttons"
  436.                android:text="9"
  437.                android:onClick="clickNumber"
  438.                android:textSize="20sp"
  439.                app:backgroundTint="@color/light_gray" />
  440.  
  441.             <Button
  442.                android:id="@+id/mulButton"
  443.                android:layout_width="0dp"
  444.                android:layout_height="match_parent"
  445.                android:layout_weight="1"
  446.                android:background="@drawable/background_buttons"
  447.                android:text="x"
  448.                android:onClick="clickOperator"
  449.                android:textSize="20sp"
  450.                app:backgroundTint="@color/light_gray" />
  451.  
  452.             <Button
  453.                android:id="@+id/factorialButton"
  454.                android:layout_width="0dp"
  455.                android:layout_height="match_parent"
  456.                android:layout_weight="1"
  457.                android:background="@drawable/background_buttons"
  458.                android:text="x!"
  459.                android:onClick="clickOperator"
  460.                android:textSize="20sp"
  461.                app:backgroundTint="@color/green" />
  462.         </TableRow>
  463.  
  464.         <TableRow
  465.            android:layout_width="match_parent"
  466.            android:layout_height="0dp"
  467.            android:layout_weight="1">
  468.  
  469.             <Button
  470.                android:id="@+id/fourButton"
  471.                android:layout_width="0dp"
  472.                android:layout_height="match_parent"
  473.                android:layout_weight="1"
  474.                android:background="@drawable/background_buttons"
  475.                android:text="4"
  476.                android:onClick="clickNumber"
  477.                android:textSize="20sp"
  478.                app:backgroundTint="@color/light_gray" />
  479.  
  480.             <Button
  481.                android:id="@+id/fiveButton"
  482.                android:layout_width="0dp"
  483.                android:layout_height="match_parent"
  484.                android:layout_weight="1"
  485.                android:background="@drawable/background_buttons"
  486.                android:text="5"
  487.                android:onClick="clickNumber"
  488.                android:textSize="20sp"
  489.                app:backgroundTint="@color/light_gray" />
  490.  
  491.             <Button
  492.                android:id="@+id/sixButton"
  493.                android:layout_width="0dp"
  494.                android:layout_height="match_parent"
  495.                android:layout_weight="1"
  496.                android:background="@drawable/background_buttons"
  497.                android:text="6"
  498.                android:onClick="clickNumber"
  499.                android:textSize="20sp"
  500.                app:backgroundTint="@color/light_gray" />
  501.  
  502.             <Button
  503.                android:id="@+id/subButton"
  504.                android:layout_width="0dp"
  505.                android:layout_height="match_parent"
  506.                android:layout_weight="1"
  507.                android:background="@drawable/background_buttons"
  508.                android:text="-"
  509.                android:onClick="clickOperator"
  510.                android:textSize="20sp"
  511.                app:backgroundTint="@color/light_gray" />
  512.  
  513.             <Button
  514.                android:id="@+id/sqrtButton"
  515.                android:layout_width="0dp"
  516.                android:layout_height="match_parent"
  517.                android:layout_weight="1"
  518.                android:background="@drawable/background_buttons"
  519.                android:text="sqrt(x)"
  520.                android:onClick="clickOperator"
  521.                android:textSize="20sp"
  522.                app:backgroundTint="@color/green" />
  523.  
  524.         </TableRow>
  525.  
  526.         <TableRow
  527.            android:layout_width="match_parent"
  528.            android:layout_height="0dp"
  529.            android:layout_weight="1">
  530.  
  531.             <Button
  532.                android:id="@+id/oneButton"
  533.                android:layout_width="0dp"
  534.                android:layout_height="match_parent"
  535.                android:layout_weight="1"
  536.                android:background="@drawable/background_buttons"
  537.                android:text="1"
  538.                android:onClick="clickNumber"
  539.                android:textSize="20sp"
  540.                app:backgroundTint="@color/light_gray" />
  541.  
  542.             <Button
  543.                android:id="@+id/twoButton"
  544.                android:layout_width="0dp"
  545.                android:layout_height="match_parent"
  546.                android:layout_weight="1"
  547.                android:background="@drawable/background_buttons"
  548.                android:text="2"
  549.                android:onClick="clickNumber"
  550.                android:textSize="20sp"
  551.                app:backgroundTint="@color/light_gray" />
  552.  
  553.             <Button
  554.                android:id="@+id/threeButton"
  555.                android:layout_width="0dp"
  556.                android:layout_height="match_parent"
  557.                android:layout_weight="1"
  558.                android:background="@drawable/background_buttons"
  559.                android:text="3"
  560.                android:onClick="clickNumber"
  561.                android:textSize="20sp"
  562.                app:backgroundTint="@color/light_gray" />
  563.  
  564.             <Button
  565.                android:id="@+id/sumButton"
  566.                android:layout_width="0dp"
  567.                android:layout_height="match_parent"
  568.                android:layout_weight="1"
  569.                android:background="@drawable/background_buttons"
  570.                android:text="+"
  571.                android:onClick="clickOperator"
  572.                android:textSize="20sp"
  573.                app:backgroundTint="@color/light_gray" />
  574.  
  575.             <Button
  576.                android:id="@+id/cuberootButton"
  577.                android:layout_width="0dp"
  578.                android:layout_height="match_parent"
  579.                android:layout_weight="1"
  580.                android:background="@drawable/background_buttons"
  581.                android:text="x^3"
  582.                android:onClick="clickOperator"
  583.                android:textSize="20sp"
  584.                app:backgroundTint="@color/green" />
  585.         </TableRow>
  586.  
  587.         <TableRow
  588.            android:layout_width="match_parent"
  589.            android:layout_height="match_parent"
  590.            android:layout_weight="1"
  591.            tools:layout_editor_absoluteX="-207dp"
  592.            tools:layout_editor_absoluteY="639dp">
  593.  
  594.             <Button
  595.                android:id="@+id/zeroButton"
  596.                android:layout_width="0dp"
  597.                android:layout_height="match_parent"
  598.                android:layout_weight="1"
  599.                android:background="@drawable/background_buttons"
  600.                android:text="0"
  601.                android:onClick="clickNumber"
  602.                android:textSize="20sp"
  603.                app:backgroundTint="@color/light_gray" />
  604.  
  605.             <Button
  606.                android:id="@+id/nothing"
  607.                android:layout_width="0dp"
  608.                android:layout_height="match_parent"
  609.                android:layout_weight="1"
  610.                android:background="@drawable/background_buttons"
  611.                app:backgroundTint="@color/light_gray" />
  612.  
  613.             <Button
  614.                android:id="@+id/commaButton"
  615.                android:layout_width="0dp"
  616.                android:layout_height="match_parent"
  617.                android:layout_weight="1"
  618.                android:background="@drawable/background_buttons"
  619.                android:text=","
  620.                android:onClick="clickNumber"
  621.                android:textSize="20sp"
  622.                app:backgroundTint="@color/light_gray" />
  623.  
  624.             <Button
  625.                android:id="@+id/equalsButton"
  626.                android:layout_width="0dp"
  627.                android:layout_height="match_parent"
  628.                android:layout_weight="1"
  629.                android:background="@drawable/background_buttons"
  630.                android:text="="
  631.                android:onClick="showResult"
  632.                android:textSize="20sp"
  633.                app:backgroundTint="@color/light_gray" />
  634.  
  635.             <Button
  636.                android:id="@+id/squarerootButton"
  637.                android:layout_width="0dp"
  638.                android:layout_height="match_parent"
  639.                android:layout_weight="1"
  640.                android:background="@drawable/background_buttons"
  641.                android:text="x^2"
  642.                android:onClick="clickOperator"
  643.                android:textSize="20sp"
  644.                app:backgroundTint="@color/green" />
  645.         </TableRow>
  646.     </TableLayout>
  647.  
  648.     <TextView
  649.        android:id="@+id/result"
  650.        android:layout_width="0dp"
  651.        android:layout_height="70dp"
  652.        android:background="@color/blue"
  653.        android:text="0"
  654.        android:textStyle="bold"
  655.        android:textAlignment="viewEnd"
  656.        android:textColor="@color/white"
  657.        android:textSize="45sp"
  658.        app:layout_constraintBottom_toTopOf="@+id/tableLayout"
  659.        app:layout_constraintEnd_toEndOf="parent"
  660.        app:layout_constraintHorizontal_bias="0.0"
  661.        app:layout_constraintStart_toStartOf="parent"
  662.        app:layout_constraintTop_toTopOf="parent"
  663.        app:layout_constraintVertical_bias="1.0"
  664.        tools:ignore="TextContrastCheck" />
  665.  
  666.     <TextView
  667.        android:id="@+id/workings"
  668.        android:layout_width="0dp"
  669.        android:layout_height="50dp"
  670.        android:text=""
  671.        android:textAlignment="viewEnd"
  672.        android:textColor="@color/white"
  673.        android:textSize="30sp"
  674.        app:layout_constraintBottom_toTopOf="@+id/result"
  675.        app:layout_constraintEnd_toEndOf="parent"
  676.        app:layout_constraintHorizontal_bias="0.0"
  677.        app:layout_constraintStart_toStartOf="parent"
  678.        app:layout_constraintTop_toTopOf="parent"
  679.        app:layout_constraintVertical_bias="0.444" />
  680. </androidx.constraintlayout.widget.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement