Community
All Communities
Products
ArcGIS Pro
ArcGIS Survey123
ArcGIS Online
ArcGIS Enterprise
Data Management
Geoprocessing
ArcGIS Experience Builder
ArcGIS Web AppBuilder
ArcGIS Dashboards
ArcGIS Field Maps
ArcGIS Spatial Analyst
All Products Communities
Industries
Education
Water Resources
State & Local Government
Transportation
Gas and Pipeline
Water Utilities
Roads and Highways
Telecommunications
Natural Resources
Electric
Public Safety
All Industries Communities
Developers
Python
JavaScript Maps SDK
Native Maps SDKs
ArcGIS API for Python
ArcGIS Pro SDK
ArcObjects SDK
Developers - General
ArcGIS REST APIs and Services
ArcGIS Online Developers
Game Engine Maps SDKs
File Geodatabase API
All Developers Communities
Global
Comunidad Esri Colombia - Ecuador - Panamá
ArcGIS 開発者コミュニティ
Czech GIS
ArcNesia
Esri India
GeoDev Germany
ArcGIS Content - Esri Nederland
Comunidad GEOTEC
Esri Italia Community
Europe
Asia Pacific
All Global Communities
All Communities
Developers
User Groups
Industries
Services
Community Resources
Global
Events
Learning
Networks
ArcGIS Topics
Products
View All Communities
ArcGIS Ideas
GIS Life
Community Resources
Community Help Documents
Community Blog
Community Feedback
Member Introductions
Community Ideas
All Community Resources
Sign In
cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
Show
only
|
Search instead for
Did you mean:
Cancel
Home
:
All Communities
:
Developers
:
Native Maps SDKs
:
Runtime SDK for Android Questions
:
How can I set alpha to ArcGISTiledMapServiceLayer ...
Options
Subscribe to RSS Feed
Mark Topic as New
Mark Topic as Read
Float this Topic for Current User
Bookmark
Subscribe
Mute
Printer Friendly Page
Select to view content in your preferred language
Translate Now
How can I set alpha to ArcGISTiledMapServiceLayer or ArcGISDynamicMapServiceLayer?
Subscribe
2202
2
01-12-2012 04:06 PM
by
ClementLau
Emerging Contributor
01-12-2012
04:06 PM
Mark as New
Bookmark
Subscribe
Mute
Subscribe to RSS Feed
Permalink
Print
Report Inappropriate Content
How can I set alpha to ArcGISTiledMapServiceLayer or ArcGISDynamicMapServiceLayer?
Tags
(4)
Tags:
_java
android
arcgis-runtime-sdk-for-android
native_app_developers
Preview file
148 KB
Preview file
200 KB
Preview file
159 KB
Preview file
119 KB
Reply
0
Kudos
All Posts
Previous Topic
Next Topic
2 Replies
by
Anonymous User
Not applicable
01-12-2012
09:55 PM
Mark as New
Bookmark
Subscribe
Mute
Subscribe to RSS Feed
Permalink
Print
Report Inappropriate Content
Original User: ibespalov
Clement,
May be
opacity
?
Reply
0
Kudos
by
KyleShimabukuro
Occasional Contributor
01-13-2012
08:02 AM
Mark as New
Bookmark
Subscribe
Mute
Subscribe to RSS Feed
Permalink
Print
Report Inappropriate Content
Here's how I used it with a dynamic layer:
ArcGISDynamicMapServiceLayer dynamicLayer = new ArcGISDynamicMapServiceLayer(dynamicMapURL);
map.addLayer(dynamicLayer);
float layerOpacity = 0.5f;
dynamicLayer.setOpacity(layerOpacity);
Reply
0
Kudos
Post Reply