diff options
-rw-r--r-- | res/layout/screenshot.xml | 36 | ||||
-rwxr-xr-x | res/values/strings.xml | 2 |
2 files changed, 22 insertions, 16 deletions
diff --git a/res/layout/screenshot.xml b/res/layout/screenshot.xml index 9e62af7..6f3d302 100644 --- a/res/layout/screenshot.xml +++ b/res/layout/screenshot.xml @@ -23,37 +23,43 @@ android:layout_height="wrap_content" /> <ImageView android:id="@+id/back" - android:layout_width="fill_parent" - android:layout_height="fill_parent" + android:layout_width="match_parent" + android:layout_height="match_parent" android:adjustViewBounds="true" android:src="@drawable/back" android:scaleType="centerCrop" android:visibility="gone" /> - <RelativeLayout android:layout_width="match_parent" + <LinearLayout + android:layout_width="match_parent" android:layout_height="match_parent" + android:orientation="vertical" > <TextView android:id="@+id/calltoaction" - android:layout_width="fill_parent" - android:layout_height="wrap_content" + android:layout_width="match_parent" + android:layout_height="0dip" + android:layout_weight="1" android:text="@string/touch" android:gravity="center" - android:layout_alignParentTop="true" - android:textSize="18sp" - android:paddingTop="40dip" + android:textSize="28sp" android:visibility="gone" android:background="@null" android:textColor="?android:attr/textColorPrimary" /> - </RelativeLayout> + <View + android:layout_width="match_parent" + android:layout_height="0dip" + android:layout_weight="4" + /> + </LinearLayout> <ImageView android:id="@+id/clone" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:adjustViewBounds="true" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:gravity="center" /> <ImageView android:id="@+id/screenshot" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:adjustViewBounds="true" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:gravity="center" /> </FrameLayout> diff --git a/res/values/strings.xml b/res/values/strings.xml index 3abe1de..0452f69 100755 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -23,5 +23,5 @@ <!-- Content description of the NFC enabled notification icon for accessibility (not shown on the screen). [CHAR LIMIT=NONE] --> <string name="accessibility_nfc_enabled">NFC enabled.</string> - <string name="touch">Touch to send</string> + <string name="touch">Touch to beam</string> </resources> |