Giter VIP home page Giter VIP logo

Comments (5)

gorbin avatar gorbin commented on July 3, 2024

Trully, I'm already thinking about it.

Every social network is a separate module and it is a main problem in creating common enum, maybe you got any ideas?

from asne.

dsdebastiani avatar dsdebastiani commented on July 3, 2024

You can add on SocialNetwork class as public static attributes:
public abstract class SocialNetwork {
...
public static final int ASNE_TWITTER_ID = 1;
public static final int ASNE_LINKEDIN_ID = 2;
public static final int ASNE_GOOGLE_PLUS_ID = 3;
public static final int ASNE_FACEBOOK_ID = 4;
...
}

Then you can access from app:
SocialNetwork.ASNE_FACEBOOK_ID;

Ex:
//Login listener
private View.OnClickListener loginClick = new View.OnClickListener() {
@OverRide
public void onClick(View view) {
int networkId = 0;
switch (view.getId()){
case R.id.facebook:
networkId = SocialNetwork.ASNE_FACEBOOK_ID;
break;
}
...
}

....
if (socialNetwork.isConnected()) {
switch (socialNetwork.getID()) {
case SocialNetwork.ASNE_FACEBOOK_ID:
facebook.setText("Show Facebook profile");
break;
}
}
....

from asne.

gorbin avatar gorbin commented on July 3, 2024

@dsdebastiani you right but I'm thinking about adding constants to different social networks and using them like FacebookSocialNetwork.ID - as I think it's simple and no need to change ASNECore to add new socail network

what do you think about it?

by the way I'm almost finish adding another social network and plan to add this at new commit...

from asne.

dsdebastiani avatar dsdebastiani commented on July 3, 2024

Ok, I got it! Really it's better.
I not knew that each SocialNetwork class had an ID.
So, I not need to create the satic attributes in my app with the IDs, I can use directly the ID from especific class. Is it right?

from asne.

gorbin avatar gorbin commented on July 3, 2024

@dsdebastiani yes right

from asne.

Related Issues (20)

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.