进出入完善组织机构并加入导入人员和机构功能
554325746@qq.com
2019-08-07 07a66e53d2b4126c2004870d81a379d8ef0071da
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/root"
    android:theme="?attr/fileChooserListItemStyle"
    style="?attr/fileChooserListItemStyle"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:ignore="ResourceName"
    tools:theme="@style/FileChooserListItemStyle">
 
    <TextView
        android:id="@+id/text"
        style="?attr/fileChooserTextNameStyle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="false"
        android:layout_centerVertical="false"
        android:layout_toRightOf="@+id/icon"
        tools:text="@string/title_choose" />
 
    <TextView
        android:id="@+id/txt_size"
        style="?attr/fileChooserTextSizeStyle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/text"
        android:layout_alignLeft="@+id/text"
        android:layout_toLeftOf="@+id/txt_date"
        tools:text="@string/title_choose" />
 
    <TextView
        android:id="@+id/txt_date"
        style="?attr/fileChooserTextDateStyle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/text"
        android:layout_alignRight="@+id/text"
        tools:text="@string/title_choose" />
 
    <ImageView
        android:id="@+id/icon"
        style="?attr/fileChooserFileIconStyle"
        android:layout_width="48dp"
        android:layout_height="48dp"
        android:layout_alignParentLeft="true"
        android:contentDescription="@string/title_choose"
        android:visibility="gone"
        android:src="@drawable/ic_folder"
        app:srcCompat="@drawable/ic_folder" />
 
</RelativeLayout>