Android :: Get Contacts Groups / Source Not Found Error

Feb 26, 2010

Problem 1.
I have this class:
public class ContactGroups {
// Form an array specifying which columns to return.
String[] projection = new String[] { Contacts.Groups._ID,
Contacts.Groups._COUNT, Contacts.Groups.NAME, Contacts.Groups.NOTES };

public Cursor getList(Activity act) {
Uri contacts = Contacts.Groups.CONTENT_URI;
// using the debugger code kills here
Cursor managedCursor = act.managedQuery(contacts, projection,
null, null, null );
return managedCursor;
} public ArrayList<String> getColumnData(Cursor cur) { ArrayList<String> aa = new ArrayList<String>();
if (cur.moveToFirst()) { String name;
String notes;
int nameColumn = cur.getColumnIndex(Contacts.Groups.NAME);
int notesColumn = cur.getColumnIndex(Contacts.Groups.NOTES);
do {
// Get the field values name = cur.getString(nameColumn);
notes = cur.getString(notesColumn);
aa.add(name);
// Do something with the values. } while (cur.moveToNext())
} return aa;
} }

I am calling this as:
ContactGroups mGrp= new ContactGroups();
final ArrayAdapter<String> aa;
aa = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1,mGrp.getColumnData(mGrp.getList(this)));
myListView.setAdapter(aa);

And having:
<uses-permission android:name="android.permission.READ_CONTACTS"></uses-permission>
<uses-permission android:name="android.permission.WRITE_CONTACTS"></uses-permission>

I get a Source not found error and a Logcat error
ERROR/DatabaseUtils(617): java.lang.IllegalArgumentException: Invalid column _count

Problem 2.
Where do I create manually contact groups?

Android :: Get Contacts Groups / Source Not Found Error


Android :: Intent Runtime Error Source Not Found

Jun 5, 2010

I create 2 simple activities, first activity is to login, after that proceed to the second activity. However, the intent is having some runtime error: saying that the sources is not found.

View 2 Replies View Related

Getting Error While Running Android Application As Source Not Found?

May 8, 2012

I am getting an error while running android application as "Source not found"...

View 5 Replies View Related

General :: Command Not Found Error While Trying To Compile Kernel From Source With NDK

Mar 29, 2014

I am following this right here [URL] .... And i keep getting command not found even though i am sure its right.

Code:
~/AlienKernel3.0-alien-4 $ export CROSS_COMPILE=/home/user/ndk/android-ndk-r9c/toolchains/arm-linux-androideabi-4.8/prebuilt/linux-x86_64/bin/arm-linux-androideabi-

Code:
sudo make clean && sudo make mrproper

Code:
make: /home/dm47021/Android/toolchains/arm-unknown-linux-gnueabi-linaro_4.8.2-2013.08/bin/arm-unknown-linux-gnueabi-gcc: Command not found
/bin/bash: /scripts/gcc-version.sh: No such file or directory

[Code] ....

View 1 Replies View Related

Android :: "Source Not Found" Error In Eclipse / Fix It?

Jul 30, 2010

Developing my first app for android. Works OK on emulator, but on phone I get a "Source not found error" ViewRoot.handleMessage(Message)line:1757. I get the error when I press button number 4 on the application and try to display my media images on phone

Code...

View 1 Replies View Related

Android :: Source Not Found - Program Crashes

Aug 30, 2010

I'm getting an error in my Android app that says "source not found" and crashes the program. I've already read a number of posts saying that the solution is to download the android source code and load that up in Eclipse, but I tried to no avail. Here is a bunch of information that may help with my problem, let me know if you need more!

Stack:
Thread [<1> main] (Suspended (exception RuntimeException))
ActivityThread.performLaunchActivity(ActivityThrea d$ActivityRecord, Intent) line: 2663
ActivityThread.handleLaunchActivity(ActivityThread $ActivityRecord, Intent) line: 2679
ActivityThread.access$2300(ActivityThread, ActivityThread$ActivityRecord, Intent) line: 125
ActivityThread$H.handleMessage(Message) line: 2033
ActivityThread$H(Handler).dispatchMessage(Message) line: 99
Looper.loop() line: 123
ActivityThread.main(String[]) line: 4627
Method.invokeNative(Object, Object[], Class, Class[], Class, int, boolean) line: not available [native method]
Method.invoke(Object, Object...) line: 521
ZygoteInit$MethodAndArgsCaller.run() line: 868
ZygoteInit.main(String[]) line: 626
NativeStart.main(String[]) line: not available [native method]

Is it weird that the first entry is 'ActivityThrea d' with the 'd' cut off? If this is the problem, what went wrong and how do I fix it? The line of code the debug stops on:

public void AddAnimationID(String index, Integer view)
{ animations.put(index, view);
}
'animations' is a Dictionary and is a member of class Alien. I am calling it like:
Alien alien;
alien.AddAnimationID("idle", R.drawable.idle);
I am correct in thinking that R.drawable.idle is an int right? findViewByID takes an int for the argument. Here is the logcat, I tried to pinpoint where in the log it started the application, sorry if its too much.

I/ActivityManager(59): Displayed activity com.android.launcher/com.android.la
uncher2.Launcher: 21357 ms (total 21357 ms)
I/Launcher.Model(118): not binding apps: no Launcher activity
D/dalvikvm(118): GC_EXPLICIT freed 5222 objects / 297520 bytes in 114ms
D/dalvikvm( 118): GC_EXPLICIT freed 11360 objects / 562112 bytes in 94ms
D/PackageParser(59): Scanning package: /data/app/vmdl45576.tmp
I/PackageParser(59): Game.Main: compat added android.permission.WRITE_EXTERNA
L_STORAGE android.permission.READ_PHONE_STATE
I/PackageManager(59): Removing non-system package:Game.Main
I/ActivityManager(59): Force stopping package Game.Main uid=10032
D/dalvikvm(118): GC_EXTERNAL_ALLOC freed 319 objects / 18064 bytes in 73ms
D/dalvikvm(59): GC_FOR_MALLOC freed 6857 objects / 349752 bytes in 400ms
D/PackageManager(59): Scanning package Game.Main
I/PackageManager(59): Package Game.Main codePath changed from /data/app/Game.
Main-2.apk to /data/app/Game.Main-1.apk; Retaining data and using new
I/PackageManager(59): /data/app/Game.Main-1.apk changed; unpacking
D/installd(34): DexInv: --- BEGIN '/data/app/Game.Main-1.apk' ---
I/ActivityManager(59): Starting activity: Intent { act=android.intent.action.
MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=Game.Main/.Main }

D/dalvikvm(258): DexOpt: load 116ms, verify 200ms, opt 2ms
D/installd(34): DexInv: --- END '/data/app/Game.Main-1.apk' (success) ---
W/PackageManager(59): Code path for pkg : Game.Main changing from /data/app/G
ame.Main-2.apk to /data/app/Game.Main-1.apk
W/PackageManager(59): Resource path for pkg : Game.Main changing from /data/a
pp/Game.Main-2.apk to /data/app/Game.Main-1.apk
D/PackageManager(59): Activities: Game.Main.Main
I/ActivityManager(59): Force stopping package Game.Main uid=10032
E/Launcher(118): Unable to launch. tag=ApplicationInfo(title=Alien Game) inten
t=Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER]flg=0x10200000 cmp=Game.Main/.Main }
E/Launcher(118): android.content.ActivityNotFoundException: Unable to find exp
licit activity class {Game.Main/Game.Main.Main}; have you declared this activity in your AndroidManifest.xml?
E/Launcher(118): at android.app.Instrumentation.checkStartActivityResult(
Instrumentation.java:1404)
E/Launcher(118): at android.app.Instrumentation.execStartActivity(Instrum
entation.java:1378)
E/Launcher(118): at android.app.Activity.startActivityForResult(Activity.
java:2817)
E/Launcher(118): at com.android.launcher2.Launcher.startActivityForResult
(Launcher.java:1053)
E/Launcher(118): at android.app.Activity.startActivity(Activity.java:2923)
E/Launcher(118): at com.android.launcher2.Launcher.startActivitySafely(Launcher.java:1462)
E/Launcher(118): at com.android.launcher2.AllApps2D.onItemClick(AllApps2D
.java:178)
E/Launcher(118): at android.widget.AdapterView.performItemClick(AdapterVi
ew.java:284)
E/Launcher(118): at android.widget.AbsListView$PerformClick.run(AbsListVi
ew.java:1696)
E/Launcher(118): at android.os.Handler.handleCallback(Handler.java:587)
E/Launcher(118): at android.os.Handler.dispatchMessage(Handler.java:92)
E/Launcher(118): at android.os.Looper.loop(Looper.java:123)
E/Launcher(118): at android.app.ActivityThread.main(ActivityThread.java:4627)
E/Launcher(118): at java.lang.reflect.Method.invokeNative(Native Method)
E/Launcher(118): at java.lang.reflect.Method.invoke(Method.java:521)
E/Launcher(118): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
E/Launcher(118): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
E/Launcher(118): at dalvik.system.NativeStart.main(Native Method)
I/installd(34): move /data/dalvik-cache/data@app@Game.Main-1.apk@classes.dex
-> /data/dalvik-cache/data@app@Game.Main-1.apk@classes.dex
D/PackageManager(59): New package installed in /data/app/Game.Main-1.apk
I/ActivityManager(59): Force stopping package Game.Main uid=10032
I/ActivityManager(59): Start proc com.svox.pico for broadcast com.svox.pico/.
VoiceDataInstallerReceiver: pid=259 uid=10028 gids={}
D/dalvikvm(157): GC_EXPLICIT freed 4079 objects / 247824 bytes in 605ms
D/dalvikvm(59): GC_EXPLICIT freed 6136 objects / 382312 bytes in 493ms
W/RecognitionManagerService( 59): no available voice recognition services found
I/installd(34): unlink /data/dalvik-cache/data@app@Game.Main-2.apk@classes.dex
D/AndroidRuntime(191): Shutting down VM
D/jdwp(191): adbd disconnected
I/AndroidRuntime(191): NOTE: attach of thread 'Binder Thread #3' failed
I/ActivityThread(259): Publishing provider com.svox.pico.providers.SettingsPro
vider: com.svox.pico.providers.SettingsProvider
D/AndroidRuntime(269):
D/AndroidRuntime(269): >>>>>>>>>>>>>> AndroidRuntime START <<<<<<<<<<<<<<
D/AndroidRuntime(269): CheckJNI is ON
D/AndroidRuntime(269): --- registering native functions ---
I/ActivityManager(59): Starting activity: Intent { act=android.intent.action.
MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=Game.Main/.Main }

I/ActivityManager(59): Start proc Game.Main for activity Game.Main/.Main: pid=273 uid=10032 gids={1015}
I/ARMAssembler(59): generated scanline__00000077:03545404_00000004_00000000 [ 47 ipp] (67 ins) at [0x322b68:0x322c74] in 4370882 ns
W/Game.Main.Main(273): SIS is null
D/AndroidRuntime(273): Shutting down VM
W/dalvikvm(273): threadid=1: thread exiting with uncaught exception (group=0x4001d800)
E/AndroidRuntime(273): FATAL EXCEPTION: main
E/AndroidRuntime(273): java.lang.RuntimeException: Unable to start activity ComponentInfo{Game.Main/Game.Main.Main}: java.lang.NullPointerException
E/AndroidRuntime(273): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2663)
E/AndroidRuntime(273): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679)
E/AndroidRuntime(273): at android.app.ActivityThread.access$2300(Activi
tyThread.java:125)
E/AndroidRuntime(273): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033)
E/AndroidRuntime(273): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime(273): at android.os.Looper.loop(Looper.java:123)
E/AndroidRuntime(273): at android.app.ActivityThread.main(ActivityThread.java:4627)
E/AndroidRuntime(273): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime(273): at java.lang.reflect.Method.invoke(Method.java:521)
E/AndroidRuntime(273): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
E/AndroidRuntime(273): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
E/AndroidRuntime(273): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime(273): Caused by: java.lang.NullPointerException
E/AndroidRuntime(273): at Game.Main.Main.onCreate(Main.java:81)
E/AndroidRuntime(273): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
E/AndroidRuntime(273): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2627)
E/AndroidRuntime(273): ... 11 more
W/ActivityManager(59): Force finishing activity Game.Main/.Main
I/ActivityManager(59): Starting activity: Intent { act=android.intent.action.
MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 cmp=Game.Main/.Main }
D/AndroidRuntime(269): Shutting down VM
D/jdwp (269): adbd disconnected
I/AndroidRuntime(269): NOTE: attach of thread 'Binder Thread #3' failed
W/ActivityManager(59): Activity pause timeout for HistoryRecord{43ed84f8 Game.Main/.Main}
I/ARMAssembler(59): generated scanline__00000077:03515104_00000000_00000000 [ 33 ipp] (47 ins) at [0x305640:0x3056fc] in 1148283 ns
W/ActivityManager(59): Launch timeout has expired, giving up wake lock!

Here is the class Alien:
package Game.Main;
import java.util.Dictionary;
import android.graphics.drawable.AnimationDrawable;
import android.widget.ImageView;
public class Alien {
private AlienState state;
private Dictionary<String, Integer> animations;
private ImageView imageView;
public Alien() {
}
public void AddAnimationID(String index, Integer view) {
animations.put(index, view);
}
public Integer GetAnimationID(String index) {
return animations.get(index);
}
public void SetImageView(ImageView view) {
imageView = view;
if(animations.get("idle") != null) {
imageView.setBackgroundResource(R.drawable.idle);
state = AlienState.idle;
} }
public ImageView GetImageView() {
return imageView;
} public void ChangeView(String index) {
if(animations.get(index) != null) {
imageView.setBackgroundResource(animations.get(index));
state = AlienState.valueOf(index);
} } }

Here is the onCreate function that this is called from and related information:
package Game.Main;
import java.util.ArrayList;
import java.util.List;
import Game.Main.MainView.MainThread;
import android.app.Activity;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.graphics.drawable.AnimationDrawable;
import android.os.Bundle;
import android.speech.RecognizerIntent;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.animation.Animation.AnimationListener;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.TextView;

public class Main extends Activity implements OnClickListener {
private static final int VOICE_RECOGNITION_REQUEST_CODE = 1234;
private ArrayList<String> dictionary;
private TextView txtText;
private MainThread thread;
private MainView view;
private AnimationDrawable anim;
private Alien alien;
@Override // called when Main is created.
public void onCreate(Bundle savedInstanceState) {
// reload from previous instance
super.onCreate(savedInstanceState);
// set default content view
setContentView(R.layout.main);
view = (MainView)findViewById(R.id.mainView);
thread = view.GetThread();
if (savedInstanceState == null) {
// we were just launched: set up a new game
thread.SetState(GameState.Active);
Log.w(this.getClass().getName(), "SIS is null");
} else {
// we are being restored: resume a previous game
thread.RestoreState(savedInstanceState);
Log.w(this.getClass().getName(), "SIS is nonnull");
} // setup speak button
Button speakButton = (Button)findViewById(R.id.btn_speak);
// setup text box
txtText = (TextView)findViewById(R.id.txt_text);
// setup our dictionary
dictionary = new ArrayList<String>();
dictionary.add("sit");
dictionary.add("eat");
dictionary.add("jump");
dictionary.add("think");

alien.AddAnimationID("idle", R.drawable.idle);
alien.AddAnimationID("eat", R.drawable.eat);
alien.AddAnimationID("jump", R.drawable.jump);
alien.AddAnimationID("think", R.drawable.think);
alien.AddAnimationID("run", R.drawable.run);
alien.AddAnimationID("sit", R.drawable.sit);
alien.SetImageView((ImageView)findViewById(R.id.alien_image));
// check to see if a recognition activity is present
PackageManager pm = getPackageManager();
List<ResolveInfo> activities = pm.queryIntentActivities(new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH), 0);
// if activities were found, cancel speech recognition
if (activities.size() != 0)
speakButton.setOnClickListener(this);
else {
speakButton.setEnabled(false);
speakButton.setText("Recognizer not present");
} }
I am using Eclipse on Windows 7 x64. I have all of the newest updates to the android SDK and I downloaded the android source code and added it to the Eclipse patch because previous posts led me to try that. The code breaks for debug when the first time AddAnimationID is called. Looks like I didn't have enough breakpoints, the culprit is not the AddAnimationID function but actually the SetImageView one. The if statement seems to not work, so I've commented it out for now. I'll post back once I've figured it out. It's probably something silly that works in another language but not Java.

View 1 Replies View Related

Android :: Eclipse Shows Error But No Error Found

May 21, 2010

Eclipse is showing an error (little red "x" next to my project name), but there is no error shown in any files meaning there is no corresponding "x" next to any file...nothing. When I try to run it, it says, "Your project contains error(s), please fix them before running your application."You received this message because you are subscribed to the Google Groups "Android Developers" group.

View 11 Replies View Related

Android :: How To Debug Unexpected Exceptions (source Not Found)

Feb 9, 2010

I am pretty new to Android, the thing that bugs me the most about the IDE is that I am not able to get any information about an unexpected exception when it gets thrown, I can put a try catch block around identified code that generates it, but in many cases it takes time to find the line of code that generates the exception. is there any other way I can get the exception information? in JDT when an unexpected exception is thrown the call stack displays the exception class name. but in ADT this doesn't work.

View 13 Replies View Related

Android :: Basic Application Web Service Access - Source Not Found?

Feb 27, 2009

I am coding a basic android application that has to call a web service, using KSOAP2, I am sending a request with one parameter (city) and need to get the response of the web service (basically a short String) from this site:
http://www.deeptraining.com/webservices/weather.asmx?op=GetWeather

When execultin the application, I only get a message: "This application has stopped unexpectedly". When debugging, I am getting the following error:
Thread [<3> main] (Suspended (exception VerifyError) And: ViewRoot.handleMessage(Message) line: 1198 that says: Source not Found And shows a button allowing to: Edit Source Lookup path. What does this basically mean?

My source code that generates the is the following:
private static final String SoapAction = "http://www.deeptraining.com/ webservices/GetWeather"; private static final String MethodName = "GetWeather"; private static final String Namespace = "http://www.deeptraining.com/ webservices/"; private static final String URL = "http://www.deeptraining.com/ webservices/weather.asmx";

And the main part of it: SoapObject request = new SoapObject(Namespace, MethodName); request.addProperty("City", cityname); SoapSerializationEnvelope envelope = new SoapSerializationEnvelope (SoapEnvelope.VER11); envelope.setOutputSoapObject(request); HttpTransport androidHttpTransport = new HttpTransport(URL); try { Result.setText("... Processing ..."); //error here: androidHttpTransport.call(SoapAction, envelope); ...
I am using Eclipse with Android plugin and KSOAP2 library.

View 2 Replies View Related

Android :: Adding Contacts To Groups?

Nov 24, 2010

New to android and really like it. However, seems like the maintenance of contacts is a common source of confusion. I have contacts from my Gmail displayed. I have a created a group of contacts that I have been able to add contacts to. However, not all contacts are available to be added to this group.

Under the general contacts page, all the contacts are there (including many imported from gmail that I don't care for since every email that has ever been used seems to be saved). When I go to edit the group and add a contact, not all the contacts are displayed as available to add. I have gone into my gmail contact list and made sure that the contact I want to add is listed under the "my contacts" heading.

View 1 Replies View Related

Android :: App To View Contacts That Is In Set Groups?

Mar 12, 2010

Is there an app or something that will allow me to view the contacts that i have in set groups. I have a group for family and works and mates, is there a way to view a list of all my work contacts on my htc hero?

Also if possible i would like to be able to send a text to all the people in a certain group. Any ideas?

View 3 Replies View Related

Android :: No Resource Found Error

May 24, 2010

I got "no resource found that matches the given name(at 'id' with value @id+/textview')" my main.xml file looks like this: <?xml version="1.0" encoding="utf-8"?> <TextView xmlns:android=" http://schemas.android.com /apk/res/android" android:id="@id+/textview" android:layout_width="fill_parent" android:layout_ height="fill_parent" android:text="@string/greetings"/> Any idea what I am missing? 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

View 3 Replies View Related

Android :: Thread Error Needs To Be Found

Sep 8, 2010

I am placing a code below, I have created a local Thread and getting Error at the last Closing Braces, Can anybody please sort it out for me.Thread dt = new Thread(this)

View 2 Replies View Related

Android :: Error - No Resource Found That Matches Given Name

Jul 16, 2010

I am new to android, I try to create layout so that I have background image, and have a ImageView with animation start from bottom right of screen and along with a TextView stay on top of this ImageView. (Hope my describe make sense).

My problem is when I try use "android:layout_above="@id/flyobject"", the eclipse alway say: error: Error: No resource found that matches the given name (at 'layout_above' with value '@id/flyobject'). But as for sure I have defined flyobject, and I can find it's in my R class.

Here is my XML file:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/ android"android:layout_width="fill_parent" android:layout_height="fill_parent">
<ImageView android:id="@+id/background"android:src = "@drawable/background"android:layout_width="fill_parent"android:layout_height="fill_parent" android:scaleType="centerCrop"/>
<TextViewandroid:id="@+id/flytext"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_above="@id/flyobject"/>
<ImageViewandroid:id="@+id/flyobject"android:src="@drawable/asteroid01"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_alignParentRight="true"android:layout_alignParentBottom="true"/> </RelativeLayout>

View 3 Replies View Related

General :: Android SDK / W7 - Java Not Found Error

Jul 30, 2012

Today I've bought new laptop, windows 7. on my old windows xp android sdk was working 100%.

Every time i start the setup i get this error: [see attachment]

View 4 Replies View Related

Android :: Open Files In Res.raw By Name File Not Found Error

Apr 2, 2009

i have problem with opening files. this.res=imsLoader.context.getResources(); this.context=imsLoader.context; InputStream istream=null; istream=res.openRawResource(R.raw.l6); //->> it works correcty that file is on res/raw/l6.lvl istream=context.openFileInput("l3.lvl"); // it give me FileNotFound exception istream=context. openFileInput("l"+level+".lvl"); // it give me FileNotFound exception

View 2 Replies View Related

Android :: NinePatchDrawable - Error No Resource Found That Matches The Given Name

Aug 9, 2010

The problem with NinePatchDrawable. Created 9.png file using a utility draw9patch, but when the throw the file in a folder res/drawable error: No resource found that matches the given name.

View 4 Replies View Related

HTC Droid Eris :: How To Put Contacts In Groups?

Feb 24, 2010

I want to send mass text messages to about 5 people in my phone at once. How do I group them?

View 8 Replies View Related

HTC EVO 4G :: Need To Add Synced Facebook Contacts To Certain Groups

Oct 14, 2010

I synced facebook to my contacts. I want to add some of them to certain groups but when I go to do it none of my contacts are there? What gives?

View 8 Replies View Related

Samsung Captivate :: Add Contacts Into Groups?

Jul 21, 2010

how in the world do u add contacts into groups?i goto groups and when i try to add member non of my contacts show.

View 3 Replies View Related

HTC Desire : Create Groups For Sim Contacts?

Nov 27, 2010

I got my desire 2 days bak. i copied all my contacts from my old phone to my desire. now problem is, in grouping option when i tap "add contact", i couldn't see Sim contacts. can any one suggest me how to create groups for my Sim contacts..

View 4 Replies View Related

Android : Released Good Phonebook App That Allow Quick Access To All Of Contacts Sorted By Groups

Aug 8, 2009

I am looking for a good phone book app that would allow quick access to all of my contacts sorted by groups. All i want is a contact list with group name tabs at the top or something like that. But no... not a single app can do this. Come of them support groups, others dont, but all of them make you jump through hoops to change them on the fly.

So far I have tried:
The Original Android Contacts
Phonebook
aContacts
Contact Blast
Star Contacts

View 15 Replies View Related

Samsung Galaxy S :: Organizing Contacts Into Groups

Nov 28, 2010

I am trying to find a way to organize my contacts. As far as I can figure, Android allows you to group phone contacts but there is no option for grouping Google contacts, which most of my contacts are. Does anyone know a way to group Google contacts on the phone. I don't even care about making Groups on sync. I just want to group them now that they are on my phone.

View 12 Replies View Related

Sprint HTC Hero :: All Contacts Not Showing When Put Into Groups

Jun 18, 2010

Strange curious thing, but, in All Contacts, even in Google, the contacts I have in Groups like Family aren't showing. I have to actually go into that contact set to get them to show. I would have thought that All Contacts, would have actually been all not some.

View 6 Replies View Related

Motorola Droid X :: Groups Delete From Contacts

Jul 25, 2010

so I created a group and misspelled the name in the silly "Contacts" application. So, I deleted the group and created a new one with the name properly spelled. Yes, I could have renamed the misspelled group, but I was in an unusually stupid frame of mind.The group doesn't show in "Contacts" on the phone, but it does in Handcent and elsewhere.I know how to NOT screw up again, and that's to NOT use the "Contacts" app every again, but how do I truly delete the group that I already created?I went into Handcent and went to send a message to a group, and the deleted group appeared there. I also went to to the application that I downloaded called "Group Ringtones" and it appeared there as well. It doesn't appear in GMail though. I didn't expect it to appear in GMail, but it wouldn't have surprised me if it did.

View 2 Replies View Related

HTC Legend :: Contacts - Mainly Phone Numbers - Into Groups

Jun 23, 2010

Ive not found any specific in depth instructions with my phone so here goes my question...I have managed to sync al my email gmail facebook and phone contacts to my handset, I want to put my contacts (mainly phone numbers) into groups so its easier to group SMS people etc, when i try to add contacts to a group it only seems to come up with my Gmail added Email addresses, i have gone into the relevant menu and selected display phone contacts only (or something similar) and re tried but still i am getting just my Gmail addresses as the only option to add to groups. Any help would be greatly appreciated and im sorry if its blurringly obvious!

View 1 Replies View Related

Samsung Moment :: Put Contacts Into Different Groups On Phone?

Jul 7, 2010

I have been trying to figure out how to put contacts into different groups on my Moment. i.e. family, friends, works groups. Is this possible?

View 6 Replies View Related

Android :: Juice Defender - Apn Not Found - Mobile Data Not Working Error

Oct 12, 2010

I have a rooted Evo, running warm's tpt rom. Juice Defender was working fine for me until last night. I noticed it wasnt in the notification bar. (I do not have any task killers)

I am getting the following erros when I set it up:

mobile data control doesnt work
mobile data control (apn method) doesnt work

The log shows:
apn not found

View 1 Replies View Related

Android : Dolphin Browser Server Error - 404 - File Or Directory Not Found

Oct 3, 2010

I have the default home page for the app, and let's say for example I start to type facebook. Under where I type it comes up with the usual predictions, like facebook login, facebook news, etc. But the top one is usually a link to the exact URL (in this case to facebook) but whenever I click one of those links, I get a page that says:

"Server Error

404 - File or directory not found.

The resource you are looking for might have been removed, had its name changed, or is temporarily unavailable."

Is there anyway to get these links to work? Or get rid of them all together so I don't accidentally click them.

View 5 Replies View Related

HTC EVO 4G :: Error Device Not Found - After Root Trying To Adb

Jun 13, 2010

Used Toast root this morning successfully and without problem. Trying to use evo-recovery and every time I try to do anything I get the error, "error: device not found." Any ideas how to fix it?

View 5 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved