2011-06-27 00:57:44 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-11-17 16:25:17 +01:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical|center_horizontal"
|
|
|
|
android:paddingTop="0dip"
|
|
|
|
android:paddingBottom="0dip"
|
|
|
|
android:paddingLeft="12dip"
|
|
|
|
android:paddingRight="12dip"
|
|
|
|
android:clickable="true"
|
|
|
|
android:background="@drawable/quickaction_slider_btn">
|
2011-06-27 00:57:44 +02:00
|
|
|
|
2016-03-30 10:12:34 +02:00
|
|
|
<android.support.v7.widget.AppCompatImageView
|
2014-11-17 16:25:17 +01:00
|
|
|
android:id="@+id/icon"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:gravity="center_vertical|center_horizontal"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_sub_text_size"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:textColor="#666" />
|
2011-06-27 00:57:44 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|