Skip to content

Instantly share code, notes, and snippets.

@imankitaman
Created December 26, 2018 09:30
Show Gist options
  • Save imankitaman/2be88116d753b910863aab2a62aa5232 to your computer and use it in GitHub Desktop.
Save imankitaman/2be88116d753b910863aab2a62aa5232 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout android:layout_width="match_parent"
android:orientation="vertical"
android:id="@+id/ll_buttons_container"
android:layout_gravity="center"
android:layout_height="wrap_content">
<Button
android:id="@+id/btn_load_fragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:gravity="center"
android:layout_gravity="center"
android:text="Loading Fragment "/>
<Button
android:id="@+id/btn_load_activity"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:gravity="center"
android:layout_gravity="center"
android:text="Loading Activity "/>
</LinearLayout>
<FrameLayout
android:id="@+id/container_feature_module"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone"/>
</FrameLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment