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
  • item_logistics_layout.xml
Find file
Normal viewHistoryPermalink
item_logistics_layout.xml 1.81 KB
Newer Older
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
1 2 3 4 5 6 7
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">

    <data>

        <variable
            name="item"
罗翻's avatar
增加ordercenter和loctionlib
ae60479a
 
罗翻 committed 7 years ago
8
            type="com.dayu.order.api.protocol.LogsticsInfo.Logistics" />
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29

        <variable
            name="position"
            type="Integer" />
    </data>


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="40dp"
        android:layout_marginLeft="27dp"
        android:layout_marginRight="27dp"
        android:orientation="horizontal">

        <ImageView
            android:id="@+id/iv_circle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginRight="@dimen/dp_12"
            android:layout_marginTop="3dp"
罗翻's avatar
增加ordercenter和loctionlib
ae60479a
 
罗翻 committed 7 years ago
30
            android:src="@drawable/icon_circle_blue" />
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
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

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">

            <TextView
                android:id="@+id/logistics_address"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginBottom="10dp"
                android:text="@{item.acceptStation}"
                android:textColor="@color/default_text_color"
                android:textSize="14sp" />

            <TextView
                android:id="@+id/tv_time"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@{item.acceptTime}"
                android:textColor="@color/default_text_color"
                android:textSize="@dimen/sp_12" />
        </LinearLayout>
    </LinearLayout>
</layout>