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
  • fragment_order_operate.xml
Find file
Normal viewHistoryPermalink
fragment_order_operate.xml 1.15 KB
Edit
Newer Older
mReturn's avatar
order
fcdebea6
 
mReturn committed 5 years ago
1 2 3 4
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">

mReturn's avatar
操作指南
bd75dedd
 
mReturn committed 5 years ago
5
    <RelativeLayout
mReturn's avatar
order
fcdebea6
 
mReturn committed 5 years ago
6
        android:layout_width="match_parent"
mReturn's avatar
操作指南
bd75dedd
 
mReturn committed 5 years ago
7
        android:layout_height="match_parent">
wukun's avatar
1.androidx
831aeac7
 
wukun committed 2 years ago
8
        <androidx.viewpager.widget.ViewPager
mReturn's avatar
操作指南
bd75dedd
 
mReturn committed 5 years ago
9
            android:id="@+id/vp_operate"
mReturn's avatar
order
fcdebea6
 
mReturn committed 5 years ago
10
            android:layout_width="match_parent"
mReturn's avatar
操作指南
bd75dedd
 
mReturn committed 5 years ago
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
            android:layout_height="match_parent"
            android:background="@color/cl_white" />
        <ImageView
            android:visibility="gone"
            android:id="@+id/iv_pre"
            android:layout_width="50dp"
            android:layout_height="50dp"
            android:src="@drawable/icon_pre_operate"
            android:layout_centerVertical="true"
            />
        <ImageView
            android:visibility="gone"
            android:id="@+id/iv_next"
            android:layout_width="50dp"
            android:layout_height="50dp"
            android:src="@drawable/icon_next_operate"
            android:layout_centerVertical="true"
            android:layout_alignParentRight="true"
            />
    </RelativeLayout>

mReturn's avatar
order
fcdebea6
 
mReturn committed 5 years ago
32
</layout>