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_sop_local.xml
Find file
Normal viewHistoryPermalink
item_sop_local.xml 2.86 KB
Newer Older
mReturn's avatar
工单优化&友盟share
90cd84b4
 
mReturn committed 5 years ago
1 2 3
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
mReturn's avatar
工单优化&友盟share
374aaf3c
 
mReturn committed 5 years ago
4 5 6 7
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:paddingLeft="15dp"
    android:paddingRight="15dp"
mReturn's avatar
工单优化
baf60316
 
mReturn committed 5 years ago
8
    android:background="@drawable/bg_sop_item"
mReturn's avatar
工单优化&友盟share
374aaf3c
 
mReturn committed 5 years ago
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 62 63 64
    >
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:gravity="center_vertical"
        >
        <TextView
            android:id="@+id/tv_sort"
            style="@style/common_text_style"
            android:text="1."
            />
        <TextView
            android:id="@+id/tv_desc"
            style="@style/common_text_style"
            android:singleLine="true"
            android:layout_width="0dp"
            android:layout_weight="1"
            android:text="1"
            />
        <TextView
            android:id="@+id/tv_add_remark"
            style="@style/common_text_style"
            android:padding="10dp"
            android:text="@string/write_remark"
            android:textColor="@color/text_common_blue"
            />

    </LinearLayout>

    <android.support.v7.widget.RecyclerView
        android:visibility="gone"
        android:id="@+id/rv_image"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="15dp"
        android:layout_marginTop="5dp"
        />
    <android.support.v7.widget.RecyclerView
        android:visibility="gone"
        android:id="@+id/rv_video"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="15dp"
        android:layout_marginTop="5dp"
        />

    <RadioGroup
        android:id="@+id/rg_sop"
        android:layout_marginBottom="15dp"
        android:layout_marginTop="5dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        >
        <RadioButton
mReturn's avatar
友盟推送&工单优化
8d476a37
 
mReturn committed 5 years ago
65
            android:id="@+id/rb_yes"
mReturn's avatar
工单优化&友盟share
374aaf3c
 
mReturn committed 5 years ago
66 67 68 69 70 71
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="wrap_content"
            android:text="@string/yes_str"
            />
        <RadioButton
mReturn's avatar
友盟推送&工单优化
8d476a37
 
mReturn committed 5 years ago
72
            android:id="@+id/rb_no"
mReturn's avatar
工单优化&友盟share
374aaf3c
 
mReturn committed 5 years ago
73 74 75 76 77 78 79 80 81 82 83
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="wrap_content"
            android:text="@string/no_str"
            />
    </RadioGroup>

    <EditText
        android:id="@+id/edt_remark"
        android:padding="5dp"
        android:layout_width="match_parent"
mReturn's avatar
工单优化
baf60316
 
mReturn committed 5 years ago
84
        android:layout_height="60dp"
mReturn's avatar
工单优化&友盟share
374aaf3c
 
mReturn committed 5 years ago
85 86
        android:background="@drawable/bg_input_register_react"
        android:layout_marginBottom="15dp"
mReturn's avatar
工单优化
baf60316
 
mReturn committed 5 years ago
87
        android:gravity="left|top"
mReturn's avatar
工单优化&友盟share
374aaf3c
 
mReturn committed 5 years ago
88
        />
mReturn's avatar
工单优化&友盟share
90cd84b4
 
mReturn committed 5 years ago
89 90

</LinearLayout>