123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:flatui="http://schemas.android.com/apk/res-auto"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:background="@drawable/dialog_bg"
- android:orientation="vertical">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:layout_margin="@dimen/space_20"
- android:gravity="center"
- android:text="@string/dialog_system_show"
- android:textColor="@color/black"
- android:textSize="@dimen/text_size_20" />
- <TextView
- android:id="@+id/txt_dialog_old"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginBottom="@dimen/space_5"
- android:layout_marginLeft="@dimen/space_40"
- android:text="@string/fragment_dialog_update_psw_old"
- android:textSize="@dimen/text_size_14" />
- <com.jsjty.jdc.app.widget.flatui.views.FlatEditText
- android:id="@+id/ed_input_text_old"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="@dimen/space_40"
- android:layout_marginRight="@dimen/space_40"
- android:inputType="numberPassword"
- android:maxLines="1"
- android:textColor="@color/black"
- flatui:fl_fieldStyle="fl_box" />
- <TextView
- android:id="@+id/txt_dialog_new"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginBottom="@dimen/space_5"
- android:layout_marginLeft="@dimen/space_40"
- android:layout_marginTop="@dimen/space_20"
- android:text="@string/fragment_dialog_update_psw_new"
- android:textSize="@dimen/text_size_14" />
- <com.jsjty.jdc.app.widget.flatui.views.FlatEditText
- android:id="@+id/ed_input_text_new"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="@dimen/space_40"
- android:layout_marginRight="@dimen/space_40"
- android:inputType="numberPassword"
- android:maxLines="1"
- android:textColor="@color/black"
- flatui:fl_fieldStyle="fl_box" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="@dimen/space_15"
- android:orientation="horizontal">
- <Button
- android:id="@+id/btn_resume"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="5dip"
- android:layout_weight="1"
- android:background="@color/dialog_bg_blue"
- android:padding="@dimen/space_10"
- android:text="@string/str_resume"
- android:textColor="@color/white"
- android:textSize="@dimen/text_size_15" />
- <Button
- android:id="@+id/btn_cancel"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="5dip"
- android:layout_weight="1"
- android:background="@color/dialog_bg"
- android:padding="@dimen/space_10"
- android:text="@string/str_cancel"
- android:textColor="@color/dialog_bg_blue"
- android:textSize="@dimen/text_size_15" />
- </LinearLayout>
- </LinearLayout>
- </RelativeLayout>
|