Skip to content

Instantly share code, notes, and snippets.

@ankit-lakhanpal
Created August 19, 2015 14:52
Show Gist options
  • Save ankit-lakhanpal/51191e4028dda0663bee to your computer and use it in GitHub Desktop.
Save ankit-lakhanpal/51191e4028dda0663bee to your computer and use it in GitHub Desktop.
fragment main actuvity
<RelativeLayout 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" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">
<fragment
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:name="com.lakhanpal.ankit.fragments.TopSectionText"
android:id="@+id/fragment"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
tools:layout="@layout/top_section_fragment" />
<fragment
android:layout_width="275dp"
android:layout_height="290dp"
android:name="com.lakhanpal.ankit.fragments.picfrag"
android:id="@+id/fragment2"
tools:layout="@layout/botton_pic_fragment"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true" />
</RelativeLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment