Created
December 26, 2018 09:30
-
-
Save imankitaman/2be88116d753b910863aab2a62aa5232 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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