Imran2544

Calculator (Input xml)

Oct 31st, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.02 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    android:orientation="vertical" android:layout_width="match_parent"
  4.    android:background="@color/black"
  5.    android:layout_height="wrap_content">
  6.  
  7.     <TextView
  8.        android:id="@+id/output"
  9.        android:layout_width="match_parent"
  10.        android:layout_height="wrap_content"
  11.        android:textSize="@dimen/_25sdp"
  12.        android:fontFamily="sans-serif-light"
  13.        android:textColor="@color/white"
  14.        android:background="#000000"
  15.        android:padding="@dimen/_10sdp"
  16.        android:text=""/>
  17.  
  18.  
  19.     <TextView
  20.        android:id="@+id/input"
  21.        android:layout_width="match_parent"
  22.        android:layout_height="wrap_content"
  23.        android:textSize="@dimen/_45sdp"
  24.        android:fontFamily="sans-serif-light"
  25.        android:textColor="@color/white"
  26.        android:background="#000000"
  27.        android:padding="@dimen/_10sdp"
  28.        android:text=""/>
  29.  
  30.  
  31. </LinearLayout>
Add Comment
Please, Sign In to add comment