Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

android / dayu

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • dayu
  • orderCenter
  • src
  • main
  • res
  • layout
  • activity_apply_refuse_layout.xml
Find file
BlameHistoryPermalink
  • mReturn's avatar
    友盟推送&工单优化 · 8d476a37
    mReturn committed 5 years ago
    8d476a37
activity_apply_refuse_layout.xml 1.96 KB
1 2 3 4 5 6 7 8 9 10 11 12 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 48 49 50 51 52 53 54 55 56 57 58 59 60 61
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">

    <data>


        <variable
            name="presenter"
            type="com.dayu.order.presenter.commonSubmite.ApplayAndRefusePresenter" />
    </data>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/cl_home_listview_bg"
        android:orientation="vertical">

        <RelativeLayout
            android:id="@+id/title_idea"
            style="@style/title">

            <TextView
                android:id="@+id/text_idea"
                style="@style/text_title"
                android:text="@={presenter.mTitle}" />

            <ImageView
                android:id="@+id/title_back"
                style="@style/title_image_back"
                android:onClick="@{()->presenter.dumpBack()}"
                />

            <TextView
                android:id="@+id/tv_right_title"
                style="@style/title_right_text"
                android:onClick="@{()->presenter.commite()}"
                android:text="@string/submit"
                android:textColor="@color/cl_home_button"
                android:textSize="15sp" />

        </RelativeLayout>

        <ImageView style="@style/card_line" />

        <EditText
            android:id="@+id/et_content"
            android:layout_width="match_parent"
            android:layout_height="@dimen/dp_163"
            android:layout_gravity="center"
            android:background="@color/white"
            android:gravity="top"
            android:hint="@{presenter.mHint}"
            android:paddingLeft="@dimen/dp_13"
            android:paddingTop="@dimen/dp_17"
            android:text="@={presenter.mComment}"
            android:textColor="@color/cl_home_title_text_color"
            android:textColorHint="@color/cl_selector_hui"
            android:textSize="@dimen/sp_13.3" />

    </LinearLayout>
</layout>