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
  • managercenter
  • src
  • main
  • res
  • layout
  • fragment_manager.xml
Find file
Normal viewHistoryPermalink
fragment_manager.xml 2.78 KB
Newer Older
罗翻's avatar
增加店长模块
76b1d048
 
罗翻 committed 6 years ago
1
<?xml version="1.0" encoding="utf-8"?>
罗翻's avatar
android v1.9.8
2435571d
 
罗翻 committed 6 years ago
2 3
<layout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">
罗翻's avatar
增加店长模块
76b1d048
 
罗翻 committed 6 years ago
4

罗翻's avatar
android v1.9.8
2435571d
 
罗翻 committed 6 years ago
5 6 7 8 9
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <LinearLayout
罗翻's avatar
增加店长模块
76b1d048
 
罗翻 committed 6 years ago
10
            android:layout_width="match_parent"
罗翻's avatar
增加派单,抢单,预约审核
a6a3aed4
 
罗翻 committed 6 years ago
11
            android:layout_height="match_parent"
罗翻's avatar
单任务单数量直接跳转到处理工单页面,增加指派语音提醒
f27e9650
 
罗翻 committed 6 years ago
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
            android:background="@color/cl_home_listview_bg"
            android:orientation="vertical">

            <RelativeLayout style="@style/title">

                <TextView
                    android:id="@+id/title_left"
                    style="@style/title_left"
                    android:text="@string/login_out"
                    android:visibility="gone" />

                <TextView
                    android:id="@+id/title"
                    style="@style/text_title"
                    android:ellipsize="middle"
                    android:maxEms="9"
罗翻's avatar
android2.0.0
70880c49
 
罗翻 committed 6 years ago
28
                    android:drawableRight="@drawable/icon_arrow_down"
罗翻's avatar
单任务单数量直接跳转到处理工单页面,增加指派语音提醒
f27e9650
 
罗翻 committed 6 years ago
29 30 31 32 33 34
                    android:singleLine="true"
                    android:text="@string/send_order" />

                <TextView
                    android:id="@+id/tv_right_title"
                    style="@style/title_right_text"
罗翻's avatar
android2.0.0
70880c49
 
罗翻 committed 6 years ago
35
                    android:text="@string/all_order"
罗翻's avatar
单任务单数量直接跳转到处理工单页面,增加指派语音提醒
f27e9650
 
罗翻 committed 6 years ago
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
                    android:textColor="#3faafc"
                    android:textSize="@dimen/dp_13.3" />
            </RelativeLayout>

            <android.support.design.widget.TabLayout
                android:id="@+id/tab"
                android:layout_width="match_parent"
                android:layout_height="@dimen/dp_40"
                android:background="@color/cl_white"
                android:textSize="15sp"
                app:tabIndicatorColor="@color/cl_receiving_order_item_data"
                app:tabMaxWidth="0dp"
                app:tabSelectedTextColor="@color/cl_receiving_order_item_data"
                app:tabTextAppearance="@style/TabLayoutTextStyle"
                app:tabTextColor="@color/cl_tab_line" />

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

            <android.support.v4.view.ViewPager
                android:id="@+id/viewpager"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_marginTop="@dimen/dp_10" />
罗翻's avatar
android v1.9.8
2435571d
 
罗翻 committed 6 years ago
59

罗翻's avatar
单任务单数量直接跳转到处理工单页面,增加指派语音提醒
f27e9650
 
罗翻 committed 6 years ago
60
        </LinearLayout>
罗翻's avatar
android v1.9.8
2435571d
 
罗翻 committed 6 years ago
61 62 63 64 65 66 67 68 69 70 71

        <ImageView
            android:id="@+id/create_order"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true"
            android:layout_marginBottom="50dp"
            android:layout_marginRight="10dp"
            android:src="@drawable/icon_create_order" />
    </RelativeLayout>
罗翻's avatar
增加店长模块
76b1d048
 
罗翻 committed 6 years ago
72
</layout>