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

73 lines
2.5 KiB
XML

<FrameLayout xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="@dimen/ActionBar_and_Tabs"
tools:context="com.example.sniptease.FollowersFragment" >
<RadioGroup
android:id="@+id/following_toggle_group"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="onRadioButtonClicked"
android:orientation="horizontal" >
<RadioButton
android:id="@+id/following_me_toggle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Following Me" />
<RadioButton
android:id="@+id/im_following_toggle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="I'm Following" />
<Button
android:id="@+id/searchUsersButton"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="+"
android:onClick="addFriendsButton" />
</RadioGroup>
<ScrollView
android:id="@+id/following_page_scroll_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="30dp" >
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:id="@+id/following_me_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="10dp"
android:orientation="vertical" >
</LinearLayout>
<LinearLayout
android:id="@+id/im_following_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
</LinearLayout>
<LinearLayout
android:id="@+id/search_results_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
</LinearLayout>
</FrameLayout>
</ScrollView>
</FrameLayout>