Advertisement
minafaw3

keyboard android

Jun 12th, 2015
339
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 11.78 KB | None | 0 0
  1. <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  2.    xmlns:tools="http://schemas.android.com/tools"
  3.    android:layout_width="match_parent"
  4.    android:layout_height="match_parent">
  5.  
  6.     <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  7.        xmlns:tools="http://schemas.android.com/tools"
  8.        android:id="@+id/voucherrelative"
  9.        android:layout_width="match_parent"
  10.        android:layout_height="match_parent">
  11.  
  12.         <TextView
  13.            android:id="@+id/vouchertxt"
  14.            android:layout_width="match_parent"
  15.            android:layout_height="wrap_content"
  16.            android:layout_alignParentLeft="true"
  17.            android:layout_alignParentStart="true"
  18.            android:layout_alignParentTop="true"
  19.            android:layout_marginTop="20dp"
  20.            android:gravity="center"
  21.            android:text="Enter Voucher Code"
  22.            android:textSize="25sp" />
  23.  
  24.         <LinearLayout
  25.            android:id="@+id/linearLayout"
  26.            android:layout_width="match_parent"
  27.            android:layout_height="wrap_content"
  28.            android:layout_alignParentLeft="true"
  29.            android:layout_alignParentStart="true"
  30.            android:layout_below="@+id/vouchertxt"
  31.            android:layout_marginBottom="20dp"
  32.            android:layout_marginTop="20dp"
  33.            android:focusable="true"
  34.            android:focusableInTouchMode="true"
  35.            android:orientation="horizontal"
  36.            android:weightSum="3">
  37.  
  38.             <EditText
  39.                android:singleLine="true"
  40.                android:inputType="number"
  41.                android:imeOptions="actionDone"
  42.                android:id="@+id/code1"
  43.                android:layout_width="0dp"
  44.                android:layout_height="wrap_content"
  45.                android:layout_marginRight="2dp"
  46.                android:layout_weight="1"
  47.                android:focusable="true"
  48.                android:focusableInTouchMode="true"
  49.                android:gravity="center"
  50.                android:maxLength="3"
  51.                android:textSize="25dp" />
  52.  
  53.  
  54.             <EditText
  55.                android:imeOptions="actionNext"
  56.                android:id="@+id/code2"
  57.                android:inputType="number"
  58.                android:layout_width="0dp"
  59.                android:layout_height="wrap_content"
  60.                android:layout_marginRight="2dp"
  61.                android:layout_weight="1"
  62.                android:gravity="center"
  63.                android:maxLength="3"
  64.                android:textSize="25dp" />
  65.  
  66.             <EditText
  67.                android:id="@+id/code3"
  68.                android:layout_width="0dp"
  69.                android:layout_height="wrap_content"
  70.                android:layout_weight="1"
  71.                android:gravity="center"
  72.                android:inputType="number"
  73.                android:maxLength="3"
  74.                android:textSize="25dp" />
  75.  
  76.         </LinearLayout>
  77.  
  78.         <LinearLayout
  79.            android:id="@+id/linearLayout2"
  80.            android:layout_width="match_parent"
  81.            android:layout_height="match_parent"
  82.            android:layout_below="@+id/linearLayout"
  83.            android:layout_marginBottom="5dp"
  84.            android:orientation="horizontal"
  85.            android:weightSum="5">
  86.  
  87.             <Button
  88.                android:id="@+id/button7"
  89.                android:layout_width="0dp"
  90.                android:layout_height="wrap_content"
  91.                android:layout_marginRight="2dp"
  92.                android:layout_weight="1"
  93.                android:background="@drawable/roundedbutton"
  94.                android:text="7"
  95.  
  96.                android:textColor="#ffffff"
  97.  
  98.  
  99.                />
  100.  
  101.             <Button
  102.                android:id="@+id/button8"
  103.                android:layout_width="0dp"
  104.                android:layout_height="wrap_content"
  105.                android:layout_below="@+id/linearLayout"
  106.                android:layout_marginRight="2dp"
  107.                android:layout_toEndOf="@+id/linearLayout2"
  108.                android:layout_toRightOf="@+id/linearLayout2"
  109.                android:layout_weight="1"
  110.                android:background="@drawable/roundedbutton"
  111.                android:text="8"
  112.                android:textColor="#ffffff" />
  113.  
  114.             <Button
  115.                android:id="@+id/button9"
  116.                android:layout_width="0dp"
  117.                android:layout_height="wrap_content"
  118.                android:layout_alignEnd="@+id/button9"
  119.                android:layout_alignRight="@+id/button9"
  120.                android:layout_below="@+id/linearLayout"
  121.                android:layout_marginRight="2dp"
  122.                android:layout_weight="1"
  123.                android:background="@drawable/roundedbutton"
  124.                android:text="9"
  125.                android:textColor="#ffffff"
  126.  
  127.                />
  128.  
  129.             <Button
  130.                android:id="@+id/buttonDel"
  131.                android:layout_width="0dp"
  132.                android:layout_height="wrap_content"
  133.                android:layout_alignBottom="@+id/button9"
  134.                android:layout_alignEnd="@+id/scanqr"
  135.                android:layout_alignRight="@+id/scanqr"
  136.                android:layout_weight="2"
  137.                android:background="@drawable/roundedwhite"
  138.                android:text="Del"
  139.                android:textColor="#191919" />
  140.  
  141.         </LinearLayout>
  142.  
  143.         <LinearLayout
  144.            android:id="@+id/linearLayout3"
  145.            android:layout_width="match_parent"
  146.            android:layout_height="match_parent"
  147.            android:layout_alignParentLeft="true"
  148.            android:layout_alignParentStart="true"
  149.            android:layout_below="@+id/linearLayout2"
  150.            android:layout_marginBottom="5dp"
  151.            android:orientation="horizontal"
  152.            android:weightSum="5">
  153.  
  154.             <Button
  155.                android:id="@+id/button4"
  156.                android:layout_width="0dp"
  157.                android:layout_height="wrap_content"
  158.                android:layout_marginRight="2dp"
  159.                android:layout_weight="1"
  160.                android:background="@drawable/roundedbutton"
  161.                android:text="4"
  162.                android:textColor="#ffffff" />
  163.  
  164.             <Button
  165.                android:id="@+id/button5"
  166.                android:layout_width="0dp"
  167.                android:layout_height="wrap_content"
  168.                android:layout_below="@+id/linearLayout"
  169.                android:layout_marginRight="2dp"
  170.                android:layout_toEndOf="@+id/linearLayout2"
  171.                android:layout_toRightOf="@+id/linearLayout2"
  172.                android:layout_weight="1"
  173.                android:background="@drawable/roundedbutton"
  174.                android:text="5"
  175.                android:textColor="#ffffff" />
  176.  
  177.             <Button
  178.                android:id="@+id/button6"
  179.                android:layout_width="0dp"
  180.                android:layout_height="wrap_content"
  181.                android:layout_alignEnd="@+id/button9"
  182.                android:layout_alignRight="@+id/button9"
  183.                android:layout_below="@+id/linearLayout"
  184.                android:layout_weight="1"
  185.                android:background="@drawable/roundedbutton"
  186.                android:text="6"
  187.                android:textColor="#ffffff"
  188.  
  189.                />
  190.  
  191.             <Button
  192.                android:id="@+id/buttonclear"
  193.                android:layout_width="0dp"
  194.                android:layout_height="wrap_content"
  195.                android:layout_weight="2"
  196.                android:background="@drawable/roundedwhite"
  197.                android:text="Clear"
  198.                android:textColor="#191919"
  199.  
  200.                />
  201.         </LinearLayout>
  202.  
  203.         <LinearLayout
  204.            android:id="@+id/linearLayout4"
  205.            android:layout_width="match_parent"
  206.            android:layout_height="match_parent"
  207.            android:layout_alignParentLeft="true"
  208.  
  209.            android:layout_alignParentStart="true"
  210.            android:layout_below="@+id/linearLayout3"
  211.            android:layout_marginBottom="5dp"
  212.            android:orientation="horizontal"
  213.            android:weightSum="5">
  214.  
  215.             <Button
  216.                android:id="@+id/button1"
  217.                android:layout_width="0dp"
  218.                android:layout_height="wrap_content"
  219.                android:layout_marginRight="2dp"
  220.                android:layout_weight="1"
  221.                android:background="@drawable/roundedbutton"
  222.                android:text="1"
  223.                android:textColor="#ffffff" />
  224.  
  225.             <Button
  226.                android:id="@+id/button2"
  227.                android:layout_width="0dp"
  228.                android:layout_height="wrap_content"
  229.                android:layout_below="@+id/linearLayout"
  230.                android:layout_marginRight="2dp"
  231.                android:layout_toEndOf="@+id/linearLayout2"
  232.                android:layout_toRightOf="@+id/linearLayout2"
  233.                android:layout_weight="1"
  234.                android:background="@drawable/roundedbutton"
  235.                android:text="2"
  236.                android:textColor="#ffffff" />
  237.  
  238.             <Button
  239.                android:id="@+id/button3"
  240.                android:layout_width="0dp"
  241.                android:layout_height="wrap_content"
  242.                android:layout_below="@+id/linearLayout"
  243.                android:layout_marginRight="2dp"
  244.                android:layout_weight="1"
  245.                android:background="@drawable/roundedbutton"
  246.                android:text="3"
  247.                android:textColor="#ffffff"
  248.  
  249.  
  250.                />
  251.  
  252.             <Button
  253.                android:id="@+id/buttoncancel"
  254.                android:layout_width="0dp"
  255.                android:layout_height="wrap_content"
  256.                android:layout_alignEnd="@+id/scanqr"
  257.                android:layout_alignRight="@+id/scanqr"
  258.                android:layout_weight="2"
  259.                android:background="@drawable/roundedwhite"
  260.  
  261.                android:text="Cancel"
  262.                android:textColor="#191919" />
  263.         </LinearLayout>
  264.  
  265.         <LinearLayout
  266.            android:id="@+id/linearLayout5"
  267.            android:layout_width="match_parent"
  268.            android:layout_height="match_parent"
  269.            android:layout_alignParentBottom="true"
  270.            android:layout_alignParentLeft="true"
  271.            android:layout_alignParentStart="true"
  272.            android:layout_below="@+id/linearLayout4"
  273.            android:orientation="horizontal"
  274.            android:weightSum="5">
  275.  
  276.             <Button
  277.                android:id="@+id/button0"
  278.                android:layout_width="0dp"
  279.                android:layout_height="wrap_content"
  280.                android:layout_marginRight="2dp"
  281.                android:layout_weight="1"
  282.                android:background="@drawable/roundedbutton"
  283.                android:text="0"
  284.                android:textColor="#ffffff" />
  285.  
  286.             <Button
  287.                android:id="@+id/scanqr"
  288.                android:layout_width="0dp"
  289.                android:layout_height="wrap_content"
  290.                android:layout_marginRight="2dp"
  291.                android:layout_weight="2"
  292.  
  293.                android:background="@drawable/roundedwhite"
  294.                android:text="Scan "
  295.                android:textColor="#191919" />
  296.  
  297.             <Button
  298.                android:id="@+id/buttoncheck"
  299.                android:layout_width="0dp"
  300.                android:layout_height="wrap_content"
  301.                android:layout_weight="2"
  302.                android:background="@drawable/roundedbutton"
  303.                android:text="Check"
  304.                android:textColor="#ffffff"
  305.  
  306.                />
  307.  
  308.         </LinearLayout>
  309.  
  310.     </RelativeLayout>
  311. </ScrollView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement