28 lines
No EOL
823 B
XML
28 lines
No EOL
823 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<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"
|
|
android:orientation="vertical">
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_weight="0.1"
|
|
android:layout_height="0dp"/>
|
|
|
|
<android.support.v7.widget.AppCompatTextView
|
|
android:id="@+id/keyboard_item"
|
|
android:textAllCaps="true"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="0.8"
|
|
android:gravity="center"
|
|
android:textColor="?attr/keyboard_item_text_color"
|
|
tools:text="3"/>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_weight="0.1"
|
|
android:layout_height="0dp"/>
|
|
|
|
</LinearLayout> |