COMPLETE XML CODE:Spinner calculator

here is the complete XML code..

<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="match_parent"
    android:layout_width="match_parent">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    android:background="@drawable/abcd"
    android:orientation="vertical"
    >
KODIBUNTU     <TextView
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:text="Enter First Number Below:"
        android:textSize="17dp"
        android:textStyle="bold"
        android:id="@+id/no1txtvew"
        android:gravity="center"
        android:layout_alignParentTop="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:textColor="#080808"
        />
    <EditText
        android:layout_width="wrap_content"
        android:layout_height="50dp"
        android:inputType="numberDecimal"
        android:ems="10"
        android:id="@+id/nmbr1txtvew"
        android:layout_gravity="center_horizontal|center"
        />

No comments:

Post a Comment