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
  • baseSDK
  • src
  • main
  • res
  • layout
  • dialog_wheelview.xml
Find file
Normal viewHistoryPermalink
dialog_wheelview.xml 1.45 KB
Newer Older
mReturn's avatar
user
c846a5f6
 
mReturn committed 5 years ago
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:background="@color/cl_white"
    >

    <com.dayu.widgets.WheelView
        android:id="@+id/wheel_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        />
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:paddingLeft="40dp"
        android:paddingRight="40dp"
        android:layout_marginTop="30dp"
        android:layout_marginBottom="20dp"
        >
        <Button
            android:id="@+id/btn_cancel"
            style="@style/btn_bottom_common"
            android:layout_width="0dp"
            android:layout_weight="1"
            android:background="@drawable/btn_gray_commom"
            android:textColor="@color/text_common_green"
            android:text="@string/cancle"
            android:layout_marginRight="20dp"
            />
        <Button
            android:id="@+id/btn_comfirm"
            style="@style/btn_bottom_common"
            android:layout_width="0dp"
            android:layout_weight="1"
            android:background="@drawable/btn_green_commom"
            android:text="@string/comfirm"
            />
    </LinearLayout>
</LinearLayout>