What Icon is this?
- VIP Lounge
- 10 Replies
Reminds me of the "Like" symbol in many technology blogs.
Is she a "Likes" miner?
Is she a "Likes" miner?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
private void login() {
Login login = new Login(this);
login.makeRequest(new Callback<String>() {
@Override
public void onComplete(Result<String> result) {
if (result instanceof Result.Success) {
Intent dsp = new Intent(LoginActivity.this, MainActivity.class);
startActivity(dsp);
} else {
Result.Error<String> error = (Result.Error<String>) result;
Toast.makeText(getApplicationContext(), error.message, Toast.LENGTH_SHORT).show();
}
}
}, usernameEt.getText().toString(), passwordEt.getText().toString());
}
public void makeRequest(final Callback<String> callback, final String username, final String password) {
new Thread(new Runnable() {
@Override
public void run() {
final Result<String> result = makeSynchronousRequest(username, password);
callback.execute(result, callingActivity);
}
}).start();
}
public abstract class Callback<T> {
public abstract void onComplete(Result<T> result);
public void execute(final Result<T> result, AppCompatActivity callingActivity) {
callingActivity.runOnUiThread(new Runnable() {
@Override
public void run() {
onComplete(result);
}
});
}
}
Development thread moved to the dev area for better exposure. Good luck!!![]()

Tbh, when you are dealing with something like BT adapters or other cheap gadgets, better use eBay because of accountability of sellers and money back guarantee. If something doesn't work or breaks within a few weeks, they are willing to send a replacement or offer you another one at discounted price. Otherwise, you buy "as is" since there is no guarantee.