Skip to content

Instantly share code, notes, and snippets.

View SPurno's full-sized avatar
🎮
Playing games

Faruk Ahmed SPurno

🎮
Playing games
View GitHub Profile
/*
* Copyright (c) 2018 Faruk Ahmed
* License Under MIT
* Not use for commercial perpose
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
@SPurno
SPurno / activity_main.xml
Created October 31, 2018 12:20
activity_main.xml file
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF"
tools:context=".MainActivity">
<TextView
android:id="@+id/resultTextView"
@SPurno
SPurno / RequestQueueSingleton.java
Created October 31, 2018 11:58
Android Volley Help
package com.syntech.spurno.post;
import android.content.Context;
import com.android.volley.RequestQueue;
import com.android.volley.toolbox.Volley;
public class RequestQueueSingleton {
private static RequestQueueSingleton requestQueueSingleton;
private RequestQueue requestQueue;
private static Context context;