android-calculatorpp/app/src/main/res/layout/fragment_functions_function.xml

27 lines
1.1 KiB
XML
Raw Normal View History

2016-02-24 09:29:42 -05:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="@dimen/list_item_height"
android:background="@drawable/material_clickable_selector"
android:gravity="center_vertical|start"
android:orientation="horizontal"
android:paddingLeft="16dp"
android:paddingRight="16dp"
tools:ignore="Overdraw">
<org.solovyev.android.plotter.PlotIconView
android:id="@+id/function_icon"
android:layout_width="40dp"
android:layout_height="match_parent" />
<TextView
android:id="@+id/function_name"
2016-02-24 09:29:42 -05:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="16dp"
android:layout_marginStart="16dp"
android:drawableEnd="@drawable/ic_mode_edit_white_18dp"
android:drawablePadding="16dp"
android:drawableRight="@drawable/ic_mode_edit_white_18dp" />
</LinearLayout>