Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:background="#fff"
- android:orientation="vertical"
- android:id="@+id/fragmentContainer"
- tools:context="org.aidmaid.settings.SettingsActivity">
- <RelativeLayout android:gravity="bottom" android:layout_width="match_parent" android:orientation="horizontal"
- android:layout_height="60dip" android:background="#d01d1b">
- <TextView
- android:text="Settings"
- android:layout_toRightOf="@+id/backButton"
- android:textSize="23sp"
- android:textStyle="bold"
- android:textColor="#ffffff"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="30dp"
- android:layout_marginStart="30dp"
- android:layout_centerVertical="true"/>
- <ImageButton android:id="@+id/doneButton"
- android:background="@null"
- android:src="@drawable/icon_done"
- android:layout_width="wrap_content"
- android:layout_height="fill_parent"
- android:padding="15dp"
- android:layout_alignParentRight="true" />
- </RelativeLayout>
- <ScrollView
- android:layout_marginTop="60dip"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <LinearLayout
- android:background="@drawable/settings_background"
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <Button
- android:visibility="gone"
- android:id="@+id/logoutButton"
- android:text="Log Out"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:textColor="#fff"
- android:paddingLeft="5dp"
- android:paddingRight="5dp"
- android:layout_marginRight="15dp"
- android:layout_marginLeft="15dp"
- android:layout_marginTop="10dp"
- android:background="@drawable/button_round_corners"/>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <TextView
- android:text="User info"
- style="@style/HeaderSettings"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- </RelativeLayout>
- <View
- android:layout_width="fill_parent"
- android:layout_height="1dp"
- android:layout_marginLeft="15dp"
- android:layout_marginRight="15dp"
- android:background="#fff"/>
- <LinearLayout
- android:orientation="horizontal"
- android:layout_margin="15dp"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <de.hdodenhof.circleimageview.CircleImageView
- android:id="@+id/avatarImageView"
- android:layout_width="80dp"
- android:layout_height="80dp"
- android:paddingLeft="20dp"
- android:layout_marginRight="10dp"
- android:layout_centerVertical="true"
- android:layout_alignParentRight="true"
- app:border_width="1dp"
- app:border_color="#FF000000"/>
- <LinearLayout
- android:id="@+id/loginInfoContainer"
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <TextView
- android:visibility="gone"
- android:id="@+id/usernameTextView"
- android:text="User"
- style="@style/ValueEditTextSettings"
- android:textStyle="normal"
- android:textSize="30sp"
- android:gravity="left"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
- <TextView
- android:id="@+id/fullnameEditText"
- android:text="user"
- android:inputType="textNoSuggestions"
- style="@style/ValueEditTextSettings"
- android:textStyle="normal"
- android:textSize="26sp"
- android:gravity="left"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
- <TextView
- android:id="@+id/telephoneEditText"
- android:text="user"
- android:inputType="textNoSuggestions"
- style="@style/ValueEditTextSettings"
- android:textStyle="normal"
- android:textSize="18sp"
- android:gravity="left"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
- <TextView
- android:id="@+id/emailEditText"
- android:text="user"
- android:inputType="textEmailAddress|textNoSuggestions"
- style="@style/ValueEditTextSettings"
- android:textStyle="normal"
- android:textSize="18sp"
- android:gravity="left"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
- </LinearLayout>
- </LinearLayout>
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="15dp"
- android:layout_marginRight="15dp">
- <Button
- android:id="@+id/myContactsButton"
- android:text="My Contacts >"
- android:textColor="#fff"
- android:background="@drawable/button_round_corners"
- android:layout_marginTop="15dp"
- android:layout_marginRight="15dp"
- android:layout_marginBottom="15dp"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content" />
- <TextView
- android:text="Set Alert Delay Time"
- style="@style/HeaderSettings"
- android:gravity="center_horizontal"
- android:textSize="18sp"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
- <LinearLayout
- android:orientation="vertical"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <SeekBar
- android:id="@+id/delayBeforeAlarmSeekBar"
- android:progressDrawable="@drawable/seekbar_red_progress"
- android:thumb="@drawable/seekbar_thumb"
- android:maxHeight="2dp"
- android:layout_marginTop="3dp"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:indeterminate="false" />
- <TextView
- android:id="@+id/delayBeforeAlarmTextView"
- android:text="1 sec"
- android:background="#d01d1b"
- android:layout_marginTop="10dp"
- android:textColor="#fff"
- android:padding="5dp"
- android:textSize="18sp"
- android:textAlignment="center"
- android:gravity="center"
- android:layout_gravity="center"
- android:layout_width="110dp"
- android:layout_height="wrap_content" />
- </LinearLayout>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingTop="20dp"
- android:paddingBottom="20dp">
- <TextView
- android:text="Send GPS coordinates"
- android:textColor="#fff"
- android:textSize="18sp"
- android:layout_centerVertical="true"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- <CheckBox
- android:id="@+id/sendGpsCheckBox"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:button="@drawable/checkbox_selector"
- android:background="@null"/>
- </RelativeLayout>
- <View
- android:layout_width="fill_parent"
- android:layout_height="1dp"
- android:background="#fff"/>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingTop="20dp"
- android:paddingBottom="20dp">
- <TextView
- android:text="Post to social network"
- android:textColor="#fff"
- android:textSize="18sp"
- android:layout_centerVertical="true"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- <CheckBox
- android:id="@+id/postToSocialCheckBox"
- android:textColor="#fff"
- android:textSize="18sp"
- android:layout_alignParentRight="true"
- android:layout_alignParentEnd="true"
- android:layout_centerVertical="true"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:button="@drawable/checkbox_selector"
- android:background="@null"/>
- </RelativeLayout>
- <View
- android:layout_width="fill_parent"
- android:layout_height="1dp"
- android:background="#fff"/>
- <com.facebook.login.widget.LoginButton
- android:id="@+id/facebookLoginButton"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:layout_marginTop="20dp"
- android:layout_marginBottom="20dp" />
- <Button
- android:id="@+id/defineMessageButton"
- android:text="DEFINE MESSAGE"
- android:textColor="#fff"
- android:background="@drawable/button_round_corners"
- android:layout_marginTop="15dp"
- android:layout_marginBottom="15dp"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content" />
- </LinearLayout>
- <View
- android:layout_width="fill_parent"
- android:layout_marginLeft="15dp"
- android:layout_marginRight="15dp"
- android:layout_height="1dp"
- android:background="#fff"/>
- <LinearLayout
- android:id="@+id/countryContainer"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <TextView
- android:text="Country: "
- style="@style/HeaderSettings"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- <TextView
- android:id="@+id/countryNameTextView"
- android:text=""
- style="@style/HeaderSettings"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- </LinearLayout>
- <View
- android:layout_width="fill_parent"
- android:layout_marginLeft="15dp"
- android:layout_marginRight="15dp"
- android:layout_height="1dp"
- android:background="#fff"/>
- <LinearLayout
- android:orientation="horizontal"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <TextView
- android:text="Police"
- style="@style/HeaderSettings"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- <EditText
- android:id="@+id/policePhoneEditText"
- style="@style/PhoneNumberEditTextSettings"
- android:hint="Police phone"
- android:textColorHint="#bbb"
- android:gravity="end"
- android:layout_marginRight="15dp"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
- </LinearLayout>
- <View
- android:layout_width="fill_parent"
- android:layout_height="1dp"
- android:layout_marginLeft="15dp"
- android:layout_marginRight="15dp"
- android:background="#fff"/>
- <LinearLayout
- android:orientation="horizontal"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <TextView
- android:text="Ambulance"
- style="@style/HeaderSettings"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- <EditText
- android:id="@+id/ambulancePhoneEditText"
- style="@style/PhoneNumberEditTextSettings"
- android:hint="Ambulance phone"
- android:textColorHint="#bbb"
- android:gravity="end"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginRight="15dp"/>
- </LinearLayout>
- <View
- android:layout_width="fill_parent"
- android:layout_marginLeft="15dp"
- android:layout_marginRight="15dp"
- android:layout_height="1dp"
- android:background="#fff"/>
- <Button
- android:id="@+id/alertSoundButton"
- android:layout_below="@+id/alertSoundHeader"
- android:text="Siren"
- style="@style/HeaderSettings"
- android:textAlignment="textStart"
- android:gravity="start"
- android:textSize="25sp"
- android:textColor="#fff"
- android:paddingTop="15dp"
- android:paddingBottom="15dp"
- android:layout_marginRight="15dp"
- android:background="@drawable/button_arrow_right"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
- <View
- android:layout_width="fill_parent"
- android:layout_marginLeft="15dp"
- android:layout_marginRight="15dp"
- android:layout_height="1dp"
- android:background="#fff"/>
- <LinearLayout
- android:orientation="vertical"
- android:layout_marginLeft="15dp"
- android:layout_marginRight="15dp"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingTop="20dp"
- android:paddingBottom="20dp">
- <TextView
- android:text="Shaking"
- android:textColor="#fff"
- android:textSize="18sp"
- android:layout_centerVertical="true"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- <CheckBox
- android:id="@+id/shakingCheckBox"
- android:layout_alignParentRight="true"
- android:layout_alignParentEnd="true"
- android:layout_centerVertical="true"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:button="@drawable/checkbox_selector"
- android:background="@null"/>
- </RelativeLayout>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingTop="20dp"
- android:paddingBottom="20dp">
- <TextView
- android:text="Flashing blinking"
- android:textColor="#fff"
- android:textSize="18sp"
- style="@style/CheckBoxTextViewSettings"
- android:layout_centerVertical="true"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- <CheckBox
- android:id="@+id/flashingBlinkingCheckBox"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:button="@drawable/checkbox_selector"
- android:background="@null"/>
- </RelativeLayout>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingTop="20dp"
- android:paddingBottom="20dp">
- <TextView
- android:text="Screen flashing"
- android:textColor="#fff"
- android:textSize="18sp"
- style="@style/CheckBoxTextViewSettings"
- android:layout_centerVertical="true"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- <CheckBox
- android:id="@+id/screenFlashingCheckBox"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:button="@drawable/checkbox_selector"
- android:background="@null"/>
- </RelativeLayout>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingTop="20dp"
- android:paddingBottom="20dp">
- <TextView
- android:text="Maximize volume"
- android:textColor="#fff"
- android:textSize="18sp"
- style="@style/CheckBoxTextViewSettings"
- android:layout_centerVertical="true"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- <CheckBox
- android:id="@+id/maximizeVolumeCheckBox"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:button="@drawable/checkbox_selector"
- android:background="@null"/>
- </RelativeLayout>
- </LinearLayout>
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginBottom="30dp">
- <LinearLayout
- android:orientation="horizontal"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <Button
- android:id="@+id/rateButton"
- android:text="RATE AIDMAID"
- android:background="@drawable/button_round_corners"
- android:textColor="#fff"
- android:layout_weight="0.5"
- android:layout_marginLeft="20dp"
- android:layout_marginTop="40dp"
- android:layout_marginRight="5dp"
- android:layout_width="0dp"
- android:layout_height="wrap_content"/>
- <Button
- android:id="@+id/contactUsButton"
- android:text="CONTACT US"
- android:background="@drawable/button_round_corners"
- android:textColor="#fff"
- android:layout_weight="0.5"
- android:layout_marginLeft="5dp"
- android:layout_marginTop="40dp"
- android:layout_marginRight="20dp"
- android:layout_width="0dp"
- android:layout_height="wrap_content"/>
- </LinearLayout>
- <LinearLayout
- android:orientation="horizontal"
- android:layout_marginBottom="30dp"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <Button
- android:id="@+id/termsOfUseButton"
- android:text="TERMS OF USE"
- android:background="@drawable/button_round_corners"
- android:textColor="#fff"
- android:layout_weight="0.5"
- android:layout_marginLeft="20dp"
- android:layout_marginTop="20dp"
- android:layout_marginRight="5dp"
- android:layout_width="0dp"
- android:layout_height="wrap_content"/>
- <Button
- android:id="@+id/privacyPolicyButton"
- android:text="PRIVACY POLICY"
- android:background="@drawable/button_round_corners"
- android:textColor="#fff"
- android:layout_weight="0.5"
- android:layout_marginLeft="5dp"
- android:layout_marginStart="5dp"
- android:layout_marginTop="20dp"
- android:layout_marginRight="20dp"
- android:layout_marginEnd="20dp"
- android:layout_width="0dp"
- android:layout_height="wrap_content"/>
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
- </ScrollView>
- </FrameLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement