Android :: Filter Or Block On Evo

Sep 22, 2010

Does anyone know of an app that will filter internet or block it.

Android :: filter or block on evo


Android :: Internet Filter To Block Any Mature Content From Devices Browser?

May 22, 2010

I just got my HTC Desire the other day and I'm looking for a family friendly Internet filter (aka. Web protection, Net safety, Internet security) app for my phone that will block any mature content from the devices browser. At the moment I can't find anything- but I know these forums are the best on the web- so, if a net family filter android app exists, I know someone on here will be able to tell me about it!

View 2 Replies View Related

HTC Incredible :: Filter Spam On Phone / Keyword Block Of These Ads?

Jun 1, 2010

I have a few different email accounts and on my PC I have most of the spam under control by a junk mail filter that catches almost all of what the ISP's filter doesn't. On the Incredible, however, those ads still get through and it's annoying of course. If I could just even get rid of the Viagra ads, I'd be happy, because there wouldn't be much spam left if they were gone. I figure there has to be a way to do a keyword block of these ads but I just can't figure this out on here. Any ideas?

View 1 Replies View Related

Android :: Filter In ExpandableListView?

Mar 18, 2010

I have an ExpandableListView with several groups and each group contains several children. I want to make this list searchable, just like a regular list view. I have a SimpleCursorTreeAdapter (mAdapter) for this expandlable list.

I tried to use the built in list filter using:

CODE:.......

The above code does not work for filtering.

How can I implement the search/filter functionality?

View 2 Replies View Related

Android :: Way To Filter A Listview With Edit Box?

Jun 29, 2010

I am making a Glossary of legal terms and I would like to be able to narrow the results in the list by typing in an edit box, I have tried finding a solution but none of them have worked for me.

View 1 Replies View Related

Android :: Adb Logcat Time Filter?

Aug 25, 2010

Does anyone know how to filter out the logcat ('adb shell logcat') so that it only shows the log statements after current date and time ?

View 2 Replies View Related

Android : Looking For SMS - Call Filter For My HTC Magic

Oct 26, 2009

Seeking for a SMS/Call filter for my HTC Magic. Free would be kickass.

View 4 Replies View Related

Filter Specific Apps In Android

Sep 18, 2013

I have to filter the android application using intent.action_send.If in my device having twitter app means go to twitter application.otherwise have to display the toast message.

In my device twitter application is available.But am getting the toast message and also its going to twitter application.In these situation my app going to twitter application.but don't display the toast message.

final CharSequence[] items = { "Twitter", "Facebook", "Gmail" };
AlertDialog.Builder builder = new AlertDialog.Builder( HomePage.this);
builder.setTitle("Share Via:");
builder.setItems(items, new DialogInterface.OnClickListener() {
[code]...

View 1 Replies View Related

Android :: Intent Object Not Triggering Filter

Jun 25, 2010

Perhaps I'm misunderstanding how Intents and intent-filters work, but it seems to me that this should be a strait-forward case. However it's not working. Here is the Intent I'm sending:
Intent i = new Intent(Intent.ACTION_VIEW);
i.setType("vnd.android.cursor.item/vnd.connectsy.event");
startActivity(i);
And here is the intent-filter:
<activity android:name=".events.EventView">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<data android:mimeType="vnd.android.cursor.item/vnd.connectsy.event" />
</intent-filter>
</activity>

And finally, the error I'm receiving:
android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW typ=vnd.android.cursor.item/vnd.connectsy.event }

View 1 Replies View Related

Android :: Listview Text Filter Slow

Feb 18, 2010

In my listview i'm adding more than 2500 items. When i try to use text filter option it is taking more time to filter. I asked this question in android groups already.But i can't get the answer what i expected.

View 13 Replies View Related

Android :: How To Filter Html / Alert On Criteria?

May 27, 2010

I'm trying to find a way to automatically search HTML code for a criteria that shows up each time then bring the app to the front and also send notification

View 2 Replies View Related

Android :: Any Application To Filter Email Spam?

Jul 7, 2010

There seems to be plenty applications for removing SMS Spam on the market, but are there any for blocking email Spam?

View 1 Replies View Related

Android :: Don't Add Items If Doesn't Match Filter

Oct 6, 2010

This is my code:

CODE:...........

The items in the ListView comes from an AsyncTask. When the AsyncTask is running I want it to stop adding non-matching items. For now, if it had loaded 5 items and I search with a specified String, then when the AsyncTask continues loading items it adds automatically Orders to the ListView, even if there isn't a match.

View 1 Replies View Related

Android :: Intent Filter For Http Scheme

Sep 14, 2010

I built an Android application that requires OAuth. All was working well using a custom scheme call back which is intercepted by Android. It seems that Yahoo have changed the goal posts and now the custom scheme is not accepted by Yahoo.I am now looking at possible alternate approaches. My first attempt is to use a normal http scheme and modify my intent filter to intercept the new URL. I have the following in my AndroidManifest.xml :
<intent-filter>
<action android:name="android.intent.action.VIEW"></action>
<category android:name="android.intent.category.DEFAULT"></category>
<category android:name="android.intent.category.BROWSABLE"></category>
<data android:host="www.test.com" android:scheme="http"></data>
</intent-filter>
Where www.test.com will be substituted with a domain that I own. It seems :
* This filter is triggered when I click on a link on a page.
* It is not triggered on the redirect by Yahoo, the browser opens the website at www.test.com
* It is not triggered when I enter the domain name directly in the browser.

So can anybody help me with
* When exactly this intent-filter will be triggered?
* Any changes to the intent-filter or permissions that will widen the filter to apply to redirect requests?
* Any other approaches I could use?

View 1 Replies View Related

Android :: Intent Filter By Protocol Specifier

Oct 12, 2010

are there any docs covering the filtering of the protocol specifier? Something like the market application does with "market://", i'd like to make with my application.

View 3 Replies View Related

Android :: How To Filter Text In A ListView Properly?

Oct 5, 2010

I have a ListView that get data properly and they are added to my own ListView using a ArrayAdapter class and my own ArrayList class. When I for example, typing in "table" I want it to sort from the loaded titles in my ListView and than it should show me the items that are left and matching table.

View 1 Replies View Related

Android :: How To Send Message Through Intent Filter

Jul 2, 2010

How to send a message from one activity to another using intent and intent filters?

View 1 Replies View Related

Android :: Override Filter In Droid's ArrayAdapter?

Apr 19, 2010

I have an ArrayAdapter wrapped around an ArrayList of custom objects. I'd like to write a custom filter for that adapter so that when I call getListAdapter().getFilter().filter("abc") the list will get filtered by an arbitrary transformation of "abc".

I thought I would just try to override ArrayAdapter.getFilter(), but that requires I re-implement the private ArrayAdapter.ArrayFilter which requires access to a bunch of ArrayAdapter's private instances.

What's the simplest way to do this?

View 1 Replies View Related

Android :: Intent Filter For When At Contact List?

Oct 27, 2010

I'm looking for an intent filter for when you are at the contact list and you long press a contact so a the menu comes up

View 1 Replies View Related

Android : Way To Use Hardware Keyboard To Filter Out Items?

Jan 1, 2010

I have a ListView and it is possible to use the hardware keyboard to filter out items. However what should I do for phones that don't have a hardware keyboard and only a virtual one? Is there a way to add a button that when pressed, the virtual keyboard shows up?

View 3 Replies View Related

Android : Can't Get Intent Filter To Launch Activity From A Uri

Aug 14, 2010

I'm trying to figure out how to launch an activity in my app from a custom URI such as myapp://myuriactivity I've read a lot about the intent and intent filters in the android references and also read several examples, but for some reason I can't get my simple test to work. Below is my manifest file, can anyone tell me what I'm doing wrong? With the below file, if I open the browser and try to navigate to http://org.test.launchtest it just says the page doesn't exist. Shouldn't this work?

View 1 Replies View Related

Android : What Is An Intent-filter Show An App When Sharing A Url?

Nov 5, 2010

I have looked at the intent-filter documentation and I can't figure out this specific intent-filter. I'm looking to use ACTION_SEND because I only want the app to show up in "Share" menus in other apps. I only want to show up in the share menu if the text of the intent is a url. For example, what is shared from the Android Browser's share menu. I don't want the app to appear in the share menu if it's just text and not a url.

View 1 Replies View Related

Android :: Creating Intent With Action / Any Way To Filter Results

Jul 20, 2010

When creating an intent with action send to send some data, is there a way to filter the results that are included in the activity chooser that is created using Intent.createChooser? I have not seen a way to do this other than setting the mime type, but it is not flexible enough.

For example, there is a situation when I want e-mail apps to be the only results in the activity chooser dialog. Setting the type to "text/ html" successfully filters this down to email apps, except when bluetooth is enabled. Bluetooth appears in the list as well, but this is not desirable. Surely there is a way to have a little more control over the results?

View 3 Replies View Related

Android :: Filter Rows From Cursor - Don't Show Up In ListView

Jun 12, 2010

I have a Cursor that returns rows I use with a SimpleCursorAdapter to populate a ListView. I would like to filter some of the rows so they don't get displayed in my ListView. I use the data from the rows elsewhere in my Activity so I don't want to change my SQL to filter them with a WHERE clause. What is the best way to keep a row from being displaying in my ListView? Ideally I would check a column in my row and then only add rows to the ListView that satisfy a condition.

View 2 Replies View Related

Android :: Create Image Filter Based Animations

Sep 17, 2009

I have a requirement to create animations which are based on Image filters. As of now I can see only Alpha Animation support. How can I extend and create these animations such as blur etc.

View 2 Replies View Related

Android :: How Broadcast Receiver And Intent Filter Behaves?

Jul 6, 2010

I am new to android platform.please help me out how the Broadcast Receiver and Intent Filter behaves in android.please explain in simple line or with example.

View 1 Replies View Related

Android :: Send Message From Activity Using Intents Filter?

Jul 2, 2010

How to send any message from one activity to another using intent and intent filters?

View 1 Replies View Related

Android :: How To Make A Nice Looking ListView Filter On Droid?

Nov 15, 2009

I want a nice looking filter for my ListView in Android. How can I do this?

View 2 Replies View Related

Android :: Way To Text Filter A Listview Based On A Simplecursoradapter?

Jan 4, 2010

I have a ListView that is backed by a SimpleCursorAdapter. I'd like to be able to filter the list like you would a contacts list, just by typing, and I came across the textFilterEnabled() Problem is, I couldn't see how to get it to work with a SimpleCursorAdapter. Is this even possible?

View 1 Replies View Related

Android :: Retrieving File Path When Using Intent Filter

Oct 5, 2010

I realise one has to use an intent filter to associate a file format with an application, but once this is done how does the app 'receive' the path to the file that was chosen? Is there a special method it calls on the Activity?

View 2 Replies View Related







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