Skip to content

Instantly share code, notes, and snippets.

@minibugdev
Created February 6, 2020 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save minibugdev/cdf1afd77096d56512ad9540ef91fedc to your computer and use it in GitHub Desktop.
Save minibugdev/cdf1afd77096d56512ad9540ef91fedc to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/imageview_avatar"
android:layout_width="150dp"
android:layout_height="150dp"
android:layout_centerInParent="true"
android:src="@drawable/avatar"/>
<!-- เพิ่ม ViewStub -->
<ViewStub
android:id="@+id/stub"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:inflatedId="@+id/layout_banned_user"
android:layout="@layout/banned_user"/>
</RelativeLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment