dynamic_layout_publish_trend_bottom.xml 4 KB
Newer Older
konghaorui committed
1 2
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
    xmlns:app="http://schemas.android.com/apk/res-auto"
konghaorui committed
4 5
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
霍志良 committed
6
    android:background="@color/dynamic_white"
konghaorui committed
7
    android:orientation="vertical">
霍志良 committed
8 9 10 11 12 13
<View
    android:layout_width="match_parent"
    android:layout_height="0.5dp"
    android:background="#eae9e9"
    >
</View>
konghaorui committed
14 15 16 17
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_alignParentBottom="true"
霍志良 committed
18
        >
konghaorui committed
19 20 21 22 23 24 25 26

        <ImageView
            android:id="@+id/publish_trend_bottom_img_iv"
            android:layout_width="25dp"
            android:layout_height="25dp"
            android:layout_centerVertical="true"
            android:layout_marginLeft="15dp"
            android:padding="3dp"
27 28
            android:src="@drawable/dynamic_edit_img"
             />
konghaorui committed
29 30 31 32 33 34

        <ImageView
            android:id="@+id/publish_emoji_iv"
            android:layout_width="25dp"
            android:layout_height="25dp"
            android:layout_centerVertical="true"
霍志良 committed
35
            android:layout_marginLeft="@dimen/platform_dp_32"
konghaorui committed
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
            android:layout_toRightOf="@+id/publish_trend_bottom_img_iv"
            android:padding="3dp"
            android:src="@drawable/dynamic_edict_ico_emoji" />

        <LinearLayout
            android:id="@+id/ll_to_expert"
            android:layout_width="wrap_content"
            android:layout_height="24dp"
            android:layout_centerVertical="true"
            android:layout_marginRight="15dp"
            android:layout_toLeftOf="@+id/publish_anonymity_rel"
            android:background="@drawable/dynamic_bg_anonymity_line"
            android:gravity="center"
            android:minWidth="98dp"
            android:orientation="horizontal"
            android:paddingLeft="9dp"
            android:paddingRight="9dp">

            <ImageView
                android:id="@+id/iv_to_expert"
                android:layout_width="11dp"
                android:layout_height="11dp"
                android:src="@drawable/dynamic_checkbox" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="3dp"
                android:text="仅对专家可见"
                android:textColor="@color/platform_color_666666"
66
                android:textSize="12sp" />
konghaorui committed
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96

        </LinearLayout>


        <LinearLayout
            android:id="@+id/publish_anonymity_rel"
            android:layout_width="wrap_content"
            android:layout_height="24dp"
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
            android:layout_marginRight="15dp"
            android:background="@drawable/dynamic_bg_anonymity_line"
            android:gravity="center"
            android:minWidth="54dp"
            android:orientation="horizontal"
            android:paddingLeft="9dp"
            android:paddingRight="9dp">

            <ImageView
                android:id="@+id/publish_anonymity_iv"
                android:layout_width="11dp"
                android:layout_height="11dp"
                android:src="@drawable/dynamic_checkbox" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="3dp"
                android:text="匿名"
                android:textColor="@color/platform_color_666666"
97
                android:textSize="12sp" />
konghaorui committed
98 99 100 101 102 103 104 105 106 107 108

        </LinearLayout>

    </RelativeLayout>

    <com.yidianling.dynamic.common.emoji.EmoticonPickerView
        android:id="@+id/emoticon_picker_view"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:visibility="gone" />
</LinearLayout>