blob: 4881324f21f37475e74e61278585739ffddc6977 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?xml version="1.0" encoding="utf-8"?>
<linearlayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/overflow_menu"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/menubar_button_disabled">
<ImageButton
android:id="@+id/overflow_button_1"
android:src="@drawable/action_shuffle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="center"
android:background="@drawable/actionbar_button"
/>
</linearlayout>
|