123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- 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:layout_marginLeft="@dimen/space_15"
- android:layout_marginRight="@dimen/space_15"
- android:background="@drawable/dialog_bg"
- android:orientation="vertical"
- android:paddingBottom="@dimen/space_10"
- android:paddingLeft="@dimen/space_10"
- android:paddingRight="@dimen/space_10">
- <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_prompt"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/fragment_dialog_name"
- android:textSize="@dimen/text_size_14" />
- <RadioGroup
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginBottom="@dimen/space_10"
- android:layout_marginLeft="@dimen/space_20"
- android:layout_marginRight="@dimen/space_20"
- android:layout_marginTop="@dimen/space_10">
- <RadioButton
- android:id="@+id/rd_del_group"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:button="@drawable/selector_radiobtn_style"
- android:gravity="center"
- android:padding="@dimen/space_5"
- android:text="@string/fragment_dialog_del"
- android:textColor="@color/dark_grey"
- android:textSize="@dimen/text_size_18" />
- <View
- android:layout_width="match_parent"
- android:layout_height="@dimen/space_1"
- android:background="@color/gray" />
- <RadioButton
- android:id="@+id/rd_change_name"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:button="@drawable/selector_radiobtn_style"
- android:gravity="center"
- android:padding="@dimen/space_5"
- android:text="@string/fragment_dialog_change_name"
- android:textColor="@color/dark_grey"
- android:textSize="@dimen/text_size_18" />
- <EditText
- android:id="@+id/ed_new_group_name"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@drawable/bg_editview_solid"
- android:padding="@dimen/space_5"
- android:textColor="@color/black"
- android:textSize="@dimen/text_size_18" />
- </RadioGroup>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <Button
- android:id="@+id/dialog_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_5"
- android:text="@string/str_resume"
- android:textColor="@color/white"
- android:textSize="@dimen/text_size_15" />
- <Button
- android:id="@+id/dialog_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_5"
- android:text="@string/cancle"
- android:textColor="@color/white"
- android:textSize="@dimen/text_size_15" />
- </LinearLayout>
- </LinearLayout>
- </RelativeLayout>
|