Android :: Creating Stack Overflow Notifier
May 11, 2010
I could not find a Stack Overflow notifier Android app so I am planning on making one. I hope that my app will serve a similar purpose as the Stack Overflow Notifier Chrome extension. This will be my first Android app so I am still unfamiliar with the platform.So I currently plan to ask the user to login by bringing up a WebView and then access the Recent Activity page in the background at specific intervals.My question:How can I store the authentication cookie from StackOverflow after the user has logged in through the WebView and then send this cookie in the HttpGet request when accessing the Recent Activity page?
View 1 Replies
Nov 8, 2009
I'm trying to make a horizontal layout with two TextViews, one should take up 40% of available width, the other 60%. This works unless the text is longer than available space, then a stack overflow exception is thrown. Pasting this into an empty 1.5 project xml file should cause it (though this seems to work ok on 1.6+):
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/ android" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:weightSum="100" >
<TextView android:layout_width="0dip" android:layout_height="wrap_content" android:layout_weight="40" android:text="Some really long sentence AAAAA" android:singleLine="true" />
<TextView android:layout_width="0dip" android:layout_height="wrap_content" android:layout_weight="60" android:text="Some really long sentence BBBBB" android:singleLine="true" /> </LinearLayout>
Is there some other way to do this? I need to just break a row up into these separate columns with specific widths. I'm ok with the text just getting truncated on overflow,
View 5 Replies
View Related
Dec 16, 2009
I tried to create the launcher widget for getting some messages from social networking server. I hope it can support autoLink feature of these message content. however, it will have the "Stack Overflow exception" when android:autoLink="web|email" is enabled when getting more than 20 messages. this issue doesn't happened when I remove this parameter. would you please share your experience about this issue?
View 2 Replies
View Related
Sep 17, 2009
I have the following situation. I have a task with the following activity stack -- A - B - C I have a menu item that allows me to start activity D; so my activity stack looks like this -- A - B - C - D Then I could select a menu item that allows me to start an activity C, which would cause my activity stack to look like this: A - B - C - D - C Then I could go back (via the menu item) to activity D, making my activity stack look like this: A - B - C - D - C - D Doing this a few more times, it would wind up looking like this -- A - B - C - D - C - D - C - D - C - D - C - D - C - D - C - D - C - D - C - D - C - D This seems kinda stupid to me. I'd like it to simply re-use an activity, or pop the activity below to be on top (which goes against the nature of a "stack"). So, what I mean is if I had this activity stack: A - B - C - D And I started activity C (from the menu), I would get: A - B - D - C And if I then started activity D (from the menu), I would get: A - B - C - D Is there a way to do this without keeping some global list of activities and doing gross things to them to reorder them?
View 3 Replies
View Related
Aug 17, 2010
Got a trace like this:
java.lang.StackOverflowError
at android.widget.TextView.onMeasure(TextView.java:5160)
at android.view.View.measure(View.java:8172)
at android.widget.TableRow.getColumnsWidths(TableRow.java:308)
at android.widget.TableLayout.findLargestCells(TableLayout.java:497)
at android.widget.TableLayout.measureVertical(TableLayout.java:462)
at android.widget.TableLayout.onMeasure(TableLayout.java:428)
at android.view.View.measure(View.java:8172)
at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:3140)
at android.widget.LinearLayout.measureChildBeforeLayout(LinearLayout.java:1012)
at android.widget.LinearLayout.measureVertical(LinearLayout.java:381)
at android.widget.LinearLayout.onMeasure(LinearLayout.java:304)
at android.view.View.measure(View.java:8172)
at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:3140)
at android.widget.LinearLayout.measureChildBeforeLayout(LinearLayout.java:1012)
at android.widget.LinearLayout.measureHorizontal(LinearLayout.java:696)
at android.widget.LinearLayout.onMeasure(LinearLayout.java:306)
at android.view.View.measure(View.java:8172)
at android.widget.ListView.measureScrapChild(ListView.java:1135)
at android.widget.ListView.measureHeightOfChildren(ListView.java:1200)
at android.widget.ListView.onMeasure(ListView.java:1109)
at android.view.View.measure(View.java:8172)
at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:3140)
at android.widget.LinearLayout.measureChildBeforeLayout(LinearLayout.java:1012)
at android.widget.LinearLayout.measureVertical(LinearLayout.java:381)
at android.widget.LinearLayout.onMeasure(LinearLayout.java:304)
at android.view.View.measure(View.java:8172)
at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:3140)
at android.widget.FrameLayout.onMeasure(FrameLayout.java:245)
at android.view.View.measure(View.java:8172)
at android.widget.LinearLayout.measureVertical(LinearLayout.java:526)
at android.widget.LinearLayout.onMeasure(LinearLayout.java:304)
at android.view.View.measure(View.java:8172)
at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:3140)
at android.widget.FrameLayout.onMeasure(FrameLayout.java:245)
at android.view.View.measure(View.java:8172)
at android.view.ViewRoot.performTraversals(ViewRoot.java:805)
at android.view.ViewRoot.handleMessage(ViewRoot.java:1744)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:144)
at android.app.ActivityThread.main(ActivityThread.java:4937)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:521)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
at dalvik.system.NativeStart.main(Native Method) Is there anything that can be done here? I'm getting reports of blank screens and force closes.
View 1 Replies
View Related
Feb 2, 2009
I am trying to optimize the OpenGL ES rendering pipeline, along with general optimizations for a proof of concept. One thing I did was to take vertex and texture coordinate float[] data and FloatBuffer that are passed to gl*Pointer methods and convert them into int[] data and IntBuffer objects, because I am using GL_FIXED and fixed point math. After initializing/allocateDirect()'ing the IntBuffers and put()'ing the int[] data in them for the first time, the render() method is called once per frame. After the rendering, the int[] data is updated for both vertex and texture data. Then, the following methods are called on the IntBuffer objects: -vertices_buffer.clear() vertices_buffer.put(vertices) // vertices is a int []-vertices_buffer .position(0) This was not problem when using float[] and FloatBuffer, but a BufferOverflow Exception is being thrown on that call to put(). The API says this is only thrown when the remaining size of the IntBuffer is less than the length of the int[] passed in. Well, both of those values are output to the log on the line just prior to calling put() (intBuf.remaining() and intArr.length). They both output 600, and last I checked 600 is not less than 600! I figure I am missing something simple. I checked the call made to allocateDirect() and it looks like this: -vertices_direct = ByteBuffer.allocateDirect (vertices.length * (Integer.SIZE >> 3));-vertices_ direct. order (ByteOrder.nativeOrder ());-vertices_buffer = vertices_direct.asIntBuffer(); The original code (using floating point math and Android SDK m3-rc37a) can be found here: http://www. enfis.it /wp-content /uploads/2008/01/tunnel3d.zip http://www.enfis.it /archives/14 Obviously, I had to convert the original code up to Android SDK 1.0 r2. I ended up using EGL as I did not see a way around it.Keep in mind I have little OpenGL experience, let alone ES 1.0 on Android.
View 7 Replies
View Related
Sep 20, 2010
I'm currently building a web app in android. My app runs in a webview, and loads third-party contents through iframs. The iframe size is fixed and supposed not to be changed by the content loaded. In desktop Chrome browser, it works fine and the overflow part of loaded content can be scrolled via scrollbars. However, in android webview, the iframe tends to resize itself based on the contents loaded, which leads to a mess of the page layout.
Does anyone have encountered the same problem?
View 3 Replies
View Related
Nov 6, 2009
I've been trying to create a color LinearLayout object (1) within another LinearLayout object (2), while having (1) not display beyond the bounds of (2) - in short, I wish to assign the equivalent of the CSS overflow:hidden property to LinearLayout (2) so that LinearLayout (1) doesn't bleed beyond the edges of (2).
<LinearLayout>
<!-- (2) -->
<LinearLayout>
<!-- (1) -->
</LinearLayout>
</LinearLayout> Is this possible within Android?
View 1 Replies
View Related
Oct 27, 2010
i am trying to get the following code to work on an androind 2.1 phone (HTC Sense UI):
h1 {font-size: 14px;
font-weight: bold;
color: #FFF;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden; however, the text-overflow property does not seem to work. has anybody else had this problem, or found a way to work around it?
View 1 Replies
View Related
Nov 13, 2010
Using the ndk I have compiled a code written in C. The program is a ecm format files conversion, here the native code: link . I chose to do with JNI for reasons of optimization, because the program requires a large amount of CPU processing.The files to convert can be very large, between 200mb and 700mb. Everything works perfectly, but when trying to convert files bigger than 600Mb, near the end of the conversion process, the application stops with the following error message:
11-13 20:24:36.775: WARN/dalvikvm(1468): ReferenceTable overflow (max=512)
11-13 20:24:36.775: WARN/dalvikvm(1468): Last 10 entries in JNI local reference table:
11-13 20:24:36.775: WARN/dalvikvm(1468): 502: 0x465117b0 cls=Ljava/lang/Class; 'Lunecm4droid/kiio/es/mainUECM;' (164 bytes)
11-13 20:24:36.775: WARN/dalvikvm(1468): 503: 0x465117b0 cls=Ljava/lang/Class; 'Lunecm4droid/kiio/es/mainUECM;' (164 bytes)
11-13 20:24:36.775: WARN/dalvikvm(1468): 504: 0x465117b0 cls=Ljava/lang/Class; 'Lunecm4droid/kiio/es/mainUECM;' (164 bytes)
11-13 20:24:36.775: WARN/dalvikvm(1468): 505: 0x465117b0 cls=Ljava/lang/Class; 'Lunecm4droid/kiio/es/mainUECM;' (164 bytes)
11-13 20:24:36.775: WARN/dalvikvm(1468): 506: 0x465117b0 cls=Ljava/lang/Class; 'Lunecm4droid/kiio/es/mainUECM;' (164 bytes)
11-13 20:24:36.775: WARN/dalvikvm(1468): 507: 0x465117b0 cls=Ljava/lang/Class; 'Lunecm4droid/kiio/es/mainUECM;' (164 bytes)
11-13 20:24:36.775: WARN/dalvikvm(1468): 508: 0x465117b0 cls=Ljava/lang/Class; 'Lunecm4droid/kiio/es/mainUECM;' (164 bytes)
11-13 20:24:36.786: WARN/dalvikvm(1468): 509: 0x465117b0 cls=Ljava/lang/Class; 'Lunecm4droid/kiio/es/mainUECM;' (164 bytes)
11-13 20:24:36.786: WARN/dalvikvm(1468): 510: 0x465117b0 cls=Ljava/lang/Class; 'Lunecm4droid/kiio/es/mainUECM;' (164 bytes)
11-13 20:24:36.786: WARN/dalvikvm(1468): 511: 0x465117b0 cls=Ljava/lang/Class; 'Lunecm4droid/kiio/es/mainUECM;' (164 bytes)
11-13 20:24:36.786: WARN/dalvikvm(1468): JNI local reference table summary (512 entries):
11-13 20:24:36.786: WARN/dalvikvm(1468): 512 of Ljava/lang/Class; 164B (1 unique)
11-13 20:24:36.786: WARN/dalvikvm(1468): Memory held directly by tracked refs is 164 bytes
11-13 20:24:36.786: ERROR/dalvikvm(1468): Failed adding to JNI local ref table (has 512 entries)
11-13 20:24:36.786: INFO/dalvikvm(1468): "Thread-9" prio=5 tid=8 RUNNABLE
11-13 20:24:36.786: INFO/dalvikvm(1468): | group="main" sCount=0 dsCount=0 s=N obj=0x46523c48 self=0x30e960
11-13 20:24:36.786: INFO/dalvikvm(1468): | sysTid=1506 nice=0 sched=0/0 cgrp=default handle=2542616
11-13 20:24:36.786: INFO/dalvikvm(1468): | schedstat=( 200042694099 61087921121 333928 )
11-13 20:24:36.786: INFO/dalvikvm(1468): at unecm4droid.kiio.es.mainUECM.invokeNativeFunction(Native Method)
11-13 20:24:36.786: INFO/dalvikvm(1468): at unecm4droid.kiio.es.mainUECM.access$10(mainUECM.java:490)
11-13 20:24:36.786: INFO/dalvikvm(1468): at unecm4droid.kiio.es.mainUECM$11.run(mainUECM.java:735)
11-13 20:24:36.786: ERROR/dalvikvm(1468): VM aborting
11-13 20:24:36.795: INFO/DEBUG(121): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
11-13 20:24:36.795: INFO/DEBUG(121): Build fingerprint: 'google/passion/passion/mahimahi:2.2/FRF91/43546:user/release-keys'
11-13 20:24:36.795: INFO/DEBUG(121): pid: 1468, tid: 1506 >>> unecm4droid.kiio.es <<<
11-13 20:24:36.795: INFO/DEBUG(121): signal 11 (SIGSEGV), fault addr deadd00d
11-13 20:24:36.795: INFO/DEBUG(121): r0 00000026 r1 afd14699 r2 afd14699 r3 00000000
11-13 20:24:36.795: INFO/DEBUG(121): r4 802a3448 r5 802a3448 r6 0030e960 r7 0030e9b0
11-13 20:24:36.795: INFO/DEBUG(121): r8 464c9b48 r9 43277fa4 10 43277f8c fp 464c9ed8
11-13 20:24:36.795: INFO/DEBUG(121): ip deadd00d sp 464c9130 lr afd16155 pc 802424e0 cpsr 20000030
11-13 20:24:36.795: INFO/DEBUG(121): d0 643a64696f72646e d1 6472656767756265
11-13 20:24:36.795: INFO/DEBUG(121): d2 465117b046511767 d3 465117b04651170a
11-13 20:24:36.795: INFO/DEBUG(121): d4 465117b0465117b0 d5 465117b0465117b0
11-13 20:24:36.795: INFO/DEBUG(121): d6 465117b0465117b0 d7 465117b0465117b0
11-13 20:24:36.795: INFO/DEBUG(121): d8 4198000041b80000 d9 43e0000000000000
11-13 20:24:36.795: INFO/DEBUG(121): d10 41dfffffffc00000 d11 c3e0000000000000
11-13 20:24:36.795: INFO/DEBUG(121): d12 0000000000000000 d13 0000000000000000
11-13 20:24:36.795: INFO/DEBUG(121): d14 0000000000000000 d15 0000000000000000
11-13 20:24:36.795: INFO/DEBUG(121): d16 47d7202800000000 d17 c083180000000000
11-13 20:24:36.795: INFO/DEBUG(121): d18 4035000000000000 d19 0000000000000000
11-13 20:24:36.795: INFO/DEBUG(121): d20 3ff0000000000000 d21 8000000000000000
11-13 20:24:36.795: INFO/DEBUG(121): d22 c035000000000000 d23 ff00080008000700
11-13 20:24:36.795: INFO/DEBUG(121): d24 ff00080008000700 d25 ff00080008000700
11-13 20:24:36.795: INFO/DEBUG(121): d26 0100010001000100 d27 0100010001000100
11-13 20:24:36.795: INFO/DEBUG(121): d28 0100010001000100 d29 3ff0000000000000
11-13 20:24:36.795: INFO/DEBUG(121): d30 0000000000000000 d31 3ff0000000000000
11-13 20:24:36.795: INFO/DEBUG(121): scr 80000012
11-13 20:24:36.865: INFO/DEBUG(121): #00 pc 000424e0 /system/lib/libdvm.so
11-13 20:24:36.865: INFO/DEBUG(121): #01 pc 0004655e /system/lib/libdvm.so
11-13 20:24:36.865: INFO/DEBUG(121): #02 pc 000466f0 /system/lib/libdvm.so
11-13 20:24:36.865: INFO/DEBUG(121): #03 pc 00001110 /data/data/unecm4droid.kiio.es/lib/libndkfoo.so
11-13 20:24:36.865: INFO/DEBUG(121): #04 pc 000016da /data/data/unecm4droid.kiio.es/lib/libndkfoo.so
11-13 20:24:36.865: INFO/DEBUG(121): #05 pc 00001bda /data/data/unecm4droid.kiio.es/lib/libndkfoo.so
11-13 20:24:36.865: INFO/DEBUG(121): #06 pc 00001f2e /data/data/unecm4droid.kiio.es/lib/libndkfoo.so
11-13 20:24:36.865: INFO/DEBUG(121): #07 pc 00017034 /system/lib/libdvm.so
11-13 20:24:36.865: INFO/DEBUG(121): #08 pc 00045744 /system/lib/libdvm.so
11-13 20:24:36.865: INFO/DEBUG(121): #09 pc 0004ae8e /system/lib/libdvm.so
11-13 20:24:36.865: INFO/DEBUG(121): #10 pc 0001bf98 /system/lib/libdvm.so
11-13 20:24:36.865: INFO/DEBUG(121): #11 pc 00022bc4 /system/lib/libdvm.so
11-13 20:24:36.865: INFO/DEBUG(121): #12 pc 00021a60 /system/lib/libdvm.so
11-13 20:24:36.865: INFO/DEBUG(121): #13 pc 0005cf60 /system/lib/libdvm.so
11-13 20:24:36.865: INFO/DEBUG(121): #14 pc 0005d190 /system/lib/libdvm.so
11-13 20:24:36.876: INFO/DEBUG(121): #15 pc 000500d0 /system/lib/libdvm.so
11-13 20:24:36.876: INFO/DEBUG(121): #16 pc 00010f44 /system/lib/libc.so
11-13 20:24:36.876: INFO/DEBUG(121): #17 pc 00010a30 /system/lib/libc.so
11-13 20:24:36.876: INFO/DEBUG(121): code around pc:
11-13 20:24:36.876: INFO/DEBUG(121): 802424c0 20061861 f7d418a2 2000ea7c ebdaf7d4
11-13 20:24:36.876: INFO/DEBUG(121): 802424d0 58234808 b1036bdb f8df4798 2026c01c
11-13 20:24:36.876: INFO/DEBUG(121): 802424e0 0000f88c ec40f7d4 00060f8c fffe1ecc
11-13 20:24:36.876: INFO/DEBUG(121): 802424f0 fffe5140 000003a4 deadd00d f8dfb40e
11-13 20:24:36.876: INFO/DEBUG(121): 80242500 b503c02c bf00490a 188ba200 f853aa03
11-13 20:24:36.876: INFO/DEBUG(121): code around lr:
11-13 20:24:36.876: INFO/DEBUG(121): afd16134 000ef9b0 22022100 ec98f7f7 463289a1
11-13 20:24:36.876: INFO/DEBUG(121): afd16144 5080f421 81a04629 000ef9b4 ec1ef7f7
11-13 20:24:36.876: INFO/DEBUG(121): afd16154 bf00bd70 4604b510 000ef9b0 ec06f7f7
11-13 20:24:36.876: INFO/DEBUG(121): afd16164 bfbe2800 f42389a3 81a35380 6d21db02
11-13 20:24:36.876: INFO/DEBUG(121): afd16174 6523180b bf00bd10 b085b5f0 bf004c41
11-13 20:24:36.876: INFO/DEBUG(121): stack:
11-13 20:24:36.876: INFO/DEBUG(121): 464c90f0 000005a0
11-13 20:24:36.876: INFO/DEBUG(121): 464c90f4 afd146c9 /system/lib/libc.so
11-13 20:24:36.876: INFO/DEBUG(121): 464c90f8 afd42498 /system/lib/libc.so
11-13 20:24:36.876: INFO/DEBUG(121): 464c90fc afd43bc8 /system/lib/libc.so
11-13 20:24:36.876: INFO/DEBUG(121): 464c9100 00000000
11-13 20:24:36.876: INFO/DEBUG(121): 464c9104 afd156e3 /system/lib/libc.so
11-13 20:24:36.876: INFO/DEBUG(121): 464c9108 afd14699 /system/lib/libc.so
11-13 20:24:36.876: INFO/DEBUG(121): 464c910c afd14699 /system/lib/libc.so
11-13 20:24:36.876: INFO/DEBUG(121): 464c9110 afd146f0 /system/lib/libc.so
11-13 20:24:36.876: INFO/DEBUG(121): 464c9114 802a3448 /system/lib/libdvm.so
11-13 20:24:36.876: INFO/DEBUG(121): 464c9118 802a3448 /system/lib/libdvm.so
11-13 20:24:36.876: INFO/DEBUG(121): 464c911c 0030e960 [heap]
11-13 20:24:36.876: INFO/DEBUG(121): 464c9120 0030e9b0 [heap]
11-13 20:24:36.876: INFO/DEBUG(121): 464c9124 afd146fd /system/lib/libc.so
11-13 20:24:36.876: INFO/DEBUG(121): 464c9128 df002777
11-13 20:24:36.876: INFO/DEBUG(121): 464c912c e3a070ad
11-13 20:24:36.876: INFO/DEBUG(121): #00 464c9130 465117b0 /dev/ashmem/mspace/dalvik-heap/2 (deleted)
11-13 20:24:36.876: INFO/DEBUG(121): 464c9134 80246563 /system/lib/libdvm.so
11-13 20:24:36.876: INFO/DEBUG(121): #01 464c9138 000b4890 [heap]
11-13 20:24:36.876: INFO/DEBUG(121): 464c913c 00000000
11-13 20:24:36.876: INFO/DEBUG(121): 464c9140 00000051
11-13 20:24:36.876: INFO/DEBUG(121): 464c9144 0030e960 [heap]
11-13 20:24:36.876: INFO/DEBUG(121): 464c9148 000b4890 [heap]
11-13 20:24:36.876: INFO/DEBUG(121): 464c914c 46512b88 /dev/ashmem/mspace/dalvik-heap/2 (deleted)
11-13 20:24:36.876: INFO/DEBUG(121): 464c9150 43277fac
11-13 20:24:36.876: INFO/DEBUG(121): 464c9154 802466f5 /system/lib/libdvm.so
I tried to debug a native process using gdb but I only give this message when app crash:Program received signal SIGSTOP, Stopped (signal).Does anyone could help me find more clues about the error?
View 1 Replies
View Related
May 27, 2010
can anyone help with this? it ported all of my gmail contacts from years and they pop up as suggestions when i try to sms or use other apps that search for contacts. this is incredibly annoying and i really hope i don't have to wipe my phone to fix it. is there any other way?
View 4 Replies
View Related
Jan 28, 2010
i recently downloaded handcent sms and it gives me an option on my droid eris to the change the led color to about 5 different colors. i've tried every color and it never works. the led doesn't seem to work even for regular notifications.
View 4 Replies
View Related
Sep 8, 2010
Setup - android-notifier - How to set up communication between the android app and the desktop/laptop. - Project Hosting on Google Code I'm thinking this could be handy if I add BT to my netbook and can get it to automatically enable when I'm next to my netbook and disable when I step away.
View 1 Replies
View Related
Dec 8, 2009
I have made a simple application that might be interesting for those of you that use a Swiki: Swiki Notifier. The application notifies the user when an article has been edited and lists all recently changed articles in a clickable list that links to the article on the swiki.
View 2 Replies
View Related
Aug 6, 2010
Check out Super Gmail, its a Gmail notifier where you can set per-contact ringtone or notification sound for new emails. No more missing this important email!! and no need to keep watching your phone all the time . Super Gmail can also read aloud the email sender name, email subject and body!! Super Gmail - Email notifier and TTS now available for free trial on Google Market and Mobihand.
View 1 Replies
View Related
Sep 8, 2010
Android Notifier Sends Notifications from Your Phone to Your Desktop. This is freaken awesome, too bad you cant reply to sms messages though. But still its worth having . Super easy to set up and works flawlessly, I suggest you guys give it a try.
View 14 Replies
View Related
Jan 22, 2012
I'm looking for a android-notifier (code.google.com/p/android-notifier/) like app/software.
It should be capable of sending notifications for SMS/Calls/WhatsApp to my Mac. Preferably via bluetooth, but Wifi is also an option.
Android-Notifier sadly doesn't support WhatsApp and is very unreliable on my DHD. Sometimes it skips received SMS and bluetooth isn't working at all.
View 2 Replies
View Related
Apr 20, 2010
Any word on the notifier LED on the EVO? One thing I hated about my Hero is the green-only, tiny, dim notifier.
Absolutely love how customizable (through an App anyway) my BB's LED is, both in brightness and color, and it'd be a shame if HTC stuck with the Hero's for their new devices.
I guess the Incredible can be a hint of what's to come. Anyone know what that phone's LED is like?
View 9 Replies
View Related
Aug 31, 2010
Is there such an app that can make the camera flash LED work as a notifier instead of the notification LED?
View 2 Replies
View Related
Nov 2, 2009
There is a stack of activity i want to call the activity from that stack , My question is that is it possible to check from that stack and call that intent.When i press home button and again when i press the executable it should start the activity where i have left .Is it possible?Any example related to the same would be great help
View 3 Replies
View Related
May 3, 2010
Anyone know if the Gmail Notifier works on the Desire
View 14 Replies
View Related
Oct 20, 2010
Is there a setting or an app that will continue giving me notifications every so often if I missed an email, phone call or voice mail. My phone only gives me one when it comes in.
View 1 Replies
View Related
Oct 22, 2010
im very familiar with the secrets of battery saving but lately .. ever since the installing of WiMax Notifier my battery has been going much faster.. like today i took the day off from work and unplugged my phone at 909 and at about 230 i had 25 percent left and had a full charge i had to turn off sync automattically to conserve battery.. this phone is weird some days the battery isnt a issue and other days its become like horrible wtf?
View 10 Replies
View Related
Jul 8, 2013
Is there an app that notifies me the user about that my jelly bean phone has just crashed, with the exact time and date and is also logging in a database, so I can look it up later? Is there an app like that?
My phone, ever since moving to cyanogenmod 10.1 (considered stable) is rebooting randomly pretty much every day. Sometimes, during the night it might be even doing this without me knowing. I want to calculate a stability index (also for other OS) based on the run time and the crashes (unwanted restarts) that the OS is doing. If the crash frequency goes over a certain threshold, the user can be warned that his OS is unstable and unreliable at the moment and that she should not rely on it.
I want to be able to use encryption again, but cannot if I want to be able to use the alarm clock and depend on it waking me up.
View 3 Replies
View Related
Oct 14, 2010
ever since I switched from Sense to Launcherpro, the main mail icon (not gmail, the one I use for MS exchange) no longer shows me how many unread messages are there. Was that feature something that Sense did that I've lost w/ LP?
View 1 Replies
View Related
Jun 1, 2010
i really need a email repeat notifier. i cannot keep looking at my phone while im at work. ive found sms,mms,and missed call repeaters but nothing for my emails. i can live without the led but really need a sound to alert me.
View 3 Replies
View Related
Oct 11, 2010
Did a quick search and found nothing. Out of the blue last week, the vibrate notification for both emails and texts has stopped working. It is still working in vibrate mode for calls though. I use Profiles app and have changed nothing on it.
View 2 Replies
View Related
Oct 2, 2010
I just got this app for my x and fascinate. it's amazing. when connected to wifi, my computer notifies me of my texts, calls, low battery, etc. it is great when i am working, and i even love it when i am at home, as my entertainment center is controlled by a PC. check it out. best app all week. i am certain this belongs in another part of the forum, but i really only browse the x and fascinate sections, and i know a lot of you just stay around here too, and i thought you all might find it really useful.
View 6 Replies
View Related
May 12, 2013
Is it possible for a Nova theme to make notifier bar and bottom bar (with home back and recent apps) 100% transparency or would that have to be built into the launcher.
If it is possible does such a theme exist?
View 4 Replies
View Related
Jul 16, 2010
I downloaded SMS Popup and Missed Call because I want to use the LED notifier to change colors and display text messages, but even after selecting those options, it still doesnt work. Has anyone figured this out? Or is there a better app that works?
View 14 Replies
View Related