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_change_env.xml
Find file
Normal viewHistoryPermalink
dialog_change_env.xml 1.95 KB
Newer Older
mReturn's avatar
注册登录功能改版&修改图标
d760c979
 
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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="30dp"
        android:layout_centerInParent="true"
        android:background="@drawable/item_shape"
        android:orientation="vertical">

        <TextView
            android:id="@+id/tv_dev"
            android:layout_width="match_parent"
            android:layout_height="45dp"
            android:gravity="center"
            android:text="Dev 环境"
            android:textColor="@color/common_text_color"
            android:textSize="15sp" />

        <TextView style="@style/line" />

        <TextView
            android:id="@+id/tv_uat"
            android:layout_width="match_parent"
            android:layout_height="45dp"
            android:gravity="center"
            android:text="UAT 环境"
            android:textColor="@color/common_text_color"
            android:textSize="15sp" />

        <TextView style="@style/line" />

        <TextView
            android:id="@+id/tv_release"
            android:layout_width="match_parent"
            android:layout_height="45dp"
            android:gravity="center"
            android:text="正式环境"
            android:textColor="@color/common_text_color"
            android:textSize="15sp" />
        <TextView style="@style/line" />

        <TextView
            android:background="@drawable/btn_blue_commom"
            android:layout_margin="30dp"
            android:id="@+id/tv_cancle"
            android:layout_width="match_parent"
            android:layout_height="45dp"
            android:gravity="center"
            android:text="取消"
            android:textColor="@color/white"
            android:textSize="15sp" />

    </LinearLayout>

</RelativeLayout>