[android-developers] Best Resources available for your C2C requirements

2017-09-22 Thread Guna Sekhar
Hi

Hope you are doing good.

Thanks for your support ,please keep supporting  Me in future also

Please add me to your distribution list : g...@hadiamondstar.com

We have consultants on various domains and technologies on C2C/C2H. If you
can send me your requirements I will be happy enough to serve to the best
of consultants I have.

please let me know if you have any suitable requirements on Corp to Corp
basis/contract to hire basis…



*Soma Reddy*

*Java*

*6*

*Aruna Malempati*

*QA*

*7*

*Sravan Reddy*

*PEGA*

*7*

*Krishna Konduri*

*WorkDay*

*7*

*Satya Sai*

*SQL*

*7+*

*Swathi Angadala*

* Python, SQL*

*6*

*Krishna Praveen Konda*

*Linux Admin*

*9+*

*Rekha Iyer*

*SQL*

*9*

*Lavanya*

*Salesforce Developer/Admin*

*7*

*Sindhu Tumati*

*.NET Developer*

*7+*

*Satish*

*Salesforce*

*7*

*Vinod Kumar*

*Salesforce*

*7*

*Lasya*

*Devops*

*6*

*Sai Nischal Dasari*

*Hadoop*

*7*

*Prasanth*

*Linux Admin*

*7*

*Eshwar*

*Salesforce Developer/Admin*

*7+*

*Snehitha*

*Data Analyst*

*6*

*Bala Krishna*

*Java*

*7+*

*Gopi Mahesh*

*QA /Linux Admin*

*8*

*Anil Kumar*

*QA*

*6*

*Sandeep Ayloo*

*Sr Java Developer*

*5*

*Mastan*

*UI Developer*

*8*

*Sravani*

*.NET Developer*

*6*

*Mohd Emran Khan*

*Sr Java Developer*

*12+*

*Sai Jagarlamudi*

*Java*

*9*

*Vamsikrishna Nannapaneni*

*UI Developer*

*8*

*Ramesh Thota*

*Ruby on Rails*

*7*

*Mounika*

*QA*

*6*

*Revanth*

*.NET Developer*

*8*

*Sandeep  *

*UI Developer*

*8*

*Ram Puli*

*QA*

*6*

*Sahiti Gaddam*

*Sharepoint Developer*

*6*

*Rakesh Rakem*

*PEGA*

*7*

*Vishal K*

*Salesforce*

*8*

*Raj Makineedi*

*UI Developer*

*6*

*Ashok Reddy*

*Mule Soft/Network Engineer*

*6*

*Sairamakrishna Karri*

*Java Fullstack Developer*

*8+*

*Pavani*

*Java/UI*

*7+*

*Abhishek*

*QA*

*7*

*Raj Alaparthy*

*PM/Tableau*

*11*

*Preethi Dasari*

*SQL *

*8*

*Gunasekhar | Sr.Resource Specialist*

*T 703.876.0070x781 | g...@hadiamondstar.com *

*9477 B Silver King Court Fairfax, VA 22031*

*Skype: gunasekhar1439*

*hangout id**= gunasekhar1...@gmail.com *

*linkedin=**https://www.linkedin.com/in/gunasekhar-naidu-a86053123/
*

[image: Description: images][image: Description: Description: Description:
Description: Description: Description: Description:
cid:sigimg1@e9d6d8af27a88fba5078df78753d8baf]

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAK%3DZXqwQ3if1FrB4MeH26NvcAVZBjY1NKo02%2BLCf3zNd9GpDrA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] My app cannot be installed from Google Play Store

2016-06-30 Thread guna a
Today all of our users are facing trouble installing our application. From 
play store, when click on install button its just opens the permission 
dialog and on clicking Accept button, nothing happens.

On Marshmallow devices, its even worst. Its opening a empty dialog with a 
progress bar in the middle and then Play Store got crashed.

My thinking is, this is happening after I uploaded about 7k+ subscription 
inapp identifiers for my app through Google Play developer API.

Any help will be much appreciated. Thanks. 

FYI, if I installed through http://play.google.com, installation happening 
fine in the device. 

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/141efe8c-d00d-4136-b06b-aef852a78730%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Android inapp purchase failed for first time

2012-07-16 Thread guna a
Hi,

I used the Google's inapp purchase sample. I handled the purchase success
in the handler as per sample code. But for the first time when user adding
his credit card and immediately purchasing, sometimes I am not getting
success message due to card activation time or some other. Please anyone
provide a solution to handle the purchase response, if it's delayed by some
reasons. In the sample code, where I have to handle that?

For your info, after getting inside the mTransactionHandler , I switched to
another activity of the application to show the status of the purchase and
start the file download.

public Handler mTransactionHandler = new Handler(){
public void handleMessage(android.os.Message msg) {
/*Log.i(*, 2Transaction complete);
Log.i(**, 2Transaction status:
+BillingHelper.latestPurchase.purchaseState);
Log.i(*, 2Item purchased is:
+BillingHelper.latestPurchase.productId);
Log.i(*, Order id:
+BillingHelper.latestPurchase.orderId);
Log.i(*, Purchase time:
+BillingHelper.latestPurchase.purchaseTime);
Log.i(*, Notification id:
+BillingHelper.latestPurchase.notificationId);*/
if(BillingHelper.latestPurchase.isPurchased()){
//Start the Download

String reference =
BillingHelper.latestPurchase.productId;
   setPurchaseSuccessful(reference);
}
};
};


Thanks.

On Sat, Jul 14, 2012 at 3:25 PM, tk guna@gmail.com wrote:

 Hi,

 I integrated inapp billing in my app. My customers often getting problem
 for the very first time they are adding their credit card and purchasing.
 2nd time purchase is good. Any one experienced this issue?

 Thanks.

 --
 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+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] android Date picker

2011-08-10 Thread ram guna
http://developer.android.com/resources/tutorials/views/hello-datepicker.html

pls refer the above link

On Tue, Aug 9, 2011 at 11:14 AM, nageswara rao rajana nagu.raj...@gmail.com
 wrote:

 Hi,

  I want to set default date for date picker. Can any one please help
 me.


  Thanking you,
  Nagu.

 --
 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+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: Video Call Recording Feature

2011-04-07 Thread Guna
Can someone pls respond!

On Mar 31, 10:17 am, Guna skarthikare...@gmail.com wrote:
 Please let me know whetherVideoCallRecordingis possible on Android
 Phones any version

 On Mar 30, 9:26 am, Guna skarthikare...@gmail.com wrote:







  Hello all,

  I am working onVideoCallRecording feature on 2.3, and wondering if
  this is possible with out any framework changes I mean as a stand
  alone application.
  Till now I have written the code working for VoiceCallRecording. I
  have 2 problems here:
  1 Once the Voicecallis connected when I try to start the camcorder
  on thecallconnected Screen, its hanging and Camcorder screen never
  shows up.
  2 Is it possible to record aVideoCall???

  with regards,
  Guna

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Video Call Recording Feature

2011-03-30 Thread Guna
Please let me know whether Video Call Recording is possible on Android
Phones any version

On Mar 30, 9:26 am, Guna skarthikare...@gmail.com wrote:
 Hello all,

 I am working onVideoCallRecording feature on 2.3, and wondering if
 this is possible with out any framework changes I mean as a stand
 alone application.
 Till now I have written the code working for VoiceCallRecording. I
 have 2 problems here:
 1 Once the Voicecallis connected when I try to start the camcorder
 on thecallconnected Screen, its hanging and Camcorder screen never
 shows up.
 2 Is it possible to record aVideoCall???

 with regards,
 Guna

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Video Call Recording Feature

2011-03-29 Thread Guna
Hello all,

I am working on Video Call Recording feature on 2.3, and wondering if
this is possible with out any framework changes I mean as a stand
alone application.
Till now I have written the code working for Voice Call Recording. I
have 2 problems here:
1 Once the Voice call is connected when I try to start the camcorder
on the call connected Screen, its hanging and Camcorder screen never
shows up.
2 Is it possible to record a Video Call???


with regards,
Guna

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Activity without UI

2011-02-24 Thread Guna
It is possible to have an activity with out UI, just comment out the 
setContentView() line. And you can do any other computation work and all 
here.
However Activity is meant to have UI, for background running purpose we 
already have service, so  please check your requirement.
 

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

RE: [android-developers] Menu always Displayable

2010-01-05 Thread Guna
Nithin,

If you want to display Menu always means, just design your own layout same
like menu and use that..


Guna

-Original Message-
From: android-developers@googlegroups.com
[mailto:android-develop...@googlegroups.com] On Behalf Of Nithin
Sent: 05 January 2010 20:57
To: Android Developers
Subject: [android-developers] Menu always Displayable

Hi,

I want options menu should always display, when  I open my
application, for that I put openOptionsMenu(), in onCreate() of the
launcher activity.  But its showing exception.

--android.view.WindowManager$BadTokenException: Unable to add window
-- token n
ull is not valid; is your activity running?

Then I put openOptionsMenu() in onResume(), still its throwing
exception.

Any idea how to make menu displayable always.

Nithin

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

RE: [android-developers] Re: Are the market stats for developers broken?

2009-12-22 Thread Guna
Hi,

Active installs are the number of guys who are currently using your app.
Many will just download and after using that they will just uninstall
because of space constraints Even you itself can't use any app
permanently Tats the reason, i think so


Guna

-Original Message-
From: android-developers@googlegroups.com
[mailto:android-develop...@googlegroups.com] On Behalf Of victor
Sent: 21 December 2009 13:23
To: Android Developers
Subject: [android-developers] Re: Are the market stats for developers
broken?

yes,i also has the issue ,active percentage from 56% to 48% at past
two days,it is keep up 5x%  in two month

On 12月20日, 下午11时45分, Justin Giles jtgi...@gmail.com wrote:
 For a month and a half my application has had a number of downloads versus
 number of active installs percentage of 77% and then over the past two
days
 it has gone down to 65%.  The most recent update my downloads went up by
 ~250 and my active installs actually DECREASED by 200.  Seems like a plus
 sign was switched with a minus sign in the update script or something.
Just
 doesn't seem right that over a months time my percentage stays the same
and
 then overnight it changes so drastically.  Any insight on this?  Anyone
else
 seeing the same thing?

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


RE: [android-developers] adding contact photos in emulator

2009-12-10 Thread Guna
Hi,

If you access the contacts db, you can get all the details. For photo, you
can get the path of the photo . Just use StreamReader and convert to bitmap.

Guna

-Original Message-
From: android-developers@googlegroups.com
[mailto:android-develop...@googlegroups.com] On Behalf Of vidya
Sent: 09 December 2009 13:47
To: Android Developers
Subject: [android-developers] adding contact photos in emulator

Hi ,
Can anyone tell me how to add contact photo in android emulator.
I want to show the contact photo in my app.
I am mew to Android.

Thanks,

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Using Intent on default Google Map

2009-08-03 Thread guna

I launch the default google map apk from my application, by starting
the intent
new Intent(Intent.ACTION_VIEW, Uri.parse(geo:+lon+,+lat)), 3);

What I want is to start the map with menu option my location clicked
and the current address displayed on the sign (user normally can bring
up the sign with its address with a long click on the map.)

There is a Google application called places directory which can
trigger a similar function on Google map, i.e. start the google map
with my location with a sign that says You are here
The source code for this application is not available, so I can't
check what intent it uses to trigger this action.

Any suggestions are welcome.
If possible tell me where i can get the source code for default google
maps... because i cant find out from git repository


Thanks,
Guna
--~--~-~--~~~---~--~~
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-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Menu should be on the Image

2009-06-04 Thread guna
Use Image buttons as each list item..background as a imageView..

On Thu, Jun 4, 2009 at 12:27 PM, Saurav Mukherjee 
to.saurav.mukher...@gmail.com wrote:

 acc to me its a very simple linear layout with orientation set as vertical,
 the first child is a bitmap, the next is a list view or a table layout for
 the menu and the last child is another bitmap... thats the easiest way to
 implement the view shown in the pic!

 On Thu, Jun 4, 2009 at 12:20 PM, android.vinny vinny.s...@gmail.comwrote:


 Hi every one
 Can Any body help me how to create this screen which i have attached
 as a enclosed as a attachment

 how to cod ethis can any body give the clues for that
 any source example regarding this 
 thanks in advance



 



-- 
Guna

--~--~-~--~~~---~--~~
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-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: How to detect current screen is vertical or horizontal?

2009-06-03 Thread guna
getRequestedOrientation() method will work until you forced to change the
Orientation.

On Wed, Jun 3, 2009 at 2:21 PM, Sujay Krishna Suresh 
sujay.coold...@gmail.com wrote:

 use an orientation sensor...

 On Wed, Jun 3, 2009 at 2:13 PM, aby orz0...@gmail.com wrote:


 Hi,
 I need to set different content view after rotating device screen. Is
 there any method to detect the direction of current screen is vertical
 or horizontal?Thanks




 --
 Regards,
 Sujay
 Mark Twain http://www.brainyquote.com/quotes/authors/m/mark_twain.html - 
 There is no sadder sight than a young pessimist.
 



-- 
Guna

--~--~-~--~~~---~--~~
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-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: is upgrade to 1.5 safe???

2009-06-03 Thread guna
Yes, 1.5 is stable only, as you are working with G1, which is based on the
cupcake version.

On Wed, Jun 3, 2009 at 2:30 PM, Saurav Mukherjee 
to.saurav.mukher...@gmail.com wrote:

 hi,
 i am saurav mukherjee n i am working on a g1 mobile on android. there is a
 dialog box appearing for upgrading the os to 1.5. i jus wanted to know if
 anybody has done the same and is it safe (ie if the 1.5 os version is
 stable)?

 



-- 
Guna

--~--~-~--~~~---~--~~
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-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: is upgrade to 1.5 safe???

2009-06-03 Thread guna
Not exactly If you used the removed methods, it will show exception.
Take care of those methods alone.

On Wed, Jun 3, 2009 at 2:39 PM, Saurav Mukherjee 
to.saurav.mukher...@gmail.com wrote:


 will the applications developed for 1.0 r2 work well on 1.5? is it backward
 compatible?
 On Wed, Jun 3, 2009 at 2:33 PM, guna gunaz...@gmail.com wrote:

 Yes, 1.5 is stable only, as you are working with G1, which is based on the
 cupcake version.

 On Wed, Jun 3, 2009 at 2:30 PM, Saurav Mukherjee 
 to.saurav.mukher...@gmail.com wrote:

 hi,
 i am saurav mukherjee n i am working on a g1 mobile on android. there is
 a dialog box appearing for upgrading the os to 1.5. i jus wanted to know if
 anybody has done the same and is it safe (ie if the 1.5 os version is
 stable)?





 --
 Guna




 



-- 
Guna

--~--~-~--~~~---~--~~
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-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: items can't be selected (or highlighted)

2009-06-03 Thread guna
Post your latest code... So that its easy to correct the errors Check
whether enabled the listitems.

On Wed, Jun 3, 2009 at 4:59 PM, Tom thomas.coz...@gmail.com wrote:



 I added to my class implements AdapterView.OnItemClickListener.
 Then I implemented onItemClickListener method and added in
 onCreate setOnClickListener(this).

 Now I can select and highlight items but only with the trackball.
 Nothing happens with the mouse event.


 On 3 juin, 13:23, guna gunaz...@gmail.com wrote:
  Ask clearly your questions
 
  On Wed, Jun 3, 2009 at 4:45 PM, Tom thomas.coz...@gmail.com wrote:
 
   I just want to notice that the Layout for the ArrayAdapter contains
   checkbox.
 
   On 3 juin, 11:33, Tom thomas.coz...@gmail.com wrote:
Ok
I added to my class implements AdapterView.OnItemClickListener.
Then I implemented onItemClickListener method and added in
onCreate setOnClickListener(this).
 
Now I can select and highlight items but only with the trackball.
Nothing happens with the mouse event.
 
May have implement OnItemSelectedListener too ?
 
Thanks
Tom
 
On 2 juin, 16:47, guna gunaz...@gmail.com wrote:
 
 Tom,
 
 You didnt implements OnItemClickListener, and also in oncreate add
 setonitemclicklistener(this)
 
 On Tue, Jun 2, 2009 at 8:10 PM, Tom thomas.coz...@gmail.com
 wrote:
 
  These are my line of codings :
 
  public class UserList extends ListActivity{
 
 private Client client;
 private ArrayListUser users = new ArrayListUser();
 private UserAdapter userAdapter;
 public static final int MENU_ITEM_VIEW = Menu.FIRST;
 private static final int COLUMN_INDEX_TITLE = 1;
 
 @Override
 public void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.user_list);
 
 Intent i = getIntent();
 if (i!= null)
 {
 if
   (i.getAction().equalsIgnoreCase(Intent.ACTION_VIEW))
 {
 this.client = (Client) i.getSerializableExtra
  (Constants.CLIENT_CLASS_NAME);
 
 this.userAdapter = new UserAdapter(this,
  R.layout.user_row, users);
 users = (ArrayListUser) this.client.getUsers();
 for(int j=0;jusers.size();j++)
 {
 this.userAdapter.add(users.get(j));
 }
 setListAdapter(this.userAdapter);
 }
 }
 }
 
 private class UserAdapter extends ArrayAdapterUser{
 
 private LayoutInflater mInflater;
 private ArrayListUser items;
 
 public UserAdapter(Context context, int resourceId,
  ArrayListUser items)
 {
 super(context, resourceId, items);
 mInflater = LayoutInflater.from(context);
 this.items = items;
 }
 
 public boolean areAllItemsSelectable()
 {
 return true;
 }
 
 public boolean isEnabled(int position) {
 if (position = 0  position = items.size()) {
 return true;
 }
 return false;
 }
 
 public int getCount() {
 return items.size();
 }
 
 public User getItem(int position) {
   if (0 == position) {
   return null;
   }
   return items.get(position);
  }
 
 @Override
 public View getView(int position, View convertView,
 ViewGroup
  parent) {
 
 ViewHolder holder = null;
 View v = convertView;
 User user = items.get(position);
 
 if (v == null) {
 mInflater = (LayoutInflater)getSystemService
  (Context.LAYOUT_INFLATER_SERVICE);
 v = mInflater.inflate(R.layout.user_row, null);
 
 if (user != null) {
 // Creates a ViewHolder and store
 references
   to the
  two children views
 // we want to bind data to.
 holder = new ViewHolder();
 holder.firstNameText = (TextView)
   v.findViewById
  (R.id.user_first_name);
 holder.lastNameText = (TextView)
   v.findViewById
  (R.id.user_last_name);
 holder.phoneNumberText = (TextView)
   v.findViewById
  (R.id.user_phone_number);
 holder.statusText = (TextView)
 v.findViewById
  (R.id.user_status);
 }
 
 v.setTag(holder);
 }
 else

[android-developers] .

2009-06-02 Thread guna
.

--~--~-~--~~~---~--~~
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-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: [ListView + Custom adapter] items can't be selected (or highlighted)

2009-06-02 Thread guna
Do you set the listener first???

On Tue, Jun 2, 2009 at 6:58 PM, Tom thomas.coz...@gmail.com wrote:


 I added areAllItemsSelectable and isSelectable methods but it still
 doesn't work.
 Do you have an other idea?

 Best regards
 Tom


 On 2 juin, 13:24, Guru gurudut...@gmail.com wrote:
  Probably u have returned false in  areAllItemsEnabled  in the adapter
 
  or
  returning false in isEnabled(position)
 
  On Tue, Jun 2, 2009 at 4:36 PM, Tom thomas.coz...@gmail.com wrote:
 
   Hi,
 
   I developped a ListView with a custom adapter (which extends
   ArrayAdapter).
   The problem is that i can't selected or highlighted items.
   Is there a attribut to fix in the listView Layout or something else?
 
   Best regards,
   Tom
 
  --
  Thanks and Regards
  Gurudutt P.S.
 



-- 
Guna

--~--~-~--~~~---~--~~
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-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: [ListView + Custom adapter] items can't be selected (or highlighted)

2009-06-02 Thread guna
Its good if you posted your line of codings?
listview.setOnItemClickListener()

Guna

On Tue, Jun 2, 2009 at 7:17 PM, Tom thomas.coz...@gmail.com wrote:


 Which listener do you think?

 In fact , when I scroll in the ListView with the mouse, I can see
 items highlighted.
 But when I click on the item, nothing happens (item's color doesn't
 change).

 On 2 juin, 15:31, guna gunaz...@gmail.com wrote:
  Do you set the listener first???
 
 
 
  On Tue, Jun 2, 2009 at 6:58 PM, Tom thomas.coz...@gmail.com wrote:
 
   I added areAllItemsSelectable and isSelectable methods but it still
   doesn't work.
   Do you have an other idea?
 
   Best regards
   Tom
 
   On 2 juin, 13:24, Guru gurudut...@gmail.com wrote:
Probably u have returned false in  areAllItemsEnabled  in the adapter
 
or
returning false in isEnabled(position)
 
On Tue, Jun 2, 2009 at 4:36 PM, Tom thomas.coz...@gmail.com wrote:
 
 Hi,
 
 I developped a ListView with a custom adapter (which extends
 ArrayAdapter).
 The problem is that i can't selected or highlighted items.
 Is there a attribut to fix in the listView Layout or something
 else?
 
 Best regards,
 Tom
 
--
Thanks and Regards
Gurudutt P.S.
 
  --
  Guna
 


--~--~-~--~~~---~--~~
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-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: [ListView + Custom adapter] items can't be selected (or highlighted)

2009-06-02 Thread guna
) {
AdapterView.AdapterContextMenuInfo info;
try {
 info = (AdapterView.AdapterContextMenuInfo)
 item.getMenuInfo();
} catch (ClassCastException e) {
Log.e(getClass().getSimpleName(), bad menuInfo, e);
return false;
}

switch (item.getItemId()) {
case MENU_ITEM_VIEW: {
}
}
return false;
}

@Override
protected void onListItemClick(ListView l, View v, int position,
 long id) {
Uri uri = ContentUris.withAppendedId(getIntent().getData(),
 id);

String action = getIntent().getAction();
if (Intent.ACTION_PICK.equals(action) ||
 Intent.ACTION_GET_CONTENT.equals(action)) {
setResult(RESULT_OK, new Intent().setData(uri));
} else {
startActivity(new Intent(Intent.ACTION_EDIT, uri));
}
}

 }


 Thanks
 Tom

 On 2 juin, 15:51, guna gunaz...@gmail.com wrote:
  Its good if you posted your line of codings?
  listview.setOnItemClickListener()
 
  Guna
 
  On Tue, Jun 2, 2009 at 7:17 PM, Tom thomas.coz...@gmail.com wrote:
 
   Which listener do you think?
 
   In fact , when I scroll in the ListView with the mouse, I can see
   items highlighted.
   But when I click on the item, nothing happens (item's color doesn't
   change).
 
   On 2 juin, 15:31, guna gunaz...@gmail.com wrote:
Do you set the listener first???
 
On Tue, Jun 2, 2009 at 6:58 PM, Tom thomas.coz...@gmail.com wrote:
 
 I added areAllItemsSelectable and isSelectable methods but it still
 doesn't work.
 Do you have an other idea?
 
 Best regards
 Tom
 
 On 2 juin, 13:24, Guru gurudut...@gmail.com wrote:
  Probably u have returned false in  areAllItemsEnabled  in the
 adapter
 
  or
  returning false in isEnabled(position)
 
  On Tue, Jun 2, 2009 at 4:36 PM, Tom thomas.coz...@gmail.com
 wrote:
 
   Hi,
 
   I developped a ListView with a custom adapter (which extends
   ArrayAdapter).
   The problem is that i can't selected or highlighted items.
   Is there a attribut to fix in the listView Layout or something
   else?
 
   Best regards,
   Tom
 
  --
  Thanks and Regards
  Gurudutt P.S.
 
--
Guna
 



-- 
Guna

--~--~-~--~~~---~--~~
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-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Problem when changing the default colors and drawables of Android

2009-04-30 Thread guna

Hi all,

After a very long time i am posting question here... I tried to change
the default colors and drawable of android, (eg: Instead of orange
color drawable, while on focus, i want  to use my own color and in
pressing of buttons or lists, i want to show my own color, drawable
and style)... I am using the android cupcake version Any one tried
this or any other way? In which file i have to modify... I tried a
lot, but its not reflecting my drawable or my colors.



Thanks,
Guna
--~--~-~--~~~---~--~~
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-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: looking for a developer to write an app for me

2008-11-04 Thread guna

Hi,
   So, we can make deal, if you stil not found any developer... I am a
developer, doing some couple of application for clients and my own
app.

Thanks,
Guna
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Video Formats in android

2008-10-25 Thread guna

Hi to all,
  Anyone trying with media player in android which is supporting
for other formats?

And this is for java experts:
Last night i tried for various codecs for media player. And find out
JVLC and ffmpeg libraries for supporting different codecs. I want to
know the standard procedure for converting one format of video into
another. How to acheive this through Java. I dont find out any API or
third party jar to acheive that.

Thanks,
Guna
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Media Player Error -38,0

2008-10-25 Thread guna

Hi,
  Coding is better enough to reply for your thread. Because that line
is not sufficient to answer by a developer until they met with that
same problem. Otherwise google employee should answer for that.

Thanks,
guna
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: How to put apk to G1 Phone

2008-10-25 Thread guna

Hi,

  Go for slideme.org for insatlling apk...

Thanks,
Guna


On Oct 24, 5:05 pm, nkijak [EMAIL PROTECTED] wrote:
 Please just follow this thread 
 athttp://groups.google.com/group/android-developers/browse_thread/threa...

 On Oct 24, 12:18 am, yasmin afrose [EMAIL PROTECTED] wrote:

  Hi,

  I'm also want to know the same thing. If you get any reply \ you got any
  idea please forward to me.

  Thanks in advance

  By,
  Yasmin

  On Fri, Oct 24, 2008 at 9:45 AM, Sudha [EMAIL PROTECTED] wrote:

   Hi
   can anyone tell me how to install my apk to a G1 phone ?
   ota , datta cable ?
   after downloading do I need to install the apk ?
   Thanks

  --
  Everything is Possible For U only
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---