Samples
Samples
BluetoothChat
Language: Oxygene, Platform: Cooper, Category: Android
https://github.com/remobjects/ElementsSamples/tree/master/Oxygene/Cooper/Android/BluetoothChat
-
com.example.android.BluetoothChat
-
References
- android
- Source Files
-
Other Files
- res\values\strings.android-xml
- Properties\AndroidManifest.android-xml
- res\menu-v10\option_menu.android-xml
- res\values-v11\styles.android-xml
- res\values\styles.android-xml
- NOTICE
- res\menu\option_menu.android-xml
- Readme.txt
- res\drawable-hdpi\app_icon.png
- res\drawable\app_icon.png
- res\layout\custom_title.layout-xml
- res\layout\device_list.layout-xml
- res\layout\device_name.layout-xml
- res\layout\main.layout-xml
- res\layout\message.layout-xml
-
References
res\layout\main.layout-xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<ListView android:id="@+id/list_in"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:stackFromBottom="true"
android:transcriptMode="alwaysScroll"
android:layout_weight="1"
/>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<EditText android:id="@+id/edit_text_out"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="bottom"
/>
<Button android:id="@+id/button_send"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/send"
/>
</LinearLayout>
</LinearLayout>
