Thursday, March 18, 2010

Re: [android-beginners] use Facebook in app

hello dear ! I am having the same issues for past few days. I posted
three times on the group but no one replied. its pretty sad for me ...
and what you have posted about fbrocket is a new thing for me. I'll
check it out. by the way i tried with fbconnect api
[http://code.google.com/p/fbconnect-android] but i have tried it on
all android versions and what i only see is a blank screen when i try
to connect to facebook. I just need to add login functionality using
facebook login id and password in my app.

help me if you get any solution to this. Thanks in advance.
regards,
wahib

On 3/17/10, Saurabh <meet2saurabhmail@gmail.com> wrote:
> Hi I want to use facebook api in android app.I have seen
> http://www.xeomax.net/fbrocket
> api but It open as we bpage.But I want a way where I can customize
> Login Screen,Status Post Screen.but not like a web page.
> As it found in iPhone.
> If there is any way Please suggest me
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Beginners" group.
>
> NEW! Try asking and tagging your question on Stack Overflow at
> http://stackoverflow.com/questions/tagged/android
>
> To unsubscribe from this group, send email to
> android-beginners+unsubscribe@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-beginners?hl=en
>
> To unsubscribe from this group, send email to
> android-beginners+unsubscribegooglegroups.com or reply to this email with
> the words "REMOVE ME" as the subject.
>


--
Wahib-ul-haq

3rd year Communications Engineering Student,
NUST, Pakistan.
Microsoft Student Partner
follow me on twitter @wahibhaq

--
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

To unsubscribe from this group, send email to android-beginners+unsubscribegooglegroups.com or reply to this email with the words "REMOVE ME" as the subject.

[android-discuss] Learn how to develop android apps

If you have what to learn how develop android apps but
keep getting frustrated by advanced tutorials that leave
beginners out. Check out my list of tutorial web sites for
beginners.

Tutorial sites are very important for beginners,
check out my lists of good tutorial sites found

.... http://bit.ly/aDxGrG

--
You received this message because you are subscribed to the Google Groups "Android Discuss" group.
To post to this group, send email to android-discuss@googlegroups.com.
To unsubscribe from this group, send email to android-discuss+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/android-discuss?hl=en.

[android-beginners] Android tutorial sites

Tutorial sites are very important for beginners, check out the list of
really good tutorial sites that I found.... http://bit.ly/aDxGrG

--
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

To unsubscribe from this group, send email to android-beginners+unsubscribegooglegroups.com or reply to this email with the words "REMOVE ME" as the subject.

[android-developers] Re: Hi All TabWidget Show is Small

Hi Kantesh & Kumar Bibek

Thanks a lot for both recommend. I will try fix it by both and
tell result again.

On Mar 19, 1:07 am, Kumar Bibek <coomar....@gmail.com> wrote:
> I would recommend to go for a Gallery view for such a requirement.
> Have a look at some examples and think about it.
>
> Thanks and Regards,
> Kumar Bibek
>
> On Mar 18, 4:47 pm, Kantesh <kantesh....@gmail.com> wrote:
>
>
>
> > Hi takky
> >                  wenever u create tab by using
> > TabHost.addTab(TabSpec); rite??  store all tabspecs in array list of
> > type tab spec
> > lik this       ArrayList<TabHost.TabSpec> list = new
> > ArrayList<TabHost.TabSpec>(); and  initialy show up to 3 in a for
> > loop .......
> > as u told add a button at left... set a onclick listner... wenever u
> > click that button show next 3 tabs... i think may work...
>
> > On Mar 17, 4:14 pm, takky takazawa <chil...@gmail.com> wrote:
>
> > > Hi All
>
> > >           I'm developing application in android v.2.1. My tab host
> > > contain 6 tab. But All tab show smaller, How to increase tab widh ?.
> > > or How to show Three first tab and show button at the left sight,
> > > after click this button it show another tab ?.
>
> > > Thanks in advances.

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

To unsubscribe from this group, send email to android-developers+unsubscribegooglegroups.com or reply to this email with the words "REMOVE ME" as the subject.

Re: [android-developers] Re: How to show a ScrollView with button anchored to bottom of screen?

On Thu, Mar 18, 2010 at 9:46 PM, Andreas <andreas.bexell@gmail.com> wrote:
Curiously, no. Shorter code below:

   mScrollView = new ScrollView(this);
   mListView = new LinearLayout(this);
   mScrollView.addView(mListView);
   mListView.setOrientation(LinearLayout.VERTICAL);

   Button button = new Button(this);
   button.setText("OK");

   LinearLayout layout = new LinearLayout(this);
   layout.setOrientation(LinearLayout.VERTICAL);
   layout.addView(mScrollView);
   layout.addView(button);

As the list view grows, the button will disappear outside the screen
and become unreachable. I was very surprised. ;)

Where are you setting the layout parameters and weights for the the views, if at all?

-------------------------------------------------------------------------------------------------
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
 
To unsubscribe from this group, send email to android-developers+unsubscribegooglegroups.com or reply to this email with the words "REMOVE ME" as the subject.

[android-developers] camera service problem

hi,

i have tried the following code and it shows me strange behavior..

http://groups.google.com/group/android-developers/browse_thread/thread/d8587b4b2139a85/809ebdafc456be32?lnk=gst&q=camera+overlay#809ebdafc456be32

when i run it for the first time it shows an exception saying "failed
to connect to the camera service"
but works fine for the second run..
what could be the possible reason for this??
pls help..


thanks in advance,

Grace.

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

To unsubscribe from this group, send email to android-developers+unsubscribegooglegroups.com or reply to this email with the words "REMOVE ME" as the subject.

[android-beginners] Can u give some idea


hello guys,
              Can u give some idea to complete this program....

The program will...
1.1 Read from ContractContacts, select the first three contacts with phone numbers and call each one simultaneously
1.2 The program will determine if the contact; (a) does not answer after a predefined time, (b) the call goes to voice mail or (c) is answered, (d) answers and hangs up.
1.3 Program will override the dial intent and provide its own interface for display status of multiple active calls.
1.4 If the call is answered the program will listen for a numeric tone (the contact presses numeric response)
1.5 The program will scrape the tone and call a server side via https with the contact number, name and the tone pressed

Steps 1.1 through 1.3 must be it's own object, named DroidStatus


Thank you.

--
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
 
NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android
 
To unsubscribe from this group, send email to
android-beginners+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
 
To unsubscribe from this group, send email to android-beginners+unsubscribegooglegroups.com or reply to this email with the words "REMOVE ME" as the subject.