Android :: What Does Notifcation Icon Mean - In Notifications List With No Text
Jun 17, 2010
It looks like a black SD card with a folded up corner and to the lower right of it is a small cog wheel.
It is sitting in my notifications list with no text beside it and it doesn't go away when I choose "clear notifications"
View 8 Replies
Jun 3, 2010
Text Message icon and notifications gone after I uninstalled Handcent SMS. I have been unable to find anything online in regards to this issue. Any ideas on how to resolve this? Also be wary of removing this application, FYI.
View 3 Replies
View Related
Jul 9, 2009
I've just moved to a new simcard and for some reason this afternoon a new icon has appeared in the notification area.
Its a picture of a simcard with a small cog wheel in the bottom left of it.
I cant get rid of it and cant find anywhere a list of notification icons and what they mean?
I cant clear it, i can select the icon in the dropdown notification listing but it does nothing.
Anyone got an idea or a list of default notification icons and their explanations????
This is a HTC Magic with 1.5 on it.
View 17 Replies
View Related
Nov 17, 2012
I'd found a way to see all of my text messages which had a "failed" status on them, and I was able to delete them from that list. But now I'm looking at my phone and for the life of me, I cannot figure out how to do it!
Basically, for one of my texting threads, there's a red triangle with an exclamation point icon, next to the paperclip icon for that thread. I'd really just like to know if there's a way to find the text responsible for this error so that the icon doesn't show up next to the contact's name anymore? I'm using an LG Lucid with Android version 4.0.4, and my guess is that probably since that update whatever option I'd used to find the failed texts has either moved or was taken out.
View 1 Replies
View Related
May 9, 2010
An application I'm developing requires that the app main a local list of things, let's say books, in a local "library." Users can access their local library of books and search for books using a remote web service. The app will be aware of other users of the app through this web service, and users can browse other users' lists of books in their library. Each book is identified by a unique bookId (represented as an int). When viewing books returned through a search result or when viewing another user's book library, the individual list row cells need to visually represent if the book is in the user's local library or not. A user can have at most 5,000 books in the library, stored in SQLite on the device (and synchronized with the remote web service). My question is, to determine if the book shown in the list row is in the user's library, would it be better to directly ask SQLite (via SELECT COUNT(*)...) or to maintain, in-memory, a List or int[] array of some sort containing the unique bookIds.
So, on each row display do I query SQLite or check if the List or int[] array contains the unique bookId? Because the user can have at most 5,000 books, each bookId occupies 4 bytes so at most this would use ~ 20kB. In thinking about this, and in typing this out, it seems obvious to me that it would be far better for performance if I maintained a list or int[] array of in-library bookIds vs. querying SQLite (the only caveat to maintaining an int[] array is that if books are added or removed I'll need to grow or shrink the array by hand, so with this option I'll most likely use an ArrayList or Vector, though I'm not sure of the additional memory overhead of using Integer objects as opposed to primitives).
View 2 Replies
View Related
May 7, 2010
How do I get the icon (not widget) to show how many messages I have? Like a little pop-up number or something. Right now I am only getting the icon in the status bar in the top.
View 4 Replies
View Related
May 4, 2009
I want to get the list of all the notifications present in the android noifications drawer, is it possible to get the notifications list? If yes the please let me know the way to get the notifications list.
View 2 Replies
View Related
May 12, 2010
In my project I'm Multiple choice list....in this all text view in white color...i want to change text color. in program I'm use simple xml main.xml
<?xml version="1.0" encoding="utf-8"?> <RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="#ffff00"> <List View android:id="@+id/android:list" android:layout_margin Top="2px" android:layout_marginLeft="2px" android:layout_marginRight="2px" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1"android:background="@drawable/shape_1"android:listSelector="@drawable/shape_3" android:textColor="#ffff00" android:layout_marginBottom="44px" /> </RelativeLayout> I'm ListActivity class setContentView(R.layout.main); setListAdapter(new ArrayAdapter<String>(this,android.R.layout.simple_list_item_multiple_choice, GENRES)); listView =getListView();listView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);
View 5 Replies
View Related
Sep 2, 2009
I am trying to add an icon in the list view. Below is my code snippet and realted xml, without the icon(i.e. just list view). code...
But I am not successful. It is crashing. Any suggestion on how to add icons in the list view?
View 5 Replies
View Related
Aug 3, 2010
I am trying to set 6 icon in 6 different items in list but not getting how to do it.
View 3 Replies
View Related
Nov 1, 2010
Is there any way to hide an application icon from Android applications list ? The application should be downloaded from Market and opened some GUI for configuring my application. I don't want to see any icon of my application in applications list. User should not be able to run it.
By the way I know some way:remove this line from manifest <category android:name="android.intent.category.LAUNCHER" /> But it is not worked for me, because the GUI is not shown.
View 16 Replies
View Related
Nov 3, 2010
I am on Android 2.1 and I have one multi column Custom listview Using BaseAdapter with an editable edittext at the end of the listview. If the data in the listview do not contain the data of user choice then user should be able to enter data. If the data is already there in the list user will be able to select the data using custom selector. If a selection is made in the list view and user wanted to enter data in the text field at the bottom after selection then the marker in the list view should be unselected. I tried to use onclick() method on edit text using click listener. First time when it is clicked, edit text is getting focus and onclick() method is not fired. And when it is clicked second time, onclick() method is fired and notifyDataSetChanged() method is called. I tried to call the notifyDataSetChanged() method from the Focus Listener, list view selection is gone in my first attempt and edit text is not receiving any data input from the keyboard (frozen).
View 1 Replies
View Related
Apr 9, 2010
I got chomp. Yes chomp, but I have some issues I can't solve. I'm hoping one of anyone here could help. I still receive a notification from my native app and chomp. I can't figure out where to switch off the notifications for my native app. My 2nd question, how do I get my contact list in chomp? I can onl;y choose my fave 5.
View 4 Replies
View Related
Jul 2, 2010
Is it possible to show one icon in the status bar, but when the user pulls down the Notification List, to have a different icon display there? (ie, one for the Intent and one for the status bar?)
View 3 Replies
View Related
Oct 24, 2010
I'm very new to Android and Java development, searching and reading various tutorials and using different parts of code from around the internet, trying to make sense of it as I go. Currently I have a list created with 4 list items, what I'd like to do is assign a different icon to each of these list items, however, I've no idea how to do it, nor do I know what to search for. Here's the code:
main.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/ android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent">
<ListView android:layout_width="fill_parent" android:layout_height="fill_parent" android:id="@+id/mainListView"> </ListView>
</LinearLayout> row.xml
<TextView xmlns:android="http://schemas.android.com/apk/res/android
android:id="@+id/rowTextView" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:padding="10dp" android:textSize="16sp" >
</TextView> FirstList.java
import java.util.ArrayList; import java.util.Arrays;
import android.app.Activity; import android.os.Bundle; import android.widget.ArrayAdapter; import android.widget.ListView; public class FirstList extends Activity {
private ListView mainListView; private ArrayAdapter<String> myListAdapter;
/** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main);
mainListView = (ListView) findViewById( R.id.mainListView);
String[] myList = new String[] {"List 1", "List 2", "List 3", "List 4"};
ArrayList<String> listObjects = new ArrayList<String>();
listObjects.addAll( Arrays.asList(myList));
myListAdapter = new ArrayAdapter<String>(this, R.layout.row, listObjects);
mainListView.setAdapter(myListAdapter);
} }
View 2 Replies
View Related
Sep 27, 2010
I built a ListActivity and now I want to add Map Previews as the List Icons. I dont want to extend MapView because: 1st I just need a little static preview and 2nd I already extended to ListView.I already looked into using the static map api, however that also doesnt look quite good in that small dimensions:
View 1 Replies
View Related
Aug 31, 2009
I want to add an image icon in expandable list view .I have seen the tutorial they have added only in child elements .Is there any other way to add image icon in parent.
View 4 Replies
View Related
Sep 22, 2009
Code...
How do I access to the string 'Icon List' given IconListActivity.class?
View 1 Replies
View Related
Dec 18, 2009
Is there any way to put a notifications icon on the home page? It is a pain to have to go into menu every time and the slide down thing is very arkward.
View 3 Replies
View Related
May 23, 2012
I've been searching for a fix to remove the data switch in notifications.. It can't be cleared and wouldn't clear neither data on and off.. I've found one for sony x10 think but the fix did not work for my device...
I'm running Froyo 2.2 (stock ROM) on Huawei Boulder U8350...
View 4 Replies
View Related
Sep 5, 2009
1) I have made an customizable expandable List .
2) Where I can customize the child.
3) But in parent(Group ID) I want to change the default icon of the parent.which look like(>).
View 1 Replies
View Related
Oct 20, 2013
I'm a longtime iPhone user (since 3G) who just switched to Android and the Galaxy Note 3 this week. There are several things I miss about iOS, and one of them is badge notifications without the need for a 3rd party app. Ideally, when I'm due a notification from Facebook, I want only a badge notification on the app's icon, like you do in iOS, and I'm getting that with "Missed it!" installed. However, I don't want an actual notification (via audible tone and indicator) in the notification bar. Is it possible to disable notifications via the notification bar, but still have it display a badge notification on the icon?
View 1 Replies
View Related
Sep 28, 2010
I have a message that supposedly was never sent to me from my wife a stupid smiley face. it keeps coming up in the notificaion bar if i try to open it the phone just tries to open it but i cant cause its not there. if i got to "people" it shows the message still there and i cant get an option to delete it. i have wiped out all my messages as it is i have them auto delete after 25 texts. i also deleted her from my google contacts synced and re-added and the phone did such a great job of still associating this text with the contact. my incredible works fine. and i have tons of apps i dont want to have to re download and not to metion all my settings. at least my contacts will sync no problem.
View 7 Replies
View Related
Aug 10, 2010
I am not receiving a voicemail notification when people leave me a voicemail. I get a missed call or sometimes nothing at all but no symbol in the task bar.
when i call voicemal (901) i have the messages there to listen to but no notification! One of them was about a job opportunity so this is becoming an issue! I am on 02.
View 2 Replies
View Related
Nov 18, 2009
Is there anyway to create an icon on the actual program list called "Games" for example and containing all the g sames Ive downloaded. Ive used apps organizer to label my games as games!
View 6 Replies
View Related
Aug 23, 2010
Has anyone have this issue? When I click on somebody to text from the main text list, I can text them no problem. But when I click the back arrow to go back to the main texting list, it keeps going back to the home screen. Only start doing this today. I have no idea why. I have rebooted my phone and still doing the same think. I have to go back and forth several times before I can get to the texting list screen.
View 7 Replies
View Related
Sep 25, 2010
Ive been using hand cent and I love it but I get text notifications from both that and my phone and it makes my phone so leggy, how do i fix this.
View 8 Replies
View Related
Jun 13, 2010
I've been through this forum a couple of times now, and I've tired the whole sdcard/MEDIA/ringtones. and the sdcard/media/ringtones/notifcation. and its doesn't see what i've dropped into the folder. i've also tired the ringdroid app and everytime i clicked what i wanted it kept doing the force close.
View 7 Replies
View Related
Jun 17, 2010
Got my google voice invite, set myself up with a new number and so far mostly everything is working great.
My only problem, is that when i get SMS, the phone isn't lighting up like normal. In settings, i have it set to blink status light when a text comes in but it's not working. Vibration works and it makes a dinging noise but no light. Anyone else have this problem?
View 6 Replies
View Related
Apr 28, 2010
I recently downloaded handcent and I made it my default messenger. When I get a text message I get a notification from Handcent as well as the stock messenger. So my phone vibrates twice and I get two notifications. The only way I can get the notification icon off the top left is to clear it. When I click it, its just takes me to handcent.
View 2 Replies
View Related