- 3 likes
- 1 comment
- 180 attempts
Fragment in Android can be found through
Vibhu Vikram Singh |22 Mar at 06:03
- Like
- Comment
As an Android programmer, what version of Android should you use as your minimum development target?
Vibhu Vikram Singh |27 Mar at 11:03
- 3 likes
- 0 comment
- 34 attempts
How to get a response from an activity in Android?
Vibhu Vikram Singh |22 Mar at 06:03
- 3 likes
- 1 comment
- 34 attempts
What is the name of the program that converts Java byte code into Dalvik byte code?
Vibhu Vikram Singh |27 Mar at 11:03
- 2 likes
- 1 comment
- 13 attempts
difference between asynctask & thread
Waseem ansari |22 May at 12:05
What is difference between asyncTasks & threads ?
plz help me!
- 1 like
- 0 comment
Promotive Overloading
Pooja Patnaik |21 May at 11:05
Can anyone tell me that What is Promotive Overloading in detail?
Help me!!!
- 0 like
- 0 comment
Android Development
Vibhu Vikram Singh |18 Apr at 07:04
Java.lang.IllegalStateException: The application PagerAdapter changed the adapter's contents without calling PagerAdapter#notifyDataSetChanged android
- 1 like
- 0 comment
The extension name of a Java source file is...
Waseem ansari |21 May at 11:05
The extension name of a Java source file is...
- 0 like
- 0 comment
How to detect App installed on mobile device or not, using mobile web browser
Dhananjay Kumar |20 Jun at 08:06
I have to show a popup message on my website if my mobile app installs then call for access mobile app & if not installed then call for download app.
Anyone have an idea with how to do with javascript, please suggest.
- 1 like
- 1 comment
Dhananjay Kumar20 Jun at 02:06
I have reviewed lots and doing R&D, but not getting the solution.
Finally, we have done the below things.
1) App installation with store Device Number and Device Name using web-service.
2) On the website with help of javascript getting mobile Device Number and Device Name and that's search inside the database and accordingly showing the message app installed or not.
SQLiteException
Vibhu Vikram Singh |04 May at 12:05
android.database.sqlite.SQLiteException: near "FT": syntax error (code 1):
- 0 like
- 0 comment
How To Load Animation in Android?
Vibhu Vikram Singh |26 Mar at 12:03
Animation animation= AnimationUtils.loadAnimation(getApplicationContext,R.anim.myanimation);
- 4 likes
- 2 comments
actionBar Issue
Govind Ramchander |09 Apr at 10:04
how to remove shadow from actionbar in android?
- 1 like
- 7 comments
android fade in animation XML
Vibhu Vikram Singh |02 Apr at 01:04
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:fillAfter="true" >
<alpha
android:duration="1000"
android:fromAlpha="0.0"
android:interpolator="@android:anim/accelerate_interpolator"
android:toAlpha="1.0" />
</set>
- 0 like
- 1 comment
Ad mob position
Govind Ramchander |03 Apr at 06:04
Email from Facebook in android
Vibhu Vikram Singh |02 Apr at 01:04
How to get an email from Facebook on android?
- 1 like
- 1 comment
Govind Ramchander02 Apr at 01:04
You Can get an email like this.....
loginButton.setReadPermissions(Arrays.asList(
"public_profile", "email", "user_birthday", "user_friends"));
callbackManager = CallbackManager.Factory.create();
// Callback registration
loginButton.registerCallback(callbackManager, new FacebookCallback<LoginResult>() {
@Override
public void onSuccess(LoginResult loginResult) {
// App code
GraphRequest request = GraphRequest.newMeRequest(
loginResult.getAccessToken(),
new GraphRequest.GraphJSONObjectCallback() {
@Override
public void onCompleted(JSONObject object, GraphResponse response) {
Log.v("LoginActivity", response.toString());
// Application code
String email = object.getString("email");
String birthday = object.getString("birthday"); // 01/31/1980 format
}
});
Bundle parameters = new Bundle();
parameters.putString("fields", "id,name,email,gender,birthday");
request.setParameters(parameters);
request.executeAsync();
}
@Override
public void onCancel() {
// App code
Log.v("LoginActivity", "cancel");
}
@Override
public void onError(FacebookException exception) {
// App code
Log.v("LoginActivity", exception.getCause().toString());
}
});
}
Android Build time Error
Govind Ramchander |03 Apr at 11:04
error getting an oracle type from json_value
- 1 like
- 3 comments
Android application webservice on digitalocean NGINX server not return reponse
Dhananjay Kumar |05 Apr at 05:04
I have uploaded my android application webservice on digitalocean Nginx (LEMP) server and getting issues with some mobile device (mostly on Samsung Mobile), Request URL (like https://adc.com/sever_file.php) is JSON response is comes blank with below ERROR.
E/SMD: DCD OFF
E/Volley: [4828] BasicNetwork.performRequest: Unexpected response code 400
Any one have idea about the issues, please suggest.
- 0 like
- 0 comment