Skip to content

Instantly share code, notes, and snippets.

@ibrahim4851
Created May 22, 2021 11:43
Show Gist options
  • Save ibrahim4851/c34f2c0ca21cc2f21484b98b9336f59b to your computer and use it in GitHub Desktop.
Save ibrahim4851/c34f2c0ca21cc2f21484b98b9336f59b to your computer and use it in GitHub Desktop.
MainActivityXmlVolley
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center"
tools:context=".MainActivity">
<Button
android:id="@+id/getarray"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Get Method Json Array"/>
<Button
android:id="@+id/getobject"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Get Method Json Object"/>
<Button
android:id="@+id/postobject"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Post Method Json Object"/>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment