Newer
Older
MathsCalc / app / src / main / res / layout / lt_keyboard.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/ic_key_bg"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <TextView
            android:id="@+id/key_1"
            style="@style/KeyStyle"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="1" />

        <TextView
            android:id="@+id/key_2"
            style="@style/KeyStyle"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="2" />

        <TextView
            android:id="@+id/key_3"
            style="@style/KeyStyle"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="3" />

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <TextView
            android:id="@+id/key_4"
            style="@style/KeyStyle"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="4" />

        <TextView
            android:id="@+id/key_5"
            style="@style/KeyStyle"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="5" />

        <TextView
            android:id="@+id/key_6"
            style="@style/KeyStyle"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="6" />

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <TextView
            android:id="@+id/key_7"
            style="@style/KeyStyle"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="7" />

        <TextView
            android:id="@+id/key_8"
            style="@style/KeyStyle"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="8" />

        <TextView
            android:id="@+id/key_9"
            style="@style/KeyStyle"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="9" />

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <FrameLayout
            android:id="@+id/key_clean"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:background="@drawable/press_white_t_gray"
            android:layout_weight="1">

            <TextView
                style="@style/KeyStyle"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:text="" />

            <ImageView
                android:layout_width="40dp"
                android:layout_height="40dp"
                android:layout_gravity="center"
                android:src="@drawable/ic_clean" />
        </FrameLayout>

        <TextView
            android:id="@+id/key_0"
            style="@style/KeyStyle"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="0" />

        <FrameLayout
            android:id="@+id/key_ok"
            android:layout_width="0dp"
            android:background="@drawable/press_white_t_gray"
            android:layout_height="wrap_content"
            android:layout_weight="1">

            <TextView
                style="@style/KeyStyle"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:text="" />

            <ImageView
                android:layout_width="40dp"
                android:layout_height="40dp"
                android:layout_gravity="center"
                android:src="@drawable/ic_ok" />
        </FrameLayout>

    </LinearLayout>

</LinearLayout>