toggle menu

Fragment in Android can be found through

Vibhu Vikram Singh |22 Mar at 06:03

  • 3 likes
  • 1 comment
  • 180 attempts

Vibhu Vikram Singh22 Mar at 07:03

FragmentManager.findFragmentByID()

  • 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

dipti thorat03 Jan at 01:01

tell me ans plz

What is the package name of JSON?

Vibhu Vikram Singh |26 Mar at 12:03

  • 1 like
  • 0 comment
  • 26 attempts
  • 2 likes
  • 1 comment
  • 13 attempts

Chetan Tushar17 May at 06:05

Dex compiler

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

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

what is json?

Vibhu |06 Apr at 12:04

  • 2 likes
  • 0 comment
  • 3 attempts

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

Vibhu Vikram Singh10 Apr at 08:04

d

Vibhu Vikram Singh16 Apr at 11:04

fix

actionBar Issue

Govind Ramchander |09 Apr at 10:04

how to remove shadow from actionbar in android?

  • 1 like
  • 7 comments
View previous comments

Govind Ramchander09 Apr at 11:04

getting error

Govind Ramchander09 Apr at 11:04

not solve

Vibhu Vikram Singh09 Apr at 11:04

getSupportActionBar().setElevation(0);

Govind Ramchander09 Apr at 11:04

thank you for reply solve my problem

Vibhu Vikram Singh10 Apr at 07:04

not solve

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

Govind Ramchander02 Apr at 01:04

getting an error in 14 API.How to Fix?

Ad mob position

Govind Ramchander |03 Apr at 06:04

admob banner position / notification bar

 

  • 2 likes
  • 1 comment

Vibhu Vikram Singh03 Apr at 06:04

adParams.addRule(RelativeLayout.CENTER_HORIZONTAL)

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

Govind Ramchander03 Apr at 11:04

use value_of. To_char returns a json encoded string.

Vibhu Vikram Singh03 Apr at 11:04

if your project hide then get this error, so unhide your project

Govind Ramchander06 Apr at 07:04

solve my problem

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

GridView

Govind Ramchander |03 Apr at 06:04

How to center GridView on the screen

 

  • 1 like
  • 0 comment