Added share button to share device info

This commit is contained in:
Alexandros Schillings
2014-04-09 15:53:41 +01:00
parent e207f1ae73
commit 96df6d51fc
10 changed files with 161 additions and 15 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 445 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 295 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 548 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 911 B

+24 -8
View File
@@ -63,15 +63,37 @@
android:layout_height="1dp"
android:background="@android:color/holo_blue_dark" />
<LinearLayout
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/infoContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:orientation="vertical" >
<View
android:id="@+id/lowerSepparator"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@android:color/holo_blue_dark" />
<TextView
android:id="@+id/tvItemCount"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/formatter_item_count" />
</LinearLayout>
<LinearLayout
android:id="@+id/listContainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:layout_above="@id/infoContainer"
android:orientation="vertical" >
<ListView
@@ -86,12 +108,6 @@
android:gravity="center_vertical|center_horizontal"
android:text="@string/no_data" />
</LinearLayout>
<View
android:id="@+id/lowerSepparator"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@android:color/holo_blue_dark" />
</LinearLayout>
</RelativeLayout>
</LinearLayout>
+8 -2
View File
@@ -32,9 +32,15 @@
android:showAsAction="ifRoom|withText"
android:title="@string/menu_stop"/>
<item
android:id="@+id/menu_about"
android:id="@+id/menu_share"
android:orderInCategory="102"
android:showAsAction="ifRoom|withText"
android:showAsAction="ifRoom"
android:icon="@drawable/ic_action_share"
android:title="@string/menu_share"/>
<item
android:id="@+id/menu_about"
android:orderInCategory="103"
android:showAsAction="never"
android:title="@string/menu_about"/>
</menu>
+6 -4
View File
@@ -17,13 +17,17 @@
<!-- Formatters -->
<string name="formatter_meters">%sm</string>
<string name="formatter_db">%sdb</string>
<string name="formatter_item_count">Items: %s</string>
<!-- Menu items -->
<string name="menu_about">About</string>
<string name="menu_about">About</string>
<string name="menu_connect">Connect</string>
<string name="menu_disconnect">Disconnect</string>
<string name="menu_scan">Scan</string>
<string name="menu_stop">Stop</string>
<string name="menu_share">Share</string>
<!-- List Items -->
<string name="label_data">Data:</string>
@@ -36,8 +40,6 @@
<string name="label_state">State:</string>
<string name="label_tx_power">TX Power:</string>
<string name="label_uuid">UUID:</string>
<string name="about_dialog_text">This is a sample application using the Bluetooth LE Library.\n\nGithub: https://github.com/alt236/Bluetooth-LE-Library---Android\n\nCopyright: Alexandros Schillings</string>
<string name="about_dialog_text">This is a sample application using the Bluetooth LE Library.\n\nGithub: https://github.com/alt236/Bluetooth-LE-Library---Android\n\nCopyright: Alexandros Schillings</string>
</resources>