consultant_item_price_range.xml 1.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
<?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:id="@+id/ll_price_range_container"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    >

    <LinearLayout
konghaorui committed
12
        android:layout_marginLeft="@dimen/platform_dp_5"
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="4dp"
        android:orientation="horizontal"
        android:focusable="true"
        android:focusableInTouchMode="true"
        >

        <EditText
            android:paddingLeft="5dp"
            android:id="@+id/etMinPrice"
            android:layout_width="80dp"
            android:layout_height="30dp"
            android:layout_marginRight="10dp"
            android:background="@drawable/shape_round_gray_bored"
            android:inputType="number"
            android:maxLines="1"
            android:textSize="13sp"
            android:maxLength="7"
            />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="-"/>

        <EditText
            android:paddingLeft="5dp"
            android:id="@+id/etMaxPrice"
            android:layout_width="80dp"
            android:layout_height="30dp"
            android:layout_marginLeft="10dp"
            android:background="@drawable/shape_round_gray_bored"
            android:inputType="number"
            android:textSize="13sp"
48
            android:maxLines="1"
49 50 51 52 53 54 55 56 57 58 59 60
            android:maxLength="7"
            />

    </LinearLayout>

    <FrameLayout
        android:id="@+id/flPriceRangeContainer"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="12dp"/>

</LinearLayout>