mirror of https://github.com/iSoron/uhabits.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.1 KiB
35 lines
1.1 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/habits_item"
|
|
android:baselineAligned="false"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal" >
|
|
|
|
<TextView
|
|
android:id="@+id/tvStar"
|
|
android:layout_width="30dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="0dp"
|
|
android:gravity="center"
|
|
android:paddingTop="1dp"
|
|
android:textSize="16sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvName"
|
|
android:layout_width="0dip"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:paddingBottom="6dp"
|
|
android:paddingLeft="0dp"
|
|
android:paddingRight="6dp"
|
|
android:paddingTop="6dp" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/llButtons"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="42dp"
|
|
android:orientation="horizontal" />
|
|
|
|
</LinearLayout> |