2015-09-15 02:06:47 +02:00
|
|
|
<RelativeLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-10-04 22:51:35 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2015-09-15 02:06:47 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingStart="5dp"
|
|
|
|
android:paddingEnd="5dp">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:id="@+id/first_row">
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:id="@+id/Q"
|
|
|
|
android:text="Q: "
|
2015-10-04 22:51:35 +02:00
|
|
|
android:background="@drawable/button_grey"
|
2015-10-09 00:57:54 +02:00
|
|
|
tools:ignore="ButtonStyle,HardcodedText" />
|
2015-09-15 02:06:47 +02:00
|
|
|
<Button
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:id="@+id/W"
|
|
|
|
android:text="W: "
|
2015-10-04 22:51:35 +02:00
|
|
|
android:background="@drawable/button_grey"
|
2015-10-09 00:57:54 +02:00
|
|
|
tools:ignore="ButtonStyle,HardcodedText" />
|
2015-09-15 02:06:47 +02:00
|
|
|
<Button
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:id="@+id/E"
|
|
|
|
android:text="E: "
|
2015-10-04 22:51:35 +02:00
|
|
|
android:background="@drawable/button_grey"
|
2015-10-09 00:57:54 +02:00
|
|
|
tools:ignore="ButtonStyle,HardcodedText" />
|
2015-09-15 02:06:47 +02:00
|
|
|
<Button
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:id="@+id/R"
|
|
|
|
android:text="R: "
|
2015-10-04 22:51:35 +02:00
|
|
|
android:background="@drawable/button_grey"
|
2015-10-09 00:57:54 +02:00
|
|
|
tools:ignore="ButtonStyle,HardcodedText" />
|
2015-09-15 02:06:47 +02:00
|
|
|
<Button
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:id="@+id/T"
|
|
|
|
android:text="T: "
|
2015-10-04 22:51:35 +02:00
|
|
|
android:background="@drawable/button_grey"
|
2015-10-09 00:57:54 +02:00
|
|
|
tools:ignore="ButtonStyle,HardcodedText" />
|
2015-09-15 02:06:47 +02:00
|
|
|
<Button
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:id="@+id/Z"
|
|
|
|
android:text="Z: "
|
2015-10-04 22:51:35 +02:00
|
|
|
android:background="@drawable/button_grey"
|
2015-10-09 00:57:54 +02:00
|
|
|
tools:ignore="ButtonStyle,HardcodedText" />
|
2015-09-15 02:06:47 +02:00
|
|
|
<Button
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:id="@+id/U"
|
|
|
|
android:text="U: "
|
2015-10-04 22:51:35 +02:00
|
|
|
android:background="@drawable/button_grey"
|
2015-10-09 00:57:54 +02:00
|
|
|
tools:ignore="ButtonStyle,HardcodedText" />
|
2015-09-15 02:06:47 +02:00
|
|
|
<Button
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:id="@+id/I"
|
|
|
|
android:text="I: "
|
2015-10-04 22:51:35 +02:00
|
|
|
android:background="@drawable/button_grey"
|
2015-10-09 00:57:54 +02:00
|
|
|
tools:ignore="ButtonStyle,HardcodedText" />
|
2015-09-15 02:06:47 +02:00
|
|
|
<Button
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:id="@+id/O"
|
|
|
|
android:text="O: "
|
2015-10-04 22:51:35 +02:00
|
|
|
android:background="@drawable/button_grey"
|
2015-10-09 00:57:54 +02:00
|
|
|
tools:ignore="ButtonStyle,HardcodedText" />
|
2015-09-15 02:06:47 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_below="@id/first_row"
|
|
|
|
android:id="@+id/second_row">
|
|
|
|
|
2015-10-09 00:57:54 +02:00
|
|
|
<android.support.v4.widget.Space
|
2015-09-15 02:06:47 +02:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
<Button
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:id="@+id/A"
|
|
|
|
android:text="A: "
|
2015-10-04 22:51:35 +02:00
|
|
|
android:background="@drawable/button_grey"
|
|
|
|
tools:ignore="HardcodedText" />
|
2015-09-15 02:06:47 +02:00
|
|
|
<Button
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:id="@+id/S"
|
|
|
|
android:text="S: "
|
2015-10-04 22:51:35 +02:00
|
|
|
android:background="@drawable/button_grey"
|
|
|
|
tools:ignore="HardcodedText" />
|
2015-09-15 02:06:47 +02:00
|
|
|
<Button
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:id="@+id/D"
|
|
|
|
android:text="D: "
|
2015-10-04 22:51:35 +02:00
|
|
|
android:background="@drawable/button_grey"
|
|
|
|
tools:ignore="HardcodedText" />
|
2015-09-15 02:06:47 +02:00
|
|
|
<Button
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:id="@+id/F"
|
|
|
|
android:text="F: "
|
2015-10-04 22:51:35 +02:00
|
|
|
android:background="@drawable/button_grey"
|
|
|
|
tools:ignore="HardcodedText" />
|
2015-09-15 02:06:47 +02:00
|
|
|
<Button
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:id="@+id/G"
|
|
|
|
android:text="G: "
|
2015-10-04 22:51:35 +02:00
|
|
|
android:background="@drawable/button_grey"
|
|
|
|
tools:ignore="HardcodedText" />
|
2015-09-15 02:06:47 +02:00
|
|
|
<Button
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:id="@+id/H"
|
|
|
|
android:text="H: "
|
2015-10-04 22:51:35 +02:00
|
|
|
android:background="@drawable/button_grey"
|
|
|
|
tools:ignore="HardcodedText" />
|
2015-09-15 02:06:47 +02:00
|
|
|
<Button
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:id="@+id/J"
|
|
|
|
android:text="J: "
|
2015-10-04 22:51:35 +02:00
|
|
|
android:background="@drawable/button_grey"
|
|
|
|
tools:ignore="HardcodedText" />
|
2015-09-15 02:06:47 +02:00
|
|
|
<Button
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:id="@+id/K"
|
|
|
|
android:text="K: "
|
2015-10-04 22:51:35 +02:00
|
|
|
android:background="@drawable/button_grey"
|
|
|
|
tools:ignore="HardcodedText" />
|
2015-10-09 00:57:54 +02:00
|
|
|
<android.support.v4.widget.Space
|
2015-09-15 02:06:47 +02:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_below="@id/second_row"
|
|
|
|
android:id="@+id/third_row">
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:id="@+id/P"
|
|
|
|
android:text="P: "
|
2015-10-04 22:51:35 +02:00
|
|
|
android:background="@drawable/button_grey"
|
2015-10-09 00:57:54 +02:00
|
|
|
tools:ignore="ButtonStyle,HardcodedText" />
|
2015-09-15 02:06:47 +02:00
|
|
|
<Button
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:id="@+id/Y"
|
|
|
|
android:text="Y: "
|
2015-10-04 22:51:35 +02:00
|
|
|
android:background="@drawable/button_grey"
|
2015-10-09 00:57:54 +02:00
|
|
|
tools:ignore="ButtonStyle,HardcodedText" />
|
2015-09-15 02:06:47 +02:00
|
|
|
<Button
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:id="@+id/X"
|
|
|
|
android:text="X: "
|
2015-10-04 22:51:35 +02:00
|
|
|
android:background="@drawable/button_grey"
|
2015-10-09 00:57:54 +02:00
|
|
|
tools:ignore="ButtonStyle,HardcodedText" />
|
2015-09-15 02:06:47 +02:00
|
|
|
<Button
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:id="@+id/C"
|
|
|
|
android:text="C: "
|
2015-10-04 22:51:35 +02:00
|
|
|
android:background="@drawable/button_grey"
|
2015-10-09 00:57:54 +02:00
|
|
|
tools:ignore="ButtonStyle,HardcodedText" />
|
2015-09-15 02:06:47 +02:00
|
|
|
<Button
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:id="@+id/V"
|
|
|
|
android:text="V: "
|
2015-10-04 22:51:35 +02:00
|
|
|
android:background="@drawable/button_grey"
|
2015-10-09 00:57:54 +02:00
|
|
|
tools:ignore="ButtonStyle,HardcodedText" />
|
2015-09-15 02:06:47 +02:00
|
|
|
<Button
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:id="@+id/B"
|
|
|
|
android:text="B: "
|
2015-10-04 22:51:35 +02:00
|
|
|
android:background="@drawable/button_grey"
|
2015-10-09 00:57:54 +02:00
|
|
|
tools:ignore="ButtonStyle,HardcodedText" />
|
2015-09-15 02:06:47 +02:00
|
|
|
<Button
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:id="@+id/N"
|
|
|
|
android:text="N: "
|
2015-10-04 22:51:35 +02:00
|
|
|
android:background="@drawable/button_grey"
|
2015-10-09 00:57:54 +02:00
|
|
|
tools:ignore="ButtonStyle,HardcodedText" />
|
2015-09-15 02:06:47 +02:00
|
|
|
<Button
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:id="@+id/M"
|
|
|
|
android:text="M: "
|
2015-10-04 22:51:35 +02:00
|
|
|
android:background="@drawable/button_grey"
|
2015-10-09 00:57:54 +02:00
|
|
|
tools:ignore="ButtonStyle,HardcodedText" />
|
2015-09-15 02:06:47 +02:00
|
|
|
<Button
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:id="@+id/L"
|
|
|
|
android:text="L: "
|
2015-10-04 22:51:35 +02:00
|
|
|
android:background="@drawable/button_grey"
|
2015-10-09 00:57:54 +02:00
|
|
|
tools:ignore="ButtonStyle,HardcodedText" />
|
2015-09-15 02:06:47 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</RelativeLayout>
|