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_snip_recipients.xml
djwesty b692a0d8c9 Snip It
Latest, and last version of Snip It, formerly SnipTease
2014-10-29 13:37:13 -07:00

41 lines
1.3 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.SnipRecipientsActivity"
tools:ignore="MergeRootFrame" >
<LinearLayout
android:id="@+id/sendSnipFollowersContainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="10dp"
android:orientation="vertical" >
<CheckBox
android:id="@+id/allFollowersCheckBox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="allFollowersCheckBoxOnClick"
android:text="All followers" />
</LinearLayout>
<Button
android:id="@+id/uploadSnipButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:onClick="uploadSnipButtonOnClick"
android:text="Send Snip" />
<ProgressBar
android:id="@+id/uploadSnipProgressBar"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</FrameLayout>