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
  • userCenter
  • src
  • main
  • res
  • layout
  • fragment_user_licence.xml
Find file
Normal viewHistoryPermalink
fragment_user_licence.xml 1.01 KB
Newer Older
mReturn's avatar
user
c03ca250
 
mReturn committed 5 years ago
1 2 3
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">

mReturn's avatar
user & sale
b04401aa
 
mReturn committed 5 years ago
4 5 6 7 8 9 10
    <data>

        <variable
            name="presenter"
            type="com.dayu.usercenter.presenter.userlicence.UserLicencePresent" />
    </data>

mReturn's avatar
user
c03ca250
 
mReturn committed 5 years ago
11 12 13 14 15 16
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <android.support.v7.widget.RecyclerView
mReturn's avatar
user & sale
b04401aa
 
mReturn committed 5 years ago
17
            android:visibility="gone"
mReturn's avatar
user
c03ca250
 
mReturn committed 5 years ago
18 19 20 21 22 23
            android:id="@+id/rv_licence"
            android:layout_marginTop="15dp"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:overScrollMode="never"
            />
mReturn's avatar
user & sale
b04401aa
 
mReturn committed 5 years ago
24 25 26 27 28 29
        <com.dayu.widgets.LRecyclerView
            android:id="@+id/recyclerView"
            setPresenter="@{presenter}"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="#f5f5f5" />
mReturn's avatar
user
c03ca250
 
mReturn committed 5 years ago
30 31
    </LinearLayout>
</layout>