This repository has been archived on 2025-04-28. You can view files and clone it, but cannot push or open issues or pull requests.
SnipIt/res/layout/activity_settings.xml
djwesty b692a0d8c9 Snip It
Latest, and last version of Snip It, formerly SnipTease
2014-10-29 13:37:13 -07:00

91 lines
3.2 KiB
XML

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.sniptease.SettingsActivity"
tools:ignore="MergeRootFrame" >
<ScrollView
android:id="@+id/following_me_scroll_view"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/view_profile_username"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="username" />
<TextView
android:id="@+id/settings_username_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Username from server" />
<TextView
android:id="@+id/view_profile_location_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="e-mail address" />
<Button
android:id="@+id/edit_email_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="editEmail"
android:text="get email from server" />
<CheckBox
android:id="@+id/allFollowersCheckBox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Notifications" />
<TextView
android:id="@+id/view_profile_about_me"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="sharing" />
<Button
android:id="@+id/fb_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Facebook" />
<Button
android:id="@+id/twit_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Twitter" />
<TextView
android:id="@+id/textView6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="legal" />
<Button
android:id="@+id/privacy_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Privacy" />
<Button
android:id="@+id/tos_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Terms of Service" />
</LinearLayout>
</ScrollView>
</FrameLayout>