<RelativeLayout
android:id=“@+id/relative”
xmlns:android=“http://schemas.android.com/apk/res/android”
android:layout_width=“match_parent”
android:layout_height=“match_parent”>
<GridLayout
android:layout_centerHorizontal=“true”
android:layout_centerInParent=“true”
android:columnCount=“4”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”>
<EditText
android:layout_columnSpan=“4”
android:textColor=“#fff”
android:background=“#363636”
android:layout_width=“match_parent”
android:layout_height=“100dp”
/>
<Button
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:background=“#CFD0D3”
android:text=“C” />
<Button
android:layout_height=“wrap_content”
android:layout_width=“wrap_content”
android:background=“#CFD0D3”
android:text=“BS” />
<Button
android:layout_height=“wrap_content”
android:layout_width=“wrap_content”
android:background=“#CFD0D3”
android:text=“%” />
<Button
android:layout_height=“wrap_content”
android:layout_width=“wrap_content”
android:background=“#FA8910”
android:textColor=“#FFFF”
android:text=“/” />
<Button
android:layout_height=“wrap_content”
android:layout_width=“wrap_content”
android:background=“#CFD0D3”
android:text=“7” />
<Button
android:layout_height=“wrap_content”
android:layout_width=“wrap_content”
android:background=“#CFD0D3”
android:text=“8” />
<Button
android:layout_height=“wrap_content”
android:layout_width=“wrap_content”
android:background=“#CFD0D3”
android:text=“9” />
<Button
android:textColor=“#FFFF”
android:layout_height=“wrap_content”
android:layout_width=“wrap_content”
android:background=“#FA8910”
android:text=“x” />
<Button
android:layout_height=“wrap_content”
android:layout_width=“wrap_content”
android:background=“#CFD0D3”
android:text=“4” />
<Button
android:layout_height=“wrap_content”
android:layout_width=“wrap_content”
android:background=“#CFD0D3”
android:text=“5” />
<Button
android:layout_height=“wrap_content”
android:layout_width=“wrap_content”
android:background=“#CFD0D3”
android:text=“6” />
<Button
android:textColor=“#FFFF”
android:layout_height=“wrap_content”
android:layout_width=“wrap_content”
android:background=“#FA8910”
android:text=“-“ />
<Button
android:layout_height=“wrap_content”
android:layout_width=“wrap_content”
android:background=“#CFD0D3”
android:text=“1” />
<Button
android:layout_height=“wrap_content”
android:layout_width=“wrap_content”
android:background=“#CFD0D3”
android:text=“2” />
<Button
android:layout_height=“wrap_content”
android:layout_width=“wrap_content”
android:background=“#CFD0D3”
android:text=“3” />
<Button
android:textColor=“#FFFF”
android:layout_height=“wrap_content”
android:layout_width=“wrap_content”
android:background=“#FA8910”
android:text=“+” />
<Button
android:layout_columnSpan=“2”
android:layout_gravity=“fill”
android:background=“#CFD0D3”
android:text=“0” />
<Button
android:layout_height=“wrap_content”
android:layout_width=“wrap_content”
android:background=“#CFD0D3”
android:text=“,” />
<Button
android:textColor=“#FFFF”
android:layout_height=“wrap_content”
android:layout_width=“wrap_content”
android:background=“#FA8910”
android:text=“=” />
</GridLayout>
</RelativeLayout>