diff options
author | Scott Jackson <daneren2005@gmail.com> | 2014-07-20 17:26:39 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2014-07-20 17:26:39 -0700 |
commit | 856e2829ea93294447bf47a215b8db2c24708142 (patch) | |
tree | a012fb0a988c7d2e6eef7875e78ec5d503fb4585 /res | |
parent | c3afd24b4ee51c9bd9e2789dfe26c4d758d57809 (diff) | |
download | dsub-856e2829ea93294447bf47a215b8db2c24708142.tar.gz dsub-856e2829ea93294447bf47a215b8db2c24708142.tar.bz2 dsub-856e2829ea93294447bf47a215b8db2c24708142.zip |
Start of basic Tasker plugin
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/edit_play_action.xml | 26 | ||||
-rw-r--r-- | res/values/strings.xml | 4 |
2 files changed, 30 insertions, 0 deletions
diff --git a/res/layout/edit_play_action.xml b/res/layout/edit_play_action.xml new file mode 100644 index 00000000..6eb3b651 --- /dev/null +++ b/res/layout/edit_play_action.xml @@ -0,0 +1,26 @@ +<?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"> + + <LinearLayout + android:orientation="horizontal" + android:layout_width="fill_parent" + android:layout_height="wrap_content"> + + <TextView + android:id="@+id/edit_shuffle" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginLeft="4dp" + android:textSize="20dp" + android:text="@string/tasker.edit_shuffle_mode" /> + <CheckBox + android:id="@+id/edit_shuffle_checkbox" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:longClickable="true" + /> + </LinearLayout> +</LinearLayout>
\ No newline at end of file diff --git a/res/values/strings.xml b/res/values/strings.xml index f2d48d86..1de825ea 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -530,6 +530,10 @@ <string name="changelog_version_format" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">Version <xliff:g id="version_name">%s</xliff:g></string>
+ <string name="tasker.start_playing">Start playing DSub</string>
+ <string name="tasker.start_playing_title">Tasker -> Start Playing DSub</string>
+ <string name="tasker.edit_shuffle_mode">Start in shuffle mode: </string>
+
<plurals name="select_album_n_songs">
<item quantity="zero">No songs</item>
<item quantity="one">One song</item>
|