<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:tools="http://schemas.android.com/tools"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:gravity="center"
|
android:background="@color/black"
|
android:orientation="vertical">
|
<RelativeLayout
|
android:id="@+id/gridLineLayout"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@drawable/bg_box"
|
android:orientation="vertical">
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerInParent="true"
|
android:id="@+id/gridNo"
|
android:textStyle="bold"
|
android:textColor="@color/white"
|
android:textSize="17sp"
|
android:text="A1"/>
|
</RelativeLayout>
|
</LinearLayout>
|