mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 00:45:32 +00:00
Copy over the Android source Update build.sh scripts for new paths KMEA/build.sh also updated to build KMW and use the artifacts
44 lines
No EOL
1.6 KiB
XML
44 lines
No EOL
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:descendantFocusability="blocksDescendants"
|
|
android:background="@drawable/list_item" >
|
|
|
|
<LinearLayout
|
|
android:id="@+id/linearLayout1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginLeft="15dp"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/text1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="5dp"
|
|
android:textSize="20sp"
|
|
android:textStyle="bold" />
|
|
|
|
<TextView
|
|
android:id="@+id/text2"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="5dp"
|
|
android:textSize="15sp" />
|
|
</LinearLayout>
|
|
|
|
<ImageButton
|
|
android:id="@+id/imageButton1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginRight="10dp"
|
|
android:background="@drawable/oval_button"
|
|
android:contentDescription="@string/image_button"
|
|
android:src="@android:drawable/ic_dialog_info" />
|
|
|
|
</RelativeLayout> |