Added option for device or app level throughput.

Started on a file browser dialog for import/export
This commit is contained in:
Ziver Koc 2014-08-15 16:05:56 +02:00
parent 01896c15e5
commit 9f84e472eb
6 changed files with 80 additions and 29 deletions

View file

@ -12,4 +12,12 @@
<item>com.ericsson.uecontrol.core.behaviour.UeBehaviourVideoStreaming</item>
</string-array>
<string-array name="throughput_types">
<item>App Throughput</item>
<item>Device Throughput</item>
</string-array>
<string-array name="throughput_type_values">
<item>false</item>
<item>true</item>
</string-array>
</resources>

View file

@ -32,5 +32,8 @@
<string name="pref_screen_on_summ">Keep screen on while execution</string>
<string name="pref_screen_on">Keep Screen On</string>
<string name="action_mark">Add Mark</string>
<string name="action_select">Select</string>
<string name="pref_throughput_type">Throughput Type</string>
<string name="pref_throughput_type_summ">The type of throughput that should be displayed and logged</string>
</resources>

View file

@ -15,6 +15,14 @@
android:summary="@string/pref_logging_path_summ"
android:defaultValue="/sdcard/uecontrol/" />
<ListPreference
android:key="throughput_type"
android:title="@string/pref_throughput_type"
android:summary="@string/pref_throughput_type_summ"
android:entries="@array/throughput_types"
android:entryValues="@array/throughput_type_values"
android:defaultValue="false" />
<CheckBoxPreference
android:key="screen_on"
android:title="@string/pref_screen_on"