You only need to do this:
Twitter twitter = mTwitterApp.getTwitterInstance(); long cursor = -1; List<User> users=twitter.getFriendsList(mTwitterApp.getUserID(), cursor);
Here, users is a list of users who are your friends (you follow them). mTwitterApp.getUserID () is your username, which is a long value.
source share