initial commit
[pub/Android/ownCloud.git] / res / layout / action_item.xml
1 <LinearLayout
2 xmlns:android="http://schemas.android.com/apk/res/android"
3 android:orientation="horizontal"
4 android:layout_width="fill_parent"
5 android:layout_height="wrap_content"
6 android:clickable="true"
7 android:focusable="true"
8 android:background="@drawable/action_item_btn">
9
10 <ImageView
11 android:id="@+id/icon"
12 android:layout_width="wrap_content"
13 android:layout_height="wrap_content"/>
14
15 <TextView
16 android:id="@+id/title"
17 android:layout_width="fill_parent"
18 android:layout_height="fill_parent"
19 android:gravity="center_vertical"
20 android:paddingLeft="5dip"
21 android:paddingRight="10dip"
22 android:text="Chart"
23 android:textColor="#fff"/>
24
25 </LinearLayout>