Blame view

res/xml/serial_port_preferences.xml 642 Bytes
3c2353cd   杜方   1、畅游通核销app源码提交;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  <?xml version="1.0" encoding="utf-8"?>
  <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
      android:title="Serial port setup" >
  
      <ListPreference
          android:key="DEVICE"
          android:defaultValue="/dev/ttyS0"
          android:persistent="true"
          android:title="Device" >   
      </ListPreference>
      <ListPreference
          android:entries="@array/baudrates_name"
          android:entryValues="@array/baudrates_value"
          android:key="BAUDRATE"
          android:persistent="true"
          android:defaultValue="115200"
          android:title="Baud rate" >
      </ListPreference>
  
  </PreferenceScreen>