Add icons for kill and fullscreen buttons in the mini player

This commit is contained in:
Christopher Eby 2010-03-05 23:47:53 -06:00
parent 32fd8ea975
commit 21f23eb4e5
4 changed files with 7 additions and 5 deletions

BIN
res/drawable/fullscreen.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
res/drawable/kill.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -17,15 +17,18 @@
android:orientation="horizontal" android:orientation="horizontal"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_width="wrap_content"> android:layout_width="wrap_content">
<Button <org.kreed.vanilla.ControlButton
android:id="@+id/open_button" android:id="@+id/open_button"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:text="@string/open_player" /> android:layout_marginLeft="15px"
<Button android:src="@drawable/fullscreen" />
<org.kreed.vanilla.ControlButton
android:id="@+id/kill_button" android:id="@+id/kill_button"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:text="@string/stop_service" /> android:layout_marginLeft="25px"
android:layout_marginRight="15px"
android:src="@drawable/kill" />
</LinearLayout> </LinearLayout>
</org.kreed.vanilla.RemoteLayout> </org.kreed.vanilla.RemoteLayout>

View File

@ -6,7 +6,6 @@
<string name="no_songs">No songs found on your device.</string> <string name="no_songs">No songs found on your device.</string>
<string name="settings">Preferences</string> <string name="settings">Preferences</string>
<string name="add_to_queue">Add to Queue</string> <string name="add_to_queue">Add to Queue</string>
<string name="open_player">Open Player</string>
<string name="stop_service">Stop Service</string> <string name="stop_service">Stop Service</string>
<string name="connect_to_service">Connect to Service</string> <string name="connect_to_service">Connect to Service</string>
<string name="paused">(Paused)</string> <string name="paused">(Paused)</string>