[android-developers] change first and last name of keystore

2014-06-10 Thread Live Happy
how I can change the first and last name of the keystore -- 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] addOnAttachStateChangeListene

2013-05-06 Thread Live Happy
it is there any equivalent for addOnAttachStateChangeListener on gingerbread -- -- 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

[android-developers] how to limit display items of listview

2013-01-31 Thread Live Happy
i m using a cursor adapter to display items in listview from database and i want to limit the number of displaying by get last 20 items and than after click on header button retrieve other 20 i tried to use the method getCount() in the adapter public int getCount() {// TODO Auto-generated method

Re: [android-developers] Re: Jelly bean http post basic authantication give No authentication challenges found exception.

2013-01-21 Thread Live Happy
On Mon, Jan 21, 2013 at 2:31 PM, AndroidDev androidteste...@gmail.comwrote: No authentication challenges found Go to Phone settings then click 'Date and Time' and select 'Automatic' (Please make sure your device Time Zone and Time,Date all are correct) If your time,Date and Time Zone are not

[android-developers] edit text begin scroll after second line

2012-12-10 Thread Live Happy
i have a EditText in a relativelayout i want the edit text to begin scroll after writing the second line but its not work with me any help with that this is my code xml RelativeLayout android:layout_width=match_parent android:layout_height=match_parent

Re: [android-developers] hi.

2012-11-28 Thread Live Happy
if ur phone is rooted install the application root explorer u can find all file located data/data/packagename On Wed, Nov 28, 2012 at 2:52 PM, Ibrahim Sada ibrahim.in...@gmail.comwrote: Hi Friends i want to know where the installed file is located on android phones. Thanks in

Re: [android-developers] Re: Fragment transaction between 2 FragmentActivity

2012-11-25 Thread Live Happy
in the onSaveInstanceState methods On Saturday, November 24, 2012 5:36:57 AM UTC-5, Live Happy wrote: this is the error i got wish that someone can help with it 11-24 07:09:48.269: E/AndroidRuntime(19294): java.lang.**IllegalStateException: Can not perform this action after onSaveInstanceState 11-24

[android-developers] Re: Fragment transaction between 2 FragmentActivity

2012-11-24 Thread Live Happy
(Native Method) On Fri, Nov 23, 2012 at 1:46 PM, Live Happy livehap...@gmail.com wrote: i implement side navigation in my code and i used this librairy https://github.com/korovyansk/android-fb-like-slideout-navigation the list side extends FragmentActivity and the Main side extends

[android-developers] Fragment transaction between 2 FragmentActivity

2012-11-23 Thread Live Happy
i implement side navigation in my code and i used this librairy https://github.com/korovyansk/android-fb-like-slideout-navigation the list side extends FragmentActivity and the Main side extends FragmentActivity (see picture). [image: enter image description here] when i click in item of the

[android-developers] Text display in the bottom of emoji

2012-11-16 Thread Live Happy
I display emoji in EditText using spannable, but the problem is that the text appears in the bottom of the emoji picture, not in the middle of it (see picture). So, how to make it display in the middle? [image: Inline image 1] EditText android:id=@+id/et_tInput

Re: [android-developers] Text display in the bottom of emoji

2012-11-16 Thread Live Happy
i tried it but it not work On Fri, Nov 16, 2012 at 3:45 PM, Fred Niggle fred.nig...@googlemail.comwrote: adjust gravity of the layout to center... On 16 November 2012 13:20, Live Happy livehap...@gmail.com wrote: I display emoji in EditText using spannable, but the problem

[android-developers] start service from service

2012-10-24 Thread Live Happy
I have a service in my application but this service stop working after time and i want to keep the service keep working without stopping and for that i try to start the same service from onDestroy method when it dieing but its not work even the written log not appear ,so it is possible to call

Re: [android-developers] how to create a voice recorder using android

2012-10-09 Thread Live Happy
this will help u http://developer.android.com/guide/topics/media/audio-capture.html On Tue, Oct 9, 2012 at 3:29 PM, Tom arasi...@gmail.com wrote: Hi, How to create a voice recorder using android .if anybody knows .Please share with me this very urgent. Thanks, Tom -- You received

Re: [android-developers] Android Dynamic View for chat application

2012-09-27 Thread Live Happy
use listview , the message will be as layout in the row and u can made 2 layout one for send and other for receive save data in database use cursor adapter to retrieve and when u can call notify datasetchange for update list wish that can help u On Thu, Sep 27, 2012 at 12:23 PM, amit

[android-developers] play .mov file in video player

2012-09-22 Thread Live Happy
i want to make the video player in my application open .mov format for video file but i didnt success i find something call ffmeg but didnt succeed to implement it did any one have code or sample can help me to work with it or if there is any other way can play this file format wish that someone

[android-developers] resize bitmap to 100 kb

2012-09-20 Thread Live Happy
i use this method to resize the bitmap who is larger than 100 kb but its make it so small and lose alot of quality private Bitmap decodeBitmapFile(File f){ try { BitmapFactory.Options o = new BitmapFactory.Options(); o.inJustDecodeBounds = true;

[android-developers] get bitmap size

2012-09-19 Thread Live Happy
what is the best way to get the size of bitmap image i know there is myBitmap.getByteCount() but this method is for api level 12 so it is there any other way to get it thx on advance -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

Re: [android-developers] get bitmap size

2012-09-19 Thread Live Happy
i already use this way but it is not give the real size its depend of quality of image On Wed, Sep 19, 2012 at 1:53 PM, Przemyslaw Wegrzyn codepaint...@gmail.comwrote: On 2012-09-19 08:34, Live Happy wrote: what is the best way to get the size of bitmap image i know

[android-developers] increment progress bar in the cursor adapter

2012-09-13 Thread Live Happy
i have a list view extends cursoradapter and in the layout of this list i have a progress bar and i want set the prograss value to progress bar so its possible to pass the value from the activity to the adapter to increment it wish that any idea or any help with that appreciate ur answer thanks

Re: [android-developers] problem on actionbarsherlock

2012-09-10 Thread Live Happy
use a custom android:actionButtonStyle. item name=android:actionButtonStyle@style/ActionButtonStyle/item like this style name=ActionButtonStyle parent=@android:style/Widget.Holo.Light.ActionButton item name=android:minWidth0dip/item item name=android:paddingLeft0dip/item item

Re: [android-developers] print integer value in logcat.

2012-09-10 Thread Live Happy
add + integer valuer On Mon, Sep 10, 2012 at 3:19 PM, mohammed Nuhail nuhail...@gmail.comwrote: How to print integer value in LogCat ? -- 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] cursoradapter with two different layouts

2012-09-01 Thread Live Happy
i create a cursoradapter that will use two different layouts depending on direction field in the cursor. this is the code @Override public View newView(Context context, Cursor cursor, ViewGroup parent) { holder = new ViewHolder(); if(cursor.getInt(cursor.getColumnIndex(direction))==0) {

Re: [android-developers] Re: Database example

2012-08-16 Thread Live Happy
may this well help you http://www.vogella.com/articles/AndroidSQLite/article.html On Thu, Aug 16, 2012 at 10:52 AM, RichardC richard.crit...@googlemail.comwrote: android-sdk\samples\android-16\NotePad On Thursday, August 16, 2012 8:00:03 AM UTC+1, Sadhna Upadhyay wrote: Hi Everybody,

[android-developers] progress bar during uploading

2012-08-14 Thread Live Happy
i use httpurlconnection to made upload file to the server but i didn't succeed to find a way to show progress in the user interface, is there a way to find out how much has been uploaded may some help with that please -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: progress bar during uploading

2012-08-14 Thread Live Happy
i implement the download part and its easy to made by divide the length of file by the downloaded stream and put the result in progress bar but in uploading i i didn't succeed to do the same way so wish a help with that On Tue, Aug 14, 2012 at 1:19 PM, Live Happy livehap...@gmail.com wrote: i

[android-developers] camera and image intents problems

2012-08-03 Thread Live Happy
My question consists of three parts: 1. how can i show the default gallery application when using android.content.Intent.ACTION_GET_CONTENT, what i'm using now is to show a custom intent chooser with static package names (packageName.equals(com.google.android.gallery3d) ||

[android-developers] add phone number to contact

2012-07-27 Thread Live Happy
i try this code to add mobile number to contact by contact id but it didnt work builder = ContentProviderOperation.newInsert(ContactsContract.Data.CONTENT_URI); builder.withValue(ContactsContract.Data.CONTACT_ID, contactID);

[android-developers] using the contact picker with multi-selection

2012-07-14 Thread Live Happy
i want know if we can use the contact picker with multi-selection? using Intent intent = new Intent(Intent.ACTION_PICK, ContactsContract.Contacts.CONTENT_URI) allows me to only select one contact, is there any way to solve this without doing my own checklist with my own cursor? thanks in

Re: [android-developers] Broadcast receiver not working in ICS

2012-07-13 Thread Live Happy
there is no errors in the Logcat nothing appears maybe the boot complete intent dont wok on ics anymore On Fri, Jul 13, 2012 at 11:38 AM, Fabien R theedge...@free.fr wrote: On 12/07/2012 11:02, Live Happy wrote: i have a service with separate processes in my application run from Broadcast

Re: [android-developers] Broadcast receiver not working in ICS

2012-07-13 Thread Live Happy
an activity) before manifest-registered BroadcastReceivers will work. On Thu, Jul 12, 2012 at 5:02 AM, Live Happy livehap...@gmail.com wrote: i have a service with separate processes in my application run from Broadcast receive after boot completed i tested the code in android 2.3.3 and all

[android-developers] Broadcast receiver not working in ICS

2012-07-12 Thread Live Happy
i have a service with separate processes in my application run from Broadcast receive after boot completed i tested the code in android 2.3.3 and all is work fine but when i tested on ICS 4.0.3 even the processes exist in the applications runing but its not write the throw logs in the

[android-developers] Uri Selection

2012-07-11 Thread Live Happy
how to make a query content_uri to select contacst from Phone, Sim and Google im using the ContactsContract.Contacts.CONTENT_URI but what to add to the selection becasue in visible group google contact not appear and if selection is null the contact from another group facebook , whatsup and other

[android-developers] add and edit contact

2012-07-10 Thread Live Happy
its possible to catch the intent of add or edit contact by phone and get the added data, can someone help me with that please -- 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] distinct with ContentResolver

2012-07-04 Thread Live Happy
how i can add ' distinct' to contentResolver query i tried to use it by projection String[] projection = new String[]{ DISTINCT + Columns.types }; but it return error unknown columns in projection and i found an answer suggesting the use of a specified uri and matcher and

[android-developers] Re: Edit contact programmed sync

2012-06-29 Thread Live Happy
can anyone help me ? On Thu, Jun 28, 2012 at 12:26 PM, Live Happy livehap...@gmail.com wrote: i used android:supportsUploading=true in the sync contacts adapter to can edit the of contact my application account type but it only show first and last name in the 2.3 so is possible to make

[android-developers] Edit application sync adapter contact

2012-06-29 Thread Live Happy
i used android:supportsUploading=true in the sync contacts adapter to can edit the of contact my application account type but it only show first and last name in the 2.3 so is possible to make the other filed appear and in the ics i cant edit anything so is there another way to can edit the sync

[android-developers] Edit contact programmed sync

2012-06-28 Thread Live Happy
i used android:supportsUploading=true in the sync contacts adapter to can edit the of contact my application account type but it only show first and last name in the 2.3 so is possible to make the other filed appear and in the ics i cant edit anything so is there another way to can edit the sync

[android-developers] getLoaderManager().initLoader give error

2012-06-21 Thread Live Happy
i get error in using the getLoaderManager().initLoader(0, null, this ); i using support v4 and i implement the interface public class contactActivity extends FragmentActivity implements OnClickListener, OnKeyListener, LoaderManager.LoaderCallbacksCursor { and this is the error i got The method

[android-developers] getLoaderManager().initLoader give error

2012-06-20 Thread Live Happy
i get error in using the getLoaderManager().initLoader(0, null, this ); i using support v4 and i implement the interface public class contactActivity extends FragmentActivity implements OnClickListener, OnKeyListener, LoaderManager.LoaderCallbacksCursor { and this is the error i got The method

[android-developers] refresh list

2012-06-19 Thread Live Happy
i have list based on cursor adapter but the problem is when i add new item to the database i cant refresh the list, i try many way re-query the cursor and then notifyDataSetChanged.but not work so how i can refresh the list -- You received this message because you are subscribed to the Google

Re: [android-developers] refresh list

2012-06-19 Thread Live Happy
refresh activity is not good solution coz i update the database from the same activity and i want the databe to be refreshed after a button clicked not all the acitvity On Tue, Jun 19, 2012 at 11:34 AM, Narendra Singh Rathore nsr.curi...@gmail.com wrote: On Tue, Jun 19, 2012 at 1:38 PM, Live

[android-developers] CursorAdapter and sample SimpleCursorAdapter

2012-06-18 Thread Live Happy
what are the differences between CursorAdapter and SimpleCursorAdapter ,wish one should i use in my database depend on what ? and wish one give faster result than other ? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] CursorAdapter and sample SimpleCursorAdapter

2012-06-18 Thread Live Happy
, Live Happy livehap...@gmail.com wrote: what are the differences between CursorAdapter and SimpleCursorAdapter , Come now, I'm sure you can read the documentation for each class for yourself. wish one should i use in my database depend on what ? That question is not very clear

[android-developers] unused application permissions

2012-06-11 Thread Live Happy
it is there a tools or way to know what is the unused permission in the application coz there is alot of permissions in my application added with developing time and im sure that i dont use all of them so how i can know the unused ones , other than delete and test if it crashing :) -- You

Re: [android-developers] Re: Can't copy and paste Eclipse(Helios) to Windows

2012-06-08 Thread Live Happy
, 2012 at 10:03 AM, Live Happy livehap...@gmail.com wrote: Cannot copy and paste directories from Eclipse(Helios) to Windows.also cannot do drag and drop how i can solve this problem -- You received this message because you are subscribed to the Google Groups Android Developers group

[android-developers] sync adapter contact appear in visible group

2012-06-08 Thread Live Happy
my application add contact by sync contact adapter to the phone and the contact are in invisible group didn't appear in the phone list but when i made selction to the phone contact who are in visible group the contact of my application appear in the selection even they are not in the phone

[android-developers] Can't copy and paste Eclipse(Helios) to Windows

2012-06-07 Thread Live Happy
Cannot copy and paste directories from Eclipse(Helios) to Windows.also cannot do drag and drop -- 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

[android-developers] Re: Can't copy and paste Eclipse(Helios) to Windows

2012-06-07 Thread Live Happy
Cannot copy and paste directories from Eclipse(Helios) to Windows.also cannot do drag and drop how i can solve this problem -- 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] check-box list view

2012-05-30 Thread Live Happy
i add a layout who content check box and text-view and other items in list view but when i click on one item all other items in same position in the other pages been checked and the same on unchecked mood how to resolve this situation -- You received this message because you are subscribed to

Re: [android-developers] check-box list view

2012-05-30 Thread Live Happy
it didnt help me i i use my adapter extends cursor-adapter and i read data from Uri contact list all is work well unless that the the check box when i click on item 1 all item 1 in the second pages been clicked -- You received this message because you are subscribed to the Google Groups Android

[android-developers] multiple_choice with multi text view

2012-05-29 Thread Live Happy
how to override the android.R.layout.simple_list_item_multiple_choice to make it support 2 textview or is there another one as android.R.layout.simple_list_item_2 who can support checkbox multiple choice can anyone help me with that please thx on advance -- You received this message because

Re: [android-developers] multiple_choice with multi text view

2012-05-29 Thread Live Happy
this is layout that i used it CheckedTextView xmlns:android=http://schemas.android.com/apk/res/android; android:id=@android:id/text1 android:layout_width=fill_parent android:layout_height=?android:attr/listPreferredItemHeight

Re: [android-developers] multiple_choice with multi text view

2012-05-29 Thread Live Happy
im using list who fill by simple cursor adapter and there is 2 text who should to fill in the android.R.layout.simple_expandable_list_item_2 its work done but i want add check box but the android.R.layout.simple_list_item_multiple_choice fill only one text so how to override the

[android-developers] Sherlock_ActionBar tabs with pager

2012-05-18 Thread Live Happy
i using the Sherlock_ActionBar in my application and i want to make the tabs swiping so is there any sample or code who can help me to make the Sherlock_ActionBarr tabs use pager -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Re: sync adapter

2012-05-15 Thread Live Happy
its there any sample for sync adapter who sync more than contact as Google sync adapter who include sync gmail an Google+ On Mon, May 14, 2012 at 2:13 PM, Live Happy livehap...@gmail.com wrote: how to add to the sync adapter new record to sync as in Google there is sync contact sync gmail etc

[android-developers] sync adapter

2012-05-14 Thread Live Happy
how to add to the sync adapter new record to sync as in Google there is sync contact sync gmail etc i implement the sync contact so how to add new sync record to get data from servers where i can modify in sync contact adapter to can use the performSync to get those data thx on advice -- You

[android-developers] AccountAuthenticatorActivity

2012-05-07 Thread Live Happy
i have class who extends the class AccountAuthenticatorActivity to add account in the sync adapter but in this class i have a method who read the contact list of device but i have problem with application context when i call ContentResolver cr=mContext.getContentResolver(); its return

Re: [android-developers] AccountAuthenticatorActivity

2012-05-07 Thread Live Happy
public static Context mContext; public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_LEFT_ICON); setContentView(R.layout.main_adapter);

Re: [android-developers] Re: how to add icon to Quick contact badge

2012-04-26 Thread Live Happy
skype has. Any ideas? -shuki On Apr 11, 4:17 pm, Live Happy livehap...@gmail.com wrote: add those intent to ur manifest file one for sms and the other for call intent-filter android:priority=100 action android:name=android.intent.action.SENDTO

[android-developers] onSearchRequested() result in same activity

2012-04-25 Thread Live Happy
i have implement in my application the search method onSearchRequested() via list and it work well and i create 2 activity one for list data and another for the search result in that form public class acitvity1 extends InterfaceBase { @Override ListAdapter makeMeAnAdapter(Intent

Re: [android-developers] onSearchRequested() result in same activity

2012-04-25 Thread Live Happy
://developer.android.com/reference/android/widget/SearchView.html#setOnQueryTextListener%28android.widget.SearchView.OnQueryTextListener%29 For previous API levels, you may be able to use a singleTop activity and override its onNewIntent. -- K 25.04.2012 11:15, Live Happy написал: so its there a possible

[android-developers] quick action multi row view

2012-04-16 Thread Live Happy
i used the quick action view 3d who exist in this site and its work like charm to me http://www.londatiga.net/it/how-to-create-quickaction-dialog-in-android/comment-page-4/#comment-12086 but in this sample there is only one row of icon and i want have multi row of icons they use a linear

[android-developers] Re: custom application icon in view

2012-04-12 Thread Live Happy
i find what im looking for its call quick action and thc for all On Wed, Apr 11, 2012 at 2:12 PM, Live Happy livehap...@gmail.com wrote: i want to add in my application a custom view who content some icon application as gallery and map and voice record and etc to share photo and all other

Re: [android-developers] how to add icon to Quick contact badge

2012-04-11 Thread Live Happy
add those intent to ur manifest file one for sms and the other for call intent-filter android:priority=100 action android:name=android.intent.action.SENDTO / category android:name=android.intent.category.DEFAULT / data android:scheme=sms /

[android-developers] fragment pagers continued

2012-03-28 Thread Live Happy
its possible in android fragment pagers that make the swiping between page continue from last to first not stopped mean if i have 4 fragment i can move from page 4 to page1 any help with that thx on advice -- You received this message because you are subscribed to the Google Groups Android

[android-developers] send twitter status with geolcation using api

2012-03-24 Thread Live Happy
i have integrated twitter API in my android application using twitter4j API and i want to sent status with geolocation and for that i used this method public void updateStatus(String status,GeoLocation geo) throws Exception { try { mTwitter.updateStatus(status,geo); } catch

Re: [android-developers] Facebook integration

2012-03-17 Thread Live Happy
, 2012 at 4:25 PM, Live Happy livehap...@gmail.com wrote: i have integrate face book in my android application Can you please suggest me how to integrate that in brief steps? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Facebook integration

2012-03-12 Thread Live Happy
i have integrate face book in my android application but it there a way to get the online friends and also can i write a message to the inbox not to the wall of friends ? thx om advance -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] phone contact time modified

2012-03-06 Thread Live Happy
hello is there a way to know the date of last modify to the phone contact without use sync adapter -- 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

[android-developers] how to use CALLER_IS_SYNCADAPTER

2012-03-06 Thread Live Happy
I need to be notified by a change to a contact and each change on a contact results in setting the dirty flag to 1. After a sync adapter with CALLER_IS_SYNCADAPTER should have a dirty flag of 0 and i dont use sync adapter in my application so is there to away to use it with no sync adapter or

[android-developers] tabs pager application crashed with onbackpress button

2012-02-23 Thread Live Happy
I'm using the sample Google provides, FragmentTabsPager to work with tabs in my application. and i add the method onbackpress to return to the first activity but this method crashed my application when i press the back button or also the home button that i didn't override it @Override public

[android-developers] Re: tabs pager application crashed with onbackpress button

2012-02-23 Thread Live Happy
(); } On Feb 23, 6:45 pm, Live Happy livehap...@gmail.com wrote: I'm using the sample Google provides, FragmentTabsPager to work with tabs in my application. and i add the method onbackpress to return to the first activity but this method crashed my application when i press the back

[android-developers] sync adapter join unknown application

2012-02-15 Thread Live Happy
i use the Android SampleSyncAdapter in my application and it work done but when i made join for the contacts the name of application not appear its show unknown so how i can change this unknown to my application name as in face book and twitter thanx for reply

[android-developers] sync adapter name application is unknown

2012-02-15 Thread Live Happy
i use the Android SampleSyncAdapter in my application and it work done but the name of application in the Groups contact is appear Unknown so how i can change this unknown to my application name as in face book and twitter thanx for reply -- You received this message because you are subscribed

[android-developers] sync adapter join unknown application

2012-02-14 Thread Live Happy
i use the Android SampleSyncAdapter in my application and it work done but when i made join for the contacts the name of application not appear its show unknown so how i can change this unknown to my application name as in face book and twitter thanx for reply -- You received this message

[android-developers] Live Happy wants to chat

2012-02-14 Thread Live Happy
--- Live Happy wants to stay in better touch using some of Google's coolest new products. If you already have Gmail or Google Talk, visit: http://mail.google.com/mail/b-6aebdd4cea-161b6163c2-hCMr27qFc8Q419TcglSlXfHiK0U You'll

[android-developers] sqlite size capacity

2012-01-28 Thread Live Happy
what is the maximum size of sqlite on the mobiles phone (android, iPhone, blackberry, windows mobile) its the same on all of them and in wish of them sqlite more compatibility and the performance of it is high thx for answer -- You received this message because you are subscribed to the Google

[android-developers] sqlite performance

2012-01-27 Thread Live Happy
i have android application that it save transaction history in database file (sqlite) on the sdcard but there is a lot of records and after number of records done or size application create another similar database file to save in. so can anyone tell me after how many record numbers or

[android-developers] android take the phone number

2012-01-17 Thread Live Happy
want to take the phone number from the phone dialer to use it in my application for that i used this code in the manifest file uses-permission android:name=android.permission.READ_PHONE_STATE / intent-filter action android:name=android.intent.action.CALL /

[android-developers] retrieve phone number

2012-01-17 Thread Live Happy
i want to take the phone number from the phone dialer to use it in my application for that i used this code in the manifest file uses-permission android:name=android.permission.READ_PHONE_STATE / intent-filter action android:name=android.intent.action.CALL /

Re: [android-developers] retrieve phone number

2012-01-17 Thread Live Happy
, so on some SIM cards your code will actually work but on most it probably won't. On Tue, Jan 17, 2012 at 11:23 AM, Live Happy livehap...@gmail.com wrote: i want to take the phone number from the phone dialer to use it in my application for that i used this code in the manifest file

[android-developers] intent action.CALL_PRIVILEGED

2012-01-14 Thread Live Happy
i used this code in the manifest file intent-filter action android:name=android.intent.action.CALL_PRIVILEGED / category android:name=android.intent.category.DEFAULT / data android:scheme=tel / /intent-filter but i cant find the .CALL_PRIVILEGED in the intent action to access the event if (

[android-developers] sms intent filter

2012-01-13 Thread Live Happy
i tried this code in my android application for the SMS message but it is not working , the application not appear in the messaging list should i add something to make it work? action android:name=android.intent.action.SENDTO / category

Re: [android-developers] android provide call

2012-01-12 Thread Live Happy
On Wed, Jan 11, 2012 at 9:27 PM, TreKing treking...@gmail.com wrote: On Wed, Jan 11, 2012 at 8:36 AM, Live Happy livehap...@gmail.com wrote: *how to make android application when the user click on the phone call button than the application provide itself to make call. as skype and viber

[android-developers] android provide call

2012-01-11 Thread Live Happy
*how to make android application when the user click on the phone call button than the application provide itself to make call. as skype and viber*? thnks for reply -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Android remove desktop shortcut

2012-01-10 Thread Live Happy
How can I make an android application remove it's desktop shortcut when the user deletes the application? How can I make an android application that does this automatically? i use this code to add shortcut to the desktop : Intent shortcutIntent = new Intent(Intent.ACTION_MAIN);