Coder Social home page Coder Social logo
My library project for android
Contains
- AsyncImageLoader
- Rest Api for works with http

Usage:
- include in main project like a library project
- define app in manifest
<application
        android:name="App" />
- Extend App from ru.recoilme.AndroidApplication
Whats all

Example:

public class ImhonetActivity extends RestActivity
{
	private final int SPLASH_DISPLAY_LENGHT = 1000;

	@Override
	public void onCreate(Bundle savedInstanceState)
	{
		super.onCreate(savedInstanceState);
		setContentView(R.layout.main);
		BugSenseHandler.setup(this, getString(R.string.bugsense));
        restGetRequest(RestService.HOST+"signin?key="+AndroidApplication.KEY,"token");
	}

    private void start() {
        ImhonetActivity.this.startActivity(new Intent(ImhonetActivity.this,FilmsActivity.class));
        finish();
    }

    @Override
    public void onRESTResult(int code, String result, String mode) {
        if (mode.equals("token")) {
            String token = "";
            JSONObject obj = null;
            try {
                obj = new JSONObject(result);
                obj = obj.optJSONObject("response");
                token = obj.optString("token");
            } catch (JSONException e) {
                AndroidApplication.log(e);
            }
            finally {
                obj = null;
            }
            if (!token.equals("") ) {
                AndroidApplication.setToken(token);
                if (AndroidApplication.getPrefsBoolean("logged")) {
                    Bundle params = new Bundle();
                    params.putString("login", AndroidApplication.getPrefsString("login"));
                    params.putString("password", AndroidApplication.getPrefsString("pass"));
                    String url = RestService.ApiToUri("user/auth", null);
                    restPostRequest(url,"user/auth",params);
                }
                else {
                    start();
                }
            }
            else {
                Toast.makeText(this,R.string.error_noconnection,Toast.LENGTH_SHORT).show();
            }
        }
        else if (mode.equals("user/auth")){
            start();
        }
        else {
            Toast.makeText(this,R.string.error_noconnection,Toast.LENGTH_SHORT).show();
        }
    }
}

Vadim Kulibaba's Projects

100linesdxl icon 100linesdxl

Inference stable diffusion model in 100 lines of code. Simple, fast with cpu, gpu and mps (mac m1/2/3) support

2qcache icon 2qcache

2Q: A Low Overhead High Performance Buffer Management Replacement Algorith

art icon art

Adaptive Radix Tree done right

awesome-go icon awesome-go

A curated list of awesome Go frameworks, libraries and software

b52 icon b52

b52 is a fast experimental Key/value database. With support for the memcache protocol.

bolt icon bolt

An embedded key/value database for Go.

centrifuge icon centrifuge

Real-time messaging library for Go - Websocket and SockJS. WIP

chatengine icon chatengine

Open source mtproto server written in golang, which compatible telegram client.

deforum_music icon deforum_music

A research project with the ambitious goal of automatically generating audio reactive video

doppio icon doppio

Doppio is a fast LRU cache on top of Ristretto, Redcon, and Evio. Support for the Redis protocol.

fastcache icon fastcache

Fast thread-safe inmemory cache for big number of entries in Go. Minimzes GC overhead

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.