Questions tagged [browsable]
37 questions
1
vote
1 answer
Android browsable intent fails on gmail links, but works with default mail client
I have set up intent filters to handle certain email links with my app. This works well in Android's basic mail program. I click the link, I am prompted whether to open it using the browser or my app, and after selecting my app it is handled…

Phil
- 35,852
- 23
- 123
- 164
1
vote
2 answers
Android BROWSABLE intent API level
Are there different steps to register an Android Activity as a BROWSABLE intent on Android 2.3 (API level 10) and earlier versions?
I've set up an Activity with an intent filter that uses a custom scheme:

sho
- 759
- 5
- 16
1
vote
2 answers
Define a custom Attribute class to make a property Browsable in some conditions
I Have some classes in my project, some properties are Browsable(false) so the user couldn't see them:
public class OrderEntity{
public int Id { get; set;}
[Browsable(false)]
public int ProductId { get; set;}
....
}
I want to,…

Masoud
- 8,020
- 12
- 62
- 123
1
vote
0 answers
How to add browsable intent-filters to a dynamic Broadcast Receiver?
I'm actually searching for a way to add dynamically some browsable intent-filters to an activity using a Broadcast Receiver, I've made this in my activity :
private BroadcastReceiver receiver = new BroadcastReceiver() {
@Override
public void…

A.Baglin
- 11
- 3
1
vote
3 answers
Is it possible to add extras to browsable intents from HTML
Let's take per say the following manifest:
…

0rka
- 2,246
- 2
- 11
- 20
1
vote
1 answer
Add file extension filter in a browsable app
I want to add a file extension filter to my browsable app because I want it to be browsable only when the url points to an image (jpg, png, bmp, gif...)
I have tried android:mimeType="image/*" but it doesn't work with internet urls, it only works if…

Grender
- 1,589
- 2
- 17
- 44
1
vote
3 answers
DRF - browsable interface very slow with PrimaryKeyRelatedField
How can I make Django Rest Frameworks browsable UI fast with RelatedField?
I'm aware this has already been asked here: Django REST Framework: slow browsable UI because of large related table but the answer is no longer valid for new versions of…

Chozabu
- 1,015
- 1
- 10
- 33
1
vote
1 answer
Browsable API in Laravel 5?
Is there an equivalent to Django REST Framework in Laravel 5 on this subject? It would be nice if there was a tool that generates pages in which the client can navigate through the api tree and where I can test my api endpoints without writing…

Skatch
- 2,112
- 2
- 14
- 32
1
vote
2 answers
disable browsable folder with images in Joomla (with Igniter gallery)
I am using Joomla 2.5.
My webpage has some static pages with images that I can edit via Joomla administrator. Igniter gallery is used to administrate images.
Today I found that some images appear in google image search, but when user clicks on image…

renathy
- 5,125
- 20
- 85
- 149
1
vote
0 answers
PropertyGrid BrowsableAttributes Bug?
This seems like a bug:
the code below works fine:
this.propertyGrid1.SelectedObject = new Button();
the code below doesn't:
this.propertyGrid1.BrowsableAttributes = new AttributeCollection(
new…

Kendo Wang
- 51
- 1
- 3
1
vote
1 answer
Emberjs Displaying the actual route href="" to increase site browsability
I have re-designed and deployed our commercial site using 100% Ember using pushState to increase the search engines capability to browse the site content.
But, I have one issue that I am not sure how to solve. I am using "actions" to redirect to…

nembleton
- 2,392
- 1
- 18
- 20
1
vote
3 answers
.NET Property Grid - setting Browsable (bool) using App.config
I would like to be able to set the visibility of a property on my property grid using App.config. I have tried :
[Browsable(bool.Parse(Sytem.Configuration.ConfigurationSettings.AppSettings["testBool"]))]
However Visual Studio 2008 would give me an…

Ghints
- 11
- 1
- 3
0
votes
1 answer
Rest framework browsable API not showing after customizing the ObtainAuthToken view from rest framework. {"detail":"Method \"GET\" not allowed."}
I am trying to implement an API which returns a token upon a post request with valid email and password. I am using the rest framework for token authentication. To do this, I customized the ObtainAuthToken view from rest_framework to use my own…

Solomon Botchway
- 353
- 3
- 9
0
votes
2 answers
What's the use of "-c android.intent.category.BROWSABLE" for "adb shell am start"?
What's the different between
adb shell am start \
-a android.intent.action.VIEW \
-d https://www.airbnb.co.uk/rooms/48033927
and
adb shell am start \
-a android.intent.action.VIEW \
-c android.intent.category.BROWSABLE \
-d…

Elye
- 53,639
- 54
- 212
- 474