1
0
mirror of https://github.com/mik3y/usb-serial-for-android.git synced 2026-08-19 04:12:55 +00:00

User can now set DTR and RTS on the fly

This commit is contained in:
Marcos Diez
2015-01-17 14:34:31 +02:00
parent 228c7936eb
commit e04c5f8877
3 changed files with 67 additions and 7 deletions
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/demoTitle"
android:layout_width="match_parent"
@@ -15,15 +15,34 @@
<View
android:id="@+id/separator"
android:layout_width="match_parent"
android:layout_height="1dip"
android:background="#eeeeee" />
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/textBtnDTR"
android:id="@+id/checkBoxDTR" />
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/textBtnRTS"
android:id="@+id/checkBoxRTS" />
<View
android:id="@+id/separator2"
android:layout_width="match_parent"
android:layout_below="@+id/demoTitle"
android:layout_height="1dip"
android:background="#eeeeee" />
<ScrollView
android:id="@+id/demoScroller"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/separator" >
>
<TextView
android:id="@+id/consoleText"
@@ -32,5 +51,4 @@
android:layout_height="wrap_content"
android:typeface="monospace" />
</ScrollView>
</RelativeLayout>
</LinearLayout>
@@ -4,5 +4,7 @@
<string name="app_title">USB Serial Example</string>
<string name="app_name">Serial Example</string>
<string name="refreshing">Refreshing...</string>
<string name="textBtnRTS">RTS - Request To Send</string>
<string name="textBtnDTR">DTR - Data Terminal Ready</string>
</resources>