Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my application I am using facebook authentication.My code looks like

var win1 = Titanium.UI.createWindow({  
    title:'Tab 1',
    backgroundColor:'#fff',
    layout:'vertical'
});win1.open();

Titanium.Facebook.appid = "appid";
Titanium.Facebook.permissions = ['abc'];

var facebook_button = Ti.UI.createButton(
{
    height:50,
    width:200
});win1.add(facebook_button);
facebook_button.addEventListener('click', function(e)
{
    Titanium.Facebook.authorize();  
});
var facebook = Titanium.Facebook.createLoginButton({
    style:'wide',
    bottom:80
});
win1.add(facebook);
Titanium.Facebook.addEventListener('login', connect_facebook);

function connect_facebook()
{
    alert('inside');
    Titanium.Facebook.logout();
} 

Now problem occur when I click on facebook_button. When I install application on android device(version 2.2) I click on facebook_button it causes forced close of application. after forced close If I again start application and use same functionality it's working fine.My log records gives following error java.lang.NullPointerException. if I use titanium facebook button i.e. Ti.Facebook.createLoginButton it's not giving any error even on first use also. But I want to use my own customize log-in button. I want to remove this null pointer exception. Is there any way to solve this problem? need help.. thank you..

share|improve this question
Development questions are off topic here. Please read the FAQ. – roxan Jun 7 '12 at 8:18

migrated from android.stackexchange.com Jun 7 '12 at 12:56

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.