diff --git a/Google.Maps.Utils.AndroidX/Google.Maps.Utils.AndroidX.csproj b/Bindings/Google.Maps.Utils.Android/Google.Maps.Utils.Android.csproj similarity index 56% rename from Google.Maps.Utils.AndroidX/Google.Maps.Utils.AndroidX.csproj rename to Bindings/Google.Maps.Utils.Android/Google.Maps.Utils.Android.csproj index b5ab8c6..9dfe827 100644 --- a/Google.Maps.Utils.AndroidX/Google.Maps.Utils.AndroidX.csproj +++ b/Bindings/Google.Maps.Utils.Android/Google.Maps.Utils.Android.csproj @@ -5,16 +5,16 @@ AnyCPU 8.0.30703 2.0 - {6CDB5AD6-8892-4ED1-BFE4-C1B6CA8D28BA} + {4C9DC45A-6999-42AC-8F0B-2B54B98BF848} {10368E6C-D01B-4462-8E8B-01FC667A7035};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} {77efb91c-a7e9-4b0e-a7c5-31eeec3c6d46} Library Properties - Google.Maps.Utils.AndroidX - Google.Maps.Utils.AndroidX + Google.Maps.Utils.Android + Google.Maps.Utils.Android 512 True - v10.0 + v11.0 class-parse XAJavaInterop1 PackageReference @@ -27,6 +27,7 @@ DEBUG;TRACE prompt 4 + 0618,0114 @@ -35,6 +36,7 @@ TRACE prompt 4 + 0618,0114 @@ -54,60 +56,19 @@ - - - - - 0.2.2 - runtime; build; native; contentfiles; analyzers; buildtransitive - all - - - 1.0.6.1 - - 1.1.0.1 - - - 1.0.0.1 - - - 1.1.0.1 - - - 1.2.0.1 - - - 1.1.0.1 - - - 1.0.0.1 + 1.1.0.2 - - 117.2.1-preview02 + + 1.1.0.10 - 117.0.0-preview04 - - - 117.2.1-preview02 - - - 117.0.2-preview02 - - - 0.10.0 - - - 1.2.4.1 - - - 1.0.0.1 - - - 28.0.0.3 + 117.0.0 + + + - \ No newline at end of file + diff --git a/Google.Maps.Utils.AndroidX/Transforms/EnumMethods.xml b/Bindings/Google.Maps.Utils.Android/Transforms/EnumMethods.xml similarity index 74% rename from Google.Maps.Utils.AndroidX/Transforms/EnumMethods.xml rename to Bindings/Google.Maps.Utils.Android/Transforms/EnumMethods.xml index 42afcc6..99f560a 100644 --- a/Google.Maps.Utils.AndroidX/Transforms/EnumMethods.xml +++ b/Bindings/Google.Maps.Utils.Android/Transforms/EnumMethods.xml @@ -1,20 +1,13 @@  - + + + + + + - - Notes: - - For Java interfaces, use "jni-interface" attribute instead of "jni-class" attribute. - - To change the type of the return value, use "return" as the parameter name. - - The parameter names will be p0, p1, ... unless you provide JavaDoc file in the project. - --> - @@ -22,17 +15,9 @@ - - - - - + - - - - \ No newline at end of file diff --git a/Google.Maps.Utils.AndroidX/Transforms/Metadata.xml b/Bindings/Google.Maps.Utils.Android/Transforms/Metadata.xml similarity index 84% rename from Google.Maps.Utils.AndroidX/Transforms/Metadata.xml rename to Bindings/Google.Maps.Utils.Android/Transforms/Metadata.xml index 8478d05..0c17cdb 100644 --- a/Google.Maps.Utils.AndroidX/Transforms/Metadata.xml +++ b/Bindings/Google.Maps.Utils.Android/Transforms/Metadata.xml @@ -14,13 +14,13 @@ Android.Gms.Maps.Utils.Clustering.View Android.Gms.Maps.Utils.Clustering.Algorithm - - public - - public + public - public + public - public + public \ No newline at end of file diff --git a/Bindings/Google.Maps.Utils.iOS/ApiDefinitions.cs b/Bindings/Google.Maps.Utils.iOS/ApiDefinitions.cs new file mode 100644 index 0000000..5a52aa1 --- /dev/null +++ b/Bindings/Google.Maps.Utils.iOS/ApiDefinitions.cs @@ -0,0 +1,780 @@ +using System; +using CoreGraphics; +using CoreLocation; +using Foundation; +using ObjCRuntime; +using UIKit; + +namespace Google.Maps.Utils +{ + // @protocol GMUClusterItem + /* + Check whether adding [Model] to this declaration is appropriate. + [Model] is used to generate a C# class that implements this protocol, + and might be useful for protocols that consumers are supposed to implement, + since consumers can subclass the generated class instead of implementing + the generated interface. If consumers are not supposed to implement this + protocol, then [Model] is redundant and will generate code that will never + be used. +*/ + [Protocol] + [BaseType(typeof(NSObject))] + interface GMUClusterItem + { + // @required @property (readonly, nonatomic) CLLocationCoordinate2D position; + [Abstract] + [Export("position")] + CLLocationCoordinate2D Position { get; } + } + + interface IGMUClusterItem { } + + // @protocol GMUCluster + /* + Check whether adding [Model] to this declaration is appropriate. + [Model] is used to generate a C# class that implements this protocol, + and might be useful for protocols that consumers are supposed to implement, + since consumers can subclass the generated class instead of implementing + the generated interface. If consumers are not supposed to implement this + protocol, then [Model] is redundant and will generate code that will never + be used. +*/ + [Protocol] + [BaseType(typeof(NSObject))] + interface GMUCluster + { + // @required @property (readonly, nonatomic) CLLocationCoordinate2D position; + [Abstract] + [Export("position")] + CLLocationCoordinate2D Position { get; } + + // @required @property (readonly, nonatomic) NSUInteger count; + [Abstract] + [Export("count")] + nuint Count { get; } + + // @required @property (readonly, nonatomic) NSArray> * _Nonnull items; + [Abstract] + [Export("items")] + IGMUClusterItem[] Items { get; } + } + + interface IGMUCluster { } + + // @protocol GMUClusterAlgorithm + /* + Check whether adding [Model] to this declaration is appropriate. + [Model] is used to generate a C# class that implements this protocol, + and might be useful for protocols that consumers are supposed to implement, + since consumers can subclass the generated class instead of implementing + the generated interface. If consumers are not supposed to implement this + protocol, then [Model] is redundant and will generate code that will never + be used. +*/ + [Protocol] + [BaseType(typeof(NSObject))] + interface GMUClusterAlgorithm + { + // @required -(void)addItems:(NSArray> * _Nonnull)items; + [Abstract] + [Export("addItems:")] + void AddItems(IGMUClusterItem[] items); + + // @required -(void)removeItem:(id _Nonnull)item; + [Abstract] + [Export("removeItem:")] + void RemoveItem(IGMUClusterItem item); + + // @required -(void)clearItems; + [Abstract] + [Export("clearItems")] + void ClearItems(); + + // @required -(NSArray> * _Nonnull)clustersAtZoom:(float)zoom; + [Abstract] + [Export("clustersAtZoom:")] + IGMUCluster[] ClustersAtZoom(float zoom); + } + + interface IGMUClusterAlgorithm { } + + // @protocol GMUClusterIconGenerator + /* + Check whether adding [Model] to this declaration is appropriate. + [Model] is used to generate a C# class that implements this protocol, + and might be useful for protocols that consumers are supposed to implement, + since consumers can subclass the generated class instead of implementing + the generated interface. If consumers are not supposed to implement this + protocol, then [Model] is redundant and will generate code that will never + be used. +*/ + [Protocol] + [BaseType(typeof(NSObject))] + interface GMUClusterIconGenerator + { + // @required -(UIImage *)iconForSize:(NSUInteger)size; + [Abstract] + [Export("iconForSize:")] + UIImage IconForSize(nuint size); + } + + interface IGMUClusterIconGenerator { } + + // @protocol GMUClusterRenderer + /* + Check whether adding [Model] to this declaration is appropriate. + [Model] is used to generate a C# class that implements this protocol, + and might be useful for protocols that consumers are supposed to implement, + since consumers can subclass the generated class instead of implementing + the generated interface. If consumers are not supposed to implement this + protocol, then [Model] is redundant and will generate code that will never + be used. +*/ + [Protocol] + [BaseType(typeof(NSObject))] + interface GMUClusterRenderer + { + // @required -(void)renderClusters:(NSArray> * _Nonnull)clusters; + [Abstract] + [Export("renderClusters:")] + void RenderClusters(IGMUCluster[] clusters); + + // @required -(void)update; + [Abstract] + [Export("update")] + void Update(); + } + + interface IGMUClusterRenderer { } + + // @protocol GMUClusterManagerDelegate + [Protocol, Model(AutoGeneratedName = true)] + [BaseType(typeof(NSObject))] + interface GMUClusterManagerDelegate + { + // @optional -(BOOL)clusterManager:(GMUClusterManager * _Nonnull)clusterManager didTapCluster:(id _Nonnull)cluster; + [Export("clusterManager:didTapCluster:")] + bool DidTapCluster(GMUClusterManager clusterManager, IGMUCluster cluster); + + // @optional -(BOOL)clusterManager:(GMUClusterManager * _Nonnull)clusterManager didTapClusterItem:(id _Nonnull)clusterItem; + [Export("clusterManager:didTapClusterItem:")] + bool DidTapClusterItem(GMUClusterManager clusterManager, IGMUClusterItem clusterItem); + } + + interface IGMUClusterManagerDelegate { } + + // @interface GMUClusterManager : NSObject + [BaseType(typeof(NSObject))] + [DisableDefaultCtor] + interface GMUClusterManager : IMapViewDelegate + { + // -(instancetype _Nonnull)initWithMap:(MapView * _Nonnull)mapView algorithm:(id _Nonnull)algorithm renderer:(id _Nonnull)renderer __attribute__((objc_designated_initializer)); + [Export("initWithMap:algorithm:renderer:")] + [DesignatedInitializer] + IntPtr Constructor(MapView mapView, IGMUClusterAlgorithm algorithm, IGMUClusterRenderer renderer); + + // @property (readonly, nonatomic) id _Nonnull algorithm; + [Export("algorithm")] + IGMUClusterAlgorithm Algorithm { get; } + + [Wrap("WeakDelegate")] + [NullAllowed] + IGMUClusterManagerDelegate Delegate { get; } + + // @property (readonly, nonatomic, weak) id _Nullable delegate; + [NullAllowed, Export("delegate", ArgumentSemantic.Weak)] + NSObject WeakDelegate { get; } + + [Wrap("WeakMapDelegate")] + [NullAllowed] + IMapViewDelegate MapDelegate { get; } + + // @property (readonly, nonatomic, weak) id _Nullable mapDelegate; + [NullAllowed, Export("mapDelegate", ArgumentSemantic.Weak)] + NSObject WeakMapDelegate { get; } + + // -(void)setDelegate:(id _Nullable)delegate mapDelegate:(id _Nullable)mapDelegate; + [Export("setDelegate:mapDelegate:")] + void SetDelegate([NullAllowed] IGMUClusterManagerDelegate @delegate, [NullAllowed] IMapViewDelegate mapDelegate); + + // -(void)addItem:(id _Nonnull)item; + [Export("addItem:")] + void AddItem(IGMUClusterItem item); + + // -(void)addItems:(NSArray> * _Nonnull)items; + [Export("addItems:")] + void AddItems(IGMUClusterItem[] items); + + // -(void)removeItem:(id _Nonnull)item; + [Export("removeItem:")] + void RemoveItem(IGMUClusterItem item); + + // -(void)clearItems; + [Export("clearItems")] + void ClearItems(); + + // -(void)cluster; + [Export("cluster")] + void Cluster(); + } + + // @interface GMUDefaultClusterIconGenerator : NSObject + [BaseType(typeof(NSObject))] + interface GMUDefaultClusterIconGenerator : GMUClusterIconGenerator + { + // -(instancetype _Nonnull)initWithBuckets:(NSArray * _Nonnull)buckets; + [Export("initWithBuckets:")] + IntPtr Constructor(NSNumber[] buckets); + + // -(instancetype _Nonnull)initWithBuckets:(NSArray * _Nonnull)buckets backgroundImages:(NSArray * _Nonnull)backgroundImages; + [Export("initWithBuckets:backgroundImages:")] + IntPtr Constructor(NSNumber[] buckets, UIImage[] backgroundImages); + + // -(instancetype _Nonnull)initWithBuckets:(NSArray * _Nonnull)buckets backgroundColors:(NSArray * _Nonnull)backgroundColors; + [Export("initWithBuckets:backgroundColors:")] + IntPtr Constructor(NSNumber[] buckets, UIColor[] backgroundColors); + + // -(UIImage * _Nonnull)iconForSize:(NSUInteger)size; + [Export("iconForSize:")] + UIImage IconForSize(nuint size); + } + + // @protocol GMUClusterRendererDelegate + [Protocol, Model(AutoGeneratedName = true)] + [BaseType(typeof(NSObject))] + interface GMUClusterRendererDelegate + { + // @optional -(Marker * _Nullable)renderer:(id _Nonnull)renderer markerForObject:(id _Nonnull)object; + [Export("renderer:markerForObject:")] + [return: NullAllowed] + Marker MarkerForObject(IGMUClusterRenderer renderer, NSObject @object); + + // @optional -(void)renderer:(id _Nonnull)renderer willRenderMarker:(Marker * _Nonnull)marker; + [Export("renderer:willRenderMarker:")] + void WillRenderMarker(IGMUClusterRenderer renderer, Marker marker); + + // @optional -(void)renderer:(id _Nonnull)renderer didRenderMarker:(Marker * _Nonnull)marker; + [Export("renderer:didRenderMarker:")] + void DidRenderMarker(IGMUClusterRenderer renderer, Marker marker); + } + + interface IGMUClusterRendererDelegate { } + + // @interface GMUDefaultClusterRenderer : NSObject + [BaseType(typeof(NSObject))] + interface GMUDefaultClusterRenderer : GMUClusterRenderer + { + // @property (nonatomic) BOOL animatesClusters; + [Export("animatesClusters")] + bool AnimatesClusters { get; set; } + + // @property (nonatomic) int zIndex; + [Export("zIndex")] + int ZIndex { get; set; } + + [Wrap("WeakDelegate")] + [NullAllowed] + IGMUClusterRendererDelegate Delegate { get; set; } + + // @property (nonatomic, weak) id _Nullable delegate; + [NullAllowed, Export("delegate", ArgumentSemantic.Weak)] + NSObject WeakDelegate { get; set; } + + // -(instancetype _Nonnull)initWithMapView:(MapView * _Nonnull)mapView clusterIconGenerator:(id _Nonnull)iconGenerator; + [Export("initWithMapView:clusterIconGenerator:")] + IntPtr Constructor(MapView mapView, IGMUClusterIconGenerator iconGenerator); + + // -(BOOL)shouldRenderAsCluster:(id _Nonnull)cluster atZoom:(float)zoom; + [Export("shouldRenderAsCluster:atZoom:")] + bool ShouldRenderAsCluster(IGMUCluster cluster, float zoom); + } + + // @protocol GMUGeometry + /* + Check whether adding [Model] to this declaration is appropriate. + [Model] is used to generate a C# class that implements this protocol, + and might be useful for protocols that consumers are supposed to implement, + since consumers can subclass the generated class instead of implementing + the generated interface. If consumers are not supposed to implement this + protocol, then [Model] is redundant and will generate code that will never + be used. +*/ + [Protocol] + [BaseType(typeof(NSObject))] + interface GMUGeometry + { + // @required @property (readonly, nonatomic) NSString * _Nonnull type; + [Abstract] + [Export("type")] + string Type { get; } + } + + interface IGMUGeometry { } + + // @interface GMUStyle : NSObject + [BaseType(typeof(NSObject))] + interface GMUStyle + { + // @property (readonly, nonatomic) NSString * _Nonnull styleID; + [Export("styleID")] + string StyleID { get; } + + // @property (readonly, nonatomic) UIColor * _Nullable strokeColor; + [NullAllowed, Export("strokeColor")] + UIColor StrokeColor { get; } + + // @property (readonly, nonatomic) UIColor * _Nullable fillColor; + [NullAllowed, Export("fillColor")] + UIColor FillColor { get; } + + // @property (readonly, nonatomic) CGFloat width; + [Export("width")] + nfloat Width { get; } + + // @property (readonly, nonatomic) CGFloat scale; + [Export("scale")] + nfloat Scale { get; } + + // @property (readonly, nonatomic) CGFloat heading; + [Export("heading")] + nfloat Heading { get; } + + // @property (readonly, nonatomic) CGPoint anchor; + [Export("anchor")] + CGPoint Anchor { get; } + + // @property (readonly, nonatomic) NSString * _Nullable iconUrl; + [NullAllowed, Export("iconUrl")] + string IconUrl { get; } + + // @property (readonly, nonatomic) NSString * _Nullable title; + [NullAllowed, Export("title")] + string Title { get; } + + // @property (readonly, nonatomic) BOOL hasFill; + [Export("hasFill")] + bool HasFill { get; } + + // @property (readonly, nonatomic) BOOL hasStroke; + [Export("hasStroke")] + bool HasStroke { get; } + + // -(instancetype _Nonnull)initWithStyleID:(NSString * _Nonnull)styleID strokeColor:(UIColor * _Nullable)strokeColor fillColor:(UIColor * _Nullable)fillColor width:(CGFloat)width scale:(CGFloat)scale heading:(CGFloat)heading anchor:(CGPoint)anchor iconUrl:(NSString * _Nullable)iconUrl title:(NSString * _Nullable)title hasFill:(BOOL)hasFill hasStroke:(BOOL)hasStroke; + [Export("initWithStyleID:strokeColor:fillColor:width:scale:heading:anchor:iconUrl:title:hasFill:hasStroke:")] + IntPtr Constructor(string styleID, [NullAllowed] UIColor strokeColor, [NullAllowed] UIColor fillColor, nfloat width, nfloat scale, nfloat heading, CGPoint anchor, [NullAllowed] string iconUrl, [NullAllowed] string title, bool hasFill, bool hasStroke); + } + + // @protocol GMUGeometryContainer + /* + Check whether adding [Model] to this declaration is appropriate. + [Model] is used to generate a C# class that implements this protocol, + and might be useful for protocols that consumers are supposed to implement, + since consumers can subclass the generated class instead of implementing + the generated interface. If consumers are not supposed to implement this + protocol, then [Model] is redundant and will generate code that will never + be used. +*/ + [Protocol] + [BaseType(typeof(NSObject))] + interface GMUGeometryContainer + { + // @required @property (readonly, nonatomic) id _Nonnull geometry; + [Abstract] + [Export("geometry")] + IGMUGeometry Geometry { get; } + + // @required @property (nonatomic) GMUStyle * _Nullable style; + [Abstract] + [NullAllowed, Export("style", ArgumentSemantic.Assign)] + GMUStyle Style { get; set; } + } + + interface IGMUGeometryContainer { } + + // @interface GMUFeature : NSObject + [BaseType(typeof(NSObject))] + interface GMUFeature : GMUGeometryContainer + { + // @property (readonly, nonatomic) NSString * _Nullable identifier; + [NullAllowed, Export("identifier")] + string Identifier { get; } + + // @property (readonly, nonatomic) NSDictionary * _Nullable properties; + [NullAllowed, Export("properties")] + NSDictionary Properties { get; } + + // @property (readonly, nonatomic) CoordinateBounds * _Nullable boundingBox; + [NullAllowed, Export("boundingBox")] + CoordinateBounds BoundingBox { get; } + + // -(instancetype _Nonnull)initWithGeometry:(id _Nonnull)geometry identifier:(NSString * _Nullable)identifier properties:(NSDictionary * _Nullable)properties boundingBox:(CoordinateBounds * _Nullable)boundingBox; + [Export("initWithGeometry:identifier:properties:boundingBox:")] + IntPtr Constructor(IGMUGeometry geometry, [NullAllowed] string identifier, [NullAllowed] NSDictionary properties, [NullAllowed] CoordinateBounds boundingBox); + } + + // @interface GMUGeoJSONParser : NSObject + [BaseType(typeof(NSObject))] + interface GMUGeoJSONParser + { + // @property (readonly, nonatomic) NSArray> * _Nonnull features; + [Export("features")] + IGMUGeometryContainer[] Features { get; } + + // -(instancetype _Nonnull)initWithURL:(NSURL * _Nonnull)url; + [Export("initWithURL:")] + IntPtr Constructor(NSUrl url); + + // -(instancetype _Nonnull)initWithData:(NSData * _Nonnull)data; + [Export("initWithData:")] + IntPtr Constructor(NSData data); + + // -(instancetype _Nonnull)initWithStream:(NSInputStream * _Nonnull)stream; + [Export("initWithStream:")] + IntPtr Constructor(NSInputStream stream); + + // -(void)parse; + [Export("parse")] + void Parse(); + } + + // @interface GMUGeometryCollection : NSObject + [BaseType(typeof(NSObject))] + interface GMUGeometryCollection : GMUGeometry + { + // @property (readonly, nonatomic) NSArray> * _Nonnull geometries; + [Export("geometries")] + IGMUGeometry[] Geometries { get; } + + // -(instancetype _Nonnull)initWithGeometries:(NSArray> * _Nonnull)geometries; + [Export("initWithGeometries:")] + IntPtr Constructor(IGMUGeometry[] geometries); + } + + // @interface GMUGeometryRenderer : NSObject + [BaseType(typeof(NSObject))] + interface GMUGeometryRenderer + { + // -(instancetype _Nonnull)initWithMap:(MapView * _Nonnull)map geometries:(NSArray> * _Nonnull)geometries; + [Export("initWithMap:geometries:")] + IntPtr Constructor(MapView map, IGMUGeometryContainer[] geometries); + + // -(instancetype _Nonnull)initWithMap:(MapView * _Nonnull)map geometries:(NSArray> * _Nonnull)geometries styles:(NSArray * _Nullable)styles; + [Export("initWithMap:geometries:styles:")] + IntPtr Constructor(MapView map, IGMUGeometryContainer[] geometries, [NullAllowed] GMUStyle[] styles); + + // -(void)render; + [Export("render")] + void Render(); + + // -(void)clear; + [Export("clear")] + void Clear(); + } + + // @interface GMUGradient : NSObject + [BaseType(typeof(NSObject))] + interface GMUGradient + { + // @property (readonly, nonatomic) NSUInteger mapSize; + [Export("mapSize")] + nuint MapSize { get; } + + // @property (readonly, nonatomic) NSArray * _Nonnull colors; + [Export("colors")] + UIColor[] Colors { get; } + + // @property (readonly, nonatomic) NSArray * _Nonnull startPoints; + [Export("startPoints")] + NSNumber[] StartPoints { get; } + + // -(instancetype _Nonnull)initWithColors:(NSArray * _Nonnull)colors startPoints:(NSArray * _Nonnull)startPoints colorMapSize:(NSUInteger)mapSize; + [Export("initWithColors:startPoints:colorMapSize:")] + IntPtr Constructor(UIColor[] colors, NSNumber[] startPoints, nuint mapSize); + + // -(NSArray * _Nonnull)generateColorMap; + [Export("generateColorMap")] + //[Verify(MethodToProperty)] + UIColor[] GenerateColorMap { get; } + } + + // @interface GMUGridBasedClusterAlgorithm : NSObject + [BaseType(typeof(NSObject))] + interface GMUGridBasedClusterAlgorithm : GMUClusterAlgorithm + { + } + + // @interface GMUGroundOverlay : NSObject + [BaseType(typeof(NSObject))] + interface GMUGroundOverlay : GMUGeometry + { + // @property (readonly, nonatomic) CLLocationCoordinate2D northEast; + [Export("northEast")] + CLLocationCoordinate2D NorthEast { get; } + + // @property (readonly, nonatomic) CLLocationCoordinate2D southWest; + [Export("southWest")] + CLLocationCoordinate2D SouthWest { get; } + + // @property (readonly, nonatomic) int zIndex; + [Export("zIndex")] + int ZIndex { get; } + + // @property (readonly, nonatomic) double rotation; + [Export("rotation")] + double Rotation { get; } + + // @property (readonly, nonatomic) NSString * _Nonnull href; + [Export("href")] + string Href { get; } + + // -(instancetype _Nonnull)initWithCoordinate:(CLLocationCoordinate2D)northEast southWest:(CLLocationCoordinate2D)southWest zIndex:(int)zIndex rotation:(double)rotation href:(NSString * _Nonnull)href; + [Export("initWithCoordinate:southWest:zIndex:rotation:href:")] + IntPtr Constructor(CLLocationCoordinate2D northEast, CLLocationCoordinate2D southWest, int zIndex, double rotation, string href); + } + + // @protocol GQTPointQuadTreeItem + /* + Check whether adding [Model] to this declaration is appropriate. + [Model] is used to generate a C# class that implements this protocol, + and might be useful for protocols that consumers are supposed to implement, + since consumers can subclass the generated class instead of implementing + the generated interface. If consumers are not supposed to implement this + protocol, then [Model] is redundant and will generate code that will never + be used. +*/ + [Protocol] + [BaseType(typeof(NSObject))] + interface GQTPointQuadTreeItem + { + // @required -(GQTPoint)point; + [Abstract] + [Export("point")] + //[Verify(MethodToProperty)] + GQTPoint Point { get; } + } + + interface IGQTPointQuadTreeItem { } + + // @interface GMUWeightedLatLng : NSObject + [BaseType(typeof(NSObject))] + interface GMUWeightedLatLng : GQTPointQuadTreeItem + { + // @property (readonly, nonatomic) float intensity; + [Export("intensity")] + float Intensity { get; } + + // -(instancetype _Nonnull)initWithCoordinate:(CLLocationCoordinate2D)coordinate intensity:(float)intensity; + [Export("initWithCoordinate:intensity:")] + IntPtr Constructor(CLLocationCoordinate2D coordinate, float intensity); + } + + // @interface GMUHeatmapTileLayer : SyncTileLayer + [BaseType(typeof(SyncTileLayer))] + interface GMUHeatmapTileLayer + { + // @property (copy, nonatomic) NSArray * _Nonnull weightedData; + [Export("weightedData", ArgumentSemantic.Copy)] + GMUWeightedLatLng[] WeightedData { get; set; } + + // @property (nonatomic) NSUInteger radius; + [Export("radius")] + nuint Radius { get; set; } + + // @property (nonatomic) GMUGradient * _Nonnull gradient; + [Export("gradient", ArgumentSemantic.Assign)] + GMUGradient Gradient { get; set; } + } + + // @interface GMUKMLParser : NSObject + [BaseType(typeof(NSObject))] + interface GMUKMLParser + { + // @property (readonly, nonatomic) NSArray> * _Nonnull placemarks; + [Export("placemarks")] + IGMUGeometryContainer[] Placemarks { get; } + + // @property (readonly, nonatomic) NSArray * _Nonnull styles; + [Export("styles")] + GMUStyle[] Styles { get; } + + // -(void)parse; + [Export("parse")] + void Parse(); + + // -(instancetype _Nonnull)initWithURL:(NSURL * _Nonnull)url; + [Export("initWithURL:")] + IntPtr Constructor(NSUrl url); + + // -(instancetype _Nonnull)initWithData:(NSData * _Nonnull)data; + [Export("initWithData:")] + IntPtr Constructor(NSData data); + + // -(instancetype _Nonnull)initWithStream:(NSInputStream * _Nonnull)stream; + [Export("initWithStream:")] + IntPtr Constructor(NSInputStream stream); + } + + // @interface GMULineString : NSObject + [BaseType(typeof(NSObject))] + interface GMULineString : GMUGeometry + { + // @property (readonly, nonatomic) Path * _Nonnull path; + [Export("path")] + Path Path { get; } + + // -(instancetype _Nonnull)initWithPath:(Path * _Nonnull)path; + [Export("initWithPath:")] + IntPtr Constructor(Path path); + } + + // @interface GMUNonHierarchicalDistanceBasedAlgorithm : NSObject + [BaseType(typeof(NSObject))] + interface GMUNonHierarchicalDistanceBasedAlgorithm : GMUClusterAlgorithm + { + } + + // @interface GMUStaticCluster : NSObject + [BaseType(typeof(NSObject))] + [DisableDefaultCtor] + interface GMUStaticCluster : GMUCluster + { + // -(instancetype _Nonnull)initWithPosition:(CLLocationCoordinate2D)position __attribute__((objc_designated_initializer)); + [Export("initWithPosition:")] + [DesignatedInitializer] + IntPtr Constructor(CLLocationCoordinate2D position); + + // @property (readonly, nonatomic) CLLocationCoordinate2D position; + [Export("position")] + CLLocationCoordinate2D Position { get; } + + // @property (readonly, nonatomic) NSUInteger count; + [Export("count")] + nuint Count { get; } + + // @property (readonly, nonatomic) NSArray> * _Nonnull items; + [Export("items")] + IGMUClusterItem[] Items { get; } + + // -(void)addItem:(id _Nonnull)item; + [Export("addItem:")] + void AddItem(IGMUClusterItem item); + + // -(void)removeItem:(id _Nonnull)item; + [Export("removeItem:")] + void RemoveItem(IGMUClusterItem item); + } + + // @interface GQTPointQuadTree : NSObject + [BaseType(typeof(NSObject))] + interface GQTPointQuadTree + { + // -(id)initWithBounds:(GQTBounds)bounds; + [Export("initWithBounds:")] + IntPtr Constructor(GQTBounds bounds); + + // -(BOOL)add:(id)item; + [Export("add:")] + bool Add(IGQTPointQuadTreeItem item); + + // -(BOOL)remove:(id)item; + [Export("remove:")] + bool Remove(IGQTPointQuadTreeItem item); + + // -(void)clear; + [Export("clear")] + void Clear(); + + // -(NSArray *)searchWithBounds:(GQTBounds)bounds; + [Export("searchWithBounds:")] + //[Verify(StronglyTypedNSArray)] + NSObject[] SearchWithBounds(GQTBounds bounds); + + // -(NSUInteger)count; + [Export("count")] + //[Verify(MethodToProperty)] + nuint Count { get; } + } + + // @interface GMUPlacemark : NSObject + [BaseType(typeof(NSObject))] + interface GMUPlacemark : GMUGeometryContainer + { + // @property (readonly, nonatomic) NSString * _Nullable title; + [NullAllowed, Export("title")] + string Title { get; } + + // @property (readonly, nonatomic) NSString * _Nullable snippet; + [NullAllowed, Export("snippet")] + string Snippet { get; } + + // @property (readonly, nonatomic) NSString * _Nullable styleUrl; + [NullAllowed, Export("styleUrl")] + string StyleUrl { get; } + + // -(instancetype _Nonnull)initWithGeometry:(id _Nullable)geometry title:(NSString * _Nullable)title snippet:(NSString * _Nullable)snippet style:(GMUStyle * _Nullable)style styleUrl:(NSString * _Nullable)styleUrl; + [Export("initWithGeometry:title:snippet:style:styleUrl:")] + IntPtr Constructor([NullAllowed] IGMUGeometry geometry, [NullAllowed] string title, [NullAllowed] string snippet, [NullAllowed] GMUStyle style, [NullAllowed] string styleUrl); + } + + // @interface GMUPoint : NSObject + [BaseType(typeof(NSObject))] + interface GMUPoint : GMUGeometry + { + // @property (readonly, nonatomic) CLLocationCoordinate2D coordinate; + [Export("coordinate")] + CLLocationCoordinate2D Coordinate { get; } + + // -(instancetype _Nonnull)initWithCoordinate:(CLLocationCoordinate2D)coordinate; + [Export("initWithCoordinate:")] + IntPtr Constructor(CLLocationCoordinate2D coordinate); + } + + // @interface GMUPolygon : NSObject + [BaseType(typeof(NSObject))] + interface GMUPolygon : GMUGeometry + { + // @property (readonly, nonatomic) NSArray * _Nonnull paths; + [Export("paths")] + Path[] Paths { get; } + + // -(instancetype _Nonnull)initWithPaths:(NSArray * _Nonnull)paths; + [Export("initWithPaths:")] + IntPtr Constructor(Path[] paths); + } + + // @interface GMUSimpleClusterAlgorithm : NSObject + [BaseType(typeof(NSObject))] + interface GMUSimpleClusterAlgorithm : GMUClusterAlgorithm + { + } + + // @interface GMUWrappingDictionaryKey : NSObject + [BaseType(typeof(NSObject))] + interface GMUWrappingDictionaryKey : INSCopying + { + // -(instancetype)initWithObject:(id)object; + [Export("initWithObject:")] + IntPtr Constructor(NSObject @object); + } + + // @interface GQTPointQuadTreeChild : NSObject + [BaseType(typeof(NSObject))] + interface GQTPointQuadTreeChild + { + // -(void)add:(id)item withOwnBounds:(GQTBounds)bounds atDepth:(NSUInteger)depth; + [Export("add:withOwnBounds:atDepth:")] + void Add(IGQTPointQuadTreeItem item, GQTBounds bounds, nuint depth); + + // -(BOOL)remove:(id)item withOwnBounds:(GQTBounds)bounds; + [Export("remove:withOwnBounds:")] + bool Remove(IGQTPointQuadTreeItem item, GQTBounds bounds); + + // -(void)searchWithBounds:(GQTBounds)searchBounds withOwnBounds:(GQTBounds)ownBounds results:(NSMutableArray *)accumulator; + [Export("searchWithBounds:withOwnBounds:results:")] + void SearchWithBounds(GQTBounds searchBounds, GQTBounds ownBounds, NSMutableArray accumulator); + + // -(void)splitWithOwnBounds:(GQTBounds)ownBounds atDepth:(NSUInteger)depth; + [Export("splitWithOwnBounds:atDepth:")] + void SplitWithOwnBounds(GQTBounds ownBounds, nuint depth); + } +} \ No newline at end of file diff --git a/Google.Maps.Utils.iOS/Google.Maps.Utils.iOS.csproj b/Bindings/Google.Maps.Utils.iOS/Google.Maps.Utils.iOS.csproj similarity index 66% rename from Google.Maps.Utils.iOS/Google.Maps.Utils.iOS.csproj rename to Bindings/Google.Maps.Utils.iOS/Google.Maps.Utils.iOS.csproj index 7a056f8..31abeff 100644 --- a/Google.Maps.Utils.iOS/Google.Maps.Utils.iOS.csproj +++ b/Bindings/Google.Maps.Utils.iOS/Google.Maps.Utils.iOS.csproj @@ -1,70 +1,67 @@ - - - - Debug - AnyCPU - {D8F8517E-0047-489F-BCE8-0179012F6871} - {8FFB629D-F513-41CE-95D2-7ECE97B6EEEC};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Library - Google.Maps.Utils - Google.Maps.Utils.iOS - Resources - en-US - true - PackageReference - - - true - full - false - bin\Debug - DEBUG; - prompt - 4 - true - - - true - bin\Release - - prompt - 4 - true - - - - - - ..\packages\Xamarin.Google.iOS.Maps.2.5.0\lib\Xamarin.iOS10\Google.Maps.dll - - - - - - - - - - - - - - Static - False - - - - - 2.5.0 - - - 0.2.2 - runtime; build; native; contentfiles; analyzers; buildtransitive - all - - - 0.10.0 - - - + + + + Debug + AnyCPU + {8FFB629D-F513-41CE-95D2-7ECE97B6EEEC};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + {83672C49-5783-4546-9BA4-52804E2B8B94} + {b6f3ff35-79b2-4f25-a2fc-60a7cf61013b} + Library + Google.Maps.Utils + Resources + Google.Maps.Utils.iOS + PackageReference + + + true + portable + false + bin\Debug + DEBUG; + prompt + 4 + true + 8767 + + + true + bin\Release + prompt + 4 + bin\Release\Google.Maps.Utils.iOS.xml + true + 8767 + + + + + + + + + + + + + + + + + 2.4.0 + + + 0.4.11 + + + + + + + + Static + True + -ObjC + + + \ No newline at end of file diff --git a/Google.Maps.Utils.iOS/Properties/AssemblyInfo.cs b/Bindings/Google.Maps.Utils.iOS/Properties/AssemblyInfo.cs similarity index 84% rename from Google.Maps.Utils.iOS/Properties/AssemblyInfo.cs rename to Bindings/Google.Maps.Utils.iOS/Properties/AssemblyInfo.cs index 9f16013..7ae766e 100644 --- a/Google.Maps.Utils.iOS/Properties/AssemblyInfo.cs +++ b/Bindings/Google.Maps.Utils.iOS/Properties/AssemblyInfo.cs @@ -3,21 +3,21 @@ using Foundation; -// This attribute allows you to mark your assemblies as “safe to link”. -// When the attribute is present, the linker—if enabled—will process the assembly +// This attribute allows you to mark your assemblies as “safe to link”. +// When the attribute is present, the linker—if enabled—will process the assembly // even if you’re using the “Link SDK assemblies only” option, which is the default for device builds. [assembly: LinkerSafe] -// Information about this assembly is defined by the following attributes. +// Information about this assembly is defined by the following attributes. // Change them to the values specific to your project. [assembly: AssemblyTitle("Google.Maps.Utils.iOS")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("iTexico")] -[assembly: AssemblyProduct("")] -[assembly: AssemblyCopyright("(c) Josué Díaz")] +[assembly: AssemblyCompany("Josue Diaz")] +[assembly: AssemblyProduct("Google.Maps.Utils.iOS")] +[assembly: AssemblyCopyright("Copyright © 2022")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -27,7 +27,7 @@ [assembly: AssemblyVersion("1.0.*")] -// The following attributes are used to specify the signing key for the assembly, +// The following attributes are used to specify the signing key for the assembly, // if desired. See the Mono documentation for more information about signing. //[assembly: AssemblyDelaySign(false)] diff --git a/Bindings/Google.Maps.Utils.iOS/StructsAndEnums.cs b/Bindings/Google.Maps.Utils.iOS/StructsAndEnums.cs new file mode 100644 index 0000000..aa364d6 --- /dev/null +++ b/Bindings/Google.Maps.Utils.iOS/StructsAndEnums.cs @@ -0,0 +1,24 @@ +using System.Runtime.InteropServices; + +namespace Google.Maps.Utils +{ + [StructLayout(LayoutKind.Sequential)] + public struct GQTPoint + { + public double x; + + public double y; + } + + [StructLayout(LayoutKind.Sequential)] + public struct GQTBounds + { + public double minX; + + public double minY; + + public double maxX; + + public double maxY; + } +} \ No newline at end of file diff --git a/Bindings/Google.Maps.Utils.iOS/libGoogleMapsUtils.a b/Bindings/Google.Maps.Utils.iOS/libGoogleMapsUtils.a new file mode 100644 index 0000000..f6648b6 Binary files /dev/null and b/Bindings/Google.Maps.Utils.iOS/libGoogleMapsUtils.a differ diff --git a/Google.Maps.Utils.AndroidX/Jars/android-maps-utils-0.5.aar b/Google.Maps.Utils.AndroidX/Jars/android-maps-utils-0.5.aar deleted file mode 100644 index 259c1d3..0000000 Binary files a/Google.Maps.Utils.AndroidX/Jars/android-maps-utils-0.5.aar and /dev/null differ diff --git a/Google.Maps.Utils.Droid/Google.Maps.Utils.Droid.csproj b/Google.Maps.Utils.Droid/Google.Maps.Utils.Droid.csproj deleted file mode 100644 index a1553e3..0000000 --- a/Google.Maps.Utils.Droid/Google.Maps.Utils.Droid.csproj +++ /dev/null @@ -1,104 +0,0 @@ - - - - Debug - AnyCPU - {C783863C-3134-4729-BDC7-7871F17A00E5} - {10368E6C-D01B-4462-8E8B-01FC667A7035};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Library - Google.Maps.Utils - Google.Maps.Utils.Droid - v8.1 - Resources - Assets - class-parse - XAJavaInterop1 - PackageReference - true - - - true - full - false - bin\Debug - DEBUG; - prompt - 4 - None - false - - - true - pdbonly - true - bin\Release - - prompt - 4 - true - false - false - SdkOnly - - - - - Assemblies - - false - Default - false - anycpu - - true - - - - - - - - - - - - - - - - - - - - - - - - 0.10.0 - - - 0.2.2 - runtime; build; native; contentfiles; analyzers; buildtransitive - all - - - 42.1021.1 - - - 42.1021.1 - - - 42.1021.1 - - - 42.1021.1 - - - 24.2.1 - - - 24.2.1 - - - - \ No newline at end of file diff --git a/Google.Maps.Utils.Droid/Jars/android-maps-utils-0.5.aar b/Google.Maps.Utils.Droid/Jars/android-maps-utils-0.5.aar deleted file mode 100644 index 259c1d3..0000000 Binary files a/Google.Maps.Utils.Droid/Jars/android-maps-utils-0.5.aar and /dev/null differ diff --git a/Google.Maps.Utils.Droid/Properties/AssemblyInfo.cs b/Google.Maps.Utils.Droid/Properties/AssemblyInfo.cs deleted file mode 100644 index e6c4247..0000000 --- a/Google.Maps.Utils.Droid/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using Android.App; - -// Information about this assembly is defined by the following attributes. -// Change them to the values specific to your project. - -[assembly: AssemblyTitle("Google.Maps.Utils.Droid")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("iTexico")] -[assembly: AssemblyProduct("")] -[assembly: AssemblyCopyright("(c) Josué Díaz")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". -// The form "{Major}.{Minor}.*" will automatically update the build and revision, -// and "{Major}.{Minor}.{Build}.*" will update just the revision. - -[assembly: AssemblyVersion("1.0.0")] - -// The following attributes are used to specify the signing key for the assembly, -// if desired. See the Mono documentation for more information about signing. - -//[assembly: AssemblyDelaySign(false)] -//[assembly: AssemblyKeyFile("")] diff --git a/Google.Maps.Utils.Droid/Transforms/EnumFields.xml b/Google.Maps.Utils.Droid/Transforms/EnumFields.xml deleted file mode 100644 index b95f58c..0000000 --- a/Google.Maps.Utils.Droid/Transforms/EnumFields.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - diff --git a/Google.Maps.Utils.Droid/Transforms/EnumMethods.xml b/Google.Maps.Utils.Droid/Transforms/EnumMethods.xml deleted file mode 100644 index 6ff72a6..0000000 --- a/Google.Maps.Utils.Droid/Transforms/EnumMethods.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Google.Maps.Utils.Droid/Transforms/Metadata.xml b/Google.Maps.Utils.Droid/Transforms/Metadata.xml deleted file mode 100644 index 7855811..0000000 --- a/Google.Maps.Utils.Droid/Transforms/Metadata.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - Android.Gms.Maps.Utils - Android.Gms.Maps.Utils.UI - Android.Gms.Maps.Utils.Data - Android.Gms.Maps.Utils.Data.Kml - Android.Gms.Maps.Utils.Quadtree - Android.Gms.Maps.Utils.Geometry - Android.Gms.Maps.Utils.HeatMaps - Android.Gms.Maps.Utils.Projection - Android.Gms.Maps.Utils.Clustering - Android.Gms.Maps.Utils.Data.GeoJson - Android.Gms.Maps.Utils.Clustering.View - Android.Gms.Maps.Utils.Clustering.Algorithm - - - public - - - public - - public - - public - diff --git a/Google.Maps.Utils.iOS/ApiDefinition.cs b/Google.Maps.Utils.iOS/ApiDefinition.cs deleted file mode 100644 index d09ac52..0000000 --- a/Google.Maps.Utils.iOS/ApiDefinition.cs +++ /dev/null @@ -1,720 +0,0 @@ -using UIKit; -using System; -using Foundation; -using Google.Maps; -using ObjCRuntime; -using CoreGraphics; -using CoreLocation; - -namespace Google.Maps.Utils -{ - // @protocol GMUClusterItem - [Protocol,Model] - [BaseType(typeof(NSObject))] - interface GMUClusterItem - { - // @required @property (readonly, nonatomic) CLLocationCoordinate2D position; - [Abstract] - [Export("position")] - CLLocationCoordinate2D Position { get; } - } - - interface IGMUClusterItem { } - - // @protocol GMUCluster - [Protocol,Model] - [BaseType(typeof(NSObject))] - interface GMUCluster - { - // @required @property (readonly, nonatomic) CLLocationCoordinate2D position; - [Abstract] - [Export("position")] - CLLocationCoordinate2D Position { get; } - - // @required @property (readonly, nonatomic) NSUInteger count; - [Abstract] - [Export("count")] - nuint Count { get; } - - // @required @property (readonly, nonatomic) NSArray> * _Nonnull items; - [Abstract] - [Export("items")] - IGMUClusterItem[] Items { get; } - } - - interface IGMUCluster{ } - - // @protocol GMUClusterAlgorithm - [Protocol,Model] - [BaseType(typeof(NSObject))] - interface GMUClusterAlgorithm - { - // @required -(void)addItems:(NSArray> * _Nonnull)items; - [Abstract] - [Export("addItems:")] - void AddItems(IGMUClusterItem[] items); - - // @required -(void)removeItem:(id _Nonnull)item; - [Abstract] - [Export("removeItem:")] - void RemoveItem(IGMUClusterItem item); - - // @required -(void)clearItems; - [Abstract] - [Export("clearItems")] - void ClearItems(); - - // @required -(NSArray> * _Nonnull)clustersAtZoom:(float)zoom; - [Abstract] - [Export("clustersAtZoom:")] - IGMUCluster[] ClustersAtZoom(float zoom); - } - - interface IGMUClusterAlgorithm { } - - // @protocol GMUClusterIconGenerator - [Protocol,Model] - [BaseType(typeof(NSObject))] - interface GMUClusterIconGenerator - { - // @required -(UIImage *)iconForSize:(NSUInteger)size; - [Abstract] - [Export("iconForSize:")] - UIImage IconForSize(nuint size); - } - - interface IGMUClusterIconGenerator{ } - - // @protocol GMUClusterRenderer - [Protocol,Model] - [BaseType(typeof(NSObject))] - interface GMUClusterRenderer - { - // @required -(void)renderClusters:(NSArray> * _Nonnull)clusters; - [Abstract] - [Export("renderClusters:")] - void RenderClusters(IGMUCluster[] clusters); - - // @required -(void)update; - [Abstract] - [Export("update")] - void Update(); - } - - interface IGMUClusterRenderer { } - - // @protocol GMUClusterManagerDelegate - [Protocol,Model] - [BaseType(typeof(NSObject))] - interface GMUClusterManagerDelegate - { - // @optional -(BOOL)clusterManager:(GMUClusterManager * _Nonnull)clusterManager didTapCluster:(id _Nonnull)cluster; - [Export("clusterManager:didTapCluster:")] - bool DidTapCluster(GMUClusterManager clusterManager, IGMUCluster cluster); - - // @optional -(BOOL)clusterManager:(GMUClusterManager * _Nonnull)clusterManager didTapClusterItem:(id _Nonnull)clusterItem; - [Export("clusterManager:didTapClusterItem:")] - bool DidTapClusterItem(GMUClusterManager clusterManager, IGMUClusterItem clusterItem); - } - - interface IGMUClusterManagerDelegate { } - - // @interface GMUClusterManager : NSObject - [BaseType(typeof(NSObject))] - interface GMUClusterManager : IMapViewDelegate - { - // -(instancetype _Nonnull)initWithMap:(GMSMapView * _Nonnull)mapView algorithm:(id _Nonnull)algorithm renderer:(id _Nonnull)renderer __attribute__((objc_designated_initializer)); - [Export("initWithMap:algorithm:renderer:")] - [DesignatedInitializer] - IntPtr Constructor(MapView mapView, IGMUClusterAlgorithm algorithm, IGMUClusterRenderer renderer); - - // @property (readonly, nonatomic) id _Nonnull algorithm; - [Export("algorithm")] - IGMUClusterAlgorithm Algorithm { get; } - - [Wrap("WeakDelegate")] - [NullAllowed] - IGMUClusterManagerDelegate Delegate { get; } - - // @property (readonly, nonatomic, weak) id _Nullable delegate; - [NullAllowed, Export("delegate", ArgumentSemantic.Weak)] - IGMUClusterManagerDelegate WeakDelegate { get; } - - [Wrap("WeakMapDelegate")] - [NullAllowed] - IMapViewDelegate MapDelegate { get; } - - // @property (readonly, nonatomic, weak) id _Nullable mapDelegate; - [NullAllowed, Export("mapDelegate", ArgumentSemantic.Weak)] - IMapViewDelegate WeakMapDelegate { get; } - - // -(void)setDelegate:(id _Nullable)delegate mapDelegate:(id _Nullable)mapDelegate; - [Export("setDelegate:mapDelegate:")] - void SetDelegate([NullAllowed] IGMUClusterManagerDelegate @delegate, [NullAllowed] IMapViewDelegate mapDelegate); - - // -(void)addItem:(id _Nonnull)item; - [Export("addItem:")] - void AddItem(IGMUClusterItem item); - - // -(void)addItems:(NSArray> * _Nonnull)items; - [Export("addItems:")] - void AddItems(IGMUClusterItem[] items); - - // -(void)removeItem:(id _Nonnull)item; - [Export("removeItem:")] - void RemoveItem(IGMUClusterItem item); - - // -(void)clearItems; - [Export("clearItems")] - void ClearItems(); - - // -(void)cluster; - [Export("cluster")] - void Cluster(); - } - - // @interface GMUDefaultClusterIconGenerator : NSObject - [BaseType(typeof(NSObject))] - interface GMUDefaultClusterIconGenerator : GMUClusterIconGenerator - { - // -(instancetype _Nonnull)initWithBuckets:(NSArray * _Nonnull)buckets; - [Export("initWithBuckets:")] - IntPtr Constructor(NSNumber[] buckets); - - // -(instancetype _Nonnull)initWithBuckets:(NSArray * _Nonnull)buckets backgroundImages:(NSArray * _Nonnull)backgroundImages; - [Export("initWithBuckets:backgroundImages:")] - IntPtr Constructor(NSNumber[] buckets, UIImage[] backgroundImages); - - // -(instancetype _Nonnull)initWithBuckets:(NSArray * _Nonnull)buckets backgroundColors:(NSArray * _Nonnull)backgroundColors; - [Export("initWithBuckets:backgroundColors:")] - IntPtr Constructor(NSNumber[] buckets, UIColor[] backgroundColors); - - // -(UIImage * _Nonnull)iconForSize:(NSUInteger)size; - [Export("iconForSize:")] - UIImage IconForSize(nuint size); - } - - // @protocol GMUClusterRendererDelegate - [Protocol,Model] - [BaseType(typeof(NSObject))] - interface GMUClusterRendererDelegate - { - // @optional -(GMSMarker * _Nullable)renderer:(id _Nonnull)renderer markerForObject:(id _Nonnull)object; - [Export("renderer:markerForObject:")] - [return: NullAllowed] - Marker MarkerForObject(IGMUClusterRenderer renderer, NSObject @object); - - // @optional -(void)renderer:(id _Nonnull)renderer willRenderMarker:(GMSMarker * _Nonnull)marker; - [Export("renderer:willRenderMarker:")] - void WillRenderMarker(IGMUClusterRenderer renderer, Marker marker); - - // @optional -(void)renderer:(id _Nonnull)renderer didRenderMarker:(GMSMarker * _Nonnull)marker; - [Export("renderer:didRenderMarker:")] - void DidRenderMarker(IGMUClusterRenderer renderer, Marker marker); - } - - interface IGMUClusterRendererDelegate { } - - // @interface GMUDefaultClusterRenderer : NSObject - [BaseType(typeof(GMUClusterRenderer), Name = "GMUDefaultClusterRenderer")] - interface GMUDefaultClusterRenderer : GMUClusterRenderer - { - // @property (nonatomic) BOOL animatesClusters; - [Export("animatesClusters")] - bool AnimatesClusters { get; set; } - - // @property (nonatomic) int zIndex; - [Export("zIndex")] - int ZIndex { get; set; } - - [Wrap("WeakDelegate")] - [NullAllowed] - IGMUClusterRendererDelegate Delegate { get; set; } - - // @property (nonatomic, weak) id _Nullable delegate; - [NullAllowed, Export("delegate", ArgumentSemantic.Weak)] - NSObject WeakDelegate { get; set; } - - // -(instancetype _Nonnull)initWithMapView:(GMSMapView * _Nonnull)mapView clusterIconGenerator:(id _Nonnull)iconGenerator; - [Export("initWithMapView:clusterIconGenerator:")] - IntPtr Constructor(MapView mapView, IGMUClusterIconGenerator iconGenerator); - - // -(BOOL)shouldRenderAsCluster:(id _Nonnull)cluster atZoom:(float)zoom; - [Export("shouldRenderAsCluster:atZoom:")] - bool ShouldRenderAsCluster(IGMUCluster cluster, float zoom); - - // @required -(void)update; - [Override] - [Export("update")] - void Update(); - - [Override] - [Export("renderClusters:")] - void RenderClusters(IGMUCluster[] clusters); - } - - // @protocol GMUGeometry - [Protocol,Model] - [BaseType(typeof(NSObject))] - interface GMUGeometry - { - // @required @property (readonly, nonatomic) NSString * _Nonnull type; - [Abstract] - [Export("type")] - string Type { get; } - } - - interface IGMUGeometry { } - - // @interface GMUStyle : NSObject - [BaseType(typeof(NSObject))] - interface GMUStyle - { - // @property (readonly, nonatomic) NSString * _Nonnull styleID; - [Export("styleID")] - string StyleID { get; } - - // @property (readonly, nonatomic) UIColor * _Nullable strokeColor; - [NullAllowed, Export("strokeColor")] - UIColor StrokeColor { get; } - - // @property (readonly, nonatomic) UIColor * _Nullable fillColor; - [NullAllowed, Export("fillColor")] - UIColor FillColor { get; } - - // @property (readonly, nonatomic) CGFloat width; - [Export("width")] - nfloat Width { get; } - - // @property (readonly, nonatomic) CGFloat scale; - [Export("scale")] - nfloat Scale { get; } - - // @property (readonly, nonatomic) CGFloat heading; - [Export("heading")] - nfloat Heading { get; } - - // @property (readonly, nonatomic) CGPoint anchor; - [Export("anchor")] - CGPoint Anchor { get; } - - // @property (readonly, nonatomic) NSString * _Nullable iconUrl; - [NullAllowed, Export("iconUrl")] - string IconUrl { get; } - - // @property (readonly, nonatomic) NSString * _Nullable title; - [NullAllowed, Export("title")] - string Title { get; } - - // @property (readonly, nonatomic) BOOL hasFill; - [Export("hasFill")] - bool HasFill { get; } - - // @property (readonly, nonatomic) BOOL hasStroke; - [Export("hasStroke")] - bool HasStroke { get; } - - // -(instancetype _Nonnull)initWithStyleID:(NSString * _Nonnull)styleID strokeColor:(UIColor * _Nullable)strokeColor fillColor:(UIColor * _Nullable)fillColor width:(CGFloat)width scale:(CGFloat)scale heading:(CGFloat)heading anchor:(CGPoint)anchor iconUrl:(NSString * _Nullable)iconUrl title:(NSString * _Nullable)title hasFill:(BOOL)hasFill hasStroke:(BOOL)hasStroke; - [Export("initWithStyleID:strokeColor:fillColor:width:scale:heading:anchor:iconUrl:title:hasFill:hasStroke:")] - IntPtr Constructor(string styleID, [NullAllowed] UIColor strokeColor, [NullAllowed] UIColor fillColor, nfloat width, nfloat scale, nfloat heading, CGPoint anchor, [NullAllowed] string iconUrl, [NullAllowed] string title, bool hasFill, bool hasStroke); - } - - // @protocol GMUGeometryContainer - [Protocol,Model] - [BaseType(typeof(NSObject))] - interface GMUGeometryContainer - { - // @required @property (readonly, nonatomic) id _Nonnull geometry; - [Abstract] - [Export("geometry")] - IGMUGeometry Geometry { get; } - - // @required @property (nonatomic) GMUStyle * _Nullable style; - [Abstract] - [NullAllowed, Export("style", ArgumentSemantic.Assign)] - GMUStyle Style { get; set; } - } - - interface IGMUGeometryContainer { } - - // @interface GMUFeature : NSObject - [BaseType(typeof(NSObject))] - interface GMUFeature : IGMUGeometryContainer - { - // @property (readonly, nonatomic) NSString * _Nullable identifier; - [NullAllowed, Export("identifier")] - string Identifier { get; } - - // @property (readonly, nonatomic) NSDictionary * _Nullable properties; - [NullAllowed, Export("properties")] - NSDictionary Properties { get; } - - // @property (readonly, nonatomic) GMSCoordinateBounds * _Nullable boundingBox; - [NullAllowed, Export("boundingBox")] - CoordinateBounds BoundingBox { get; } - - // -(instancetype _Nonnull)initWithGeometry:(id _Nonnull)geometry identifier:(NSString * _Nullable)identifier properties:(NSDictionary * _Nullable)properties boundingBox:(GMSCoordinateBounds * _Nullable)boundingBox; - [Export("initWithGeometry:identifier:properties:boundingBox:")] - IntPtr Constructor(IGMUGeometry geometry, [NullAllowed] string identifier, [NullAllowed] NSDictionary properties, [NullAllowed] CoordinateBounds boundingBox); - } - - // @interface GMUGeoJSONParser : NSObject - [BaseType(typeof(NSObject))] - interface GMUGeoJSONParser - { - // @property (readonly, nonatomic) NSArray> * _Nonnull features; - [Export("features")] - IGMUGeometryContainer[] Features { get; } - - // -(instancetype _Nonnull)initWithURL:(NSURL * _Nonnull)url; - [Export("initWithURL:")] - IntPtr Constructor(NSUrl url); - - // -(instancetype _Nonnull)initWithData:(NSData * _Nonnull)data; - [Export("initWithData:")] - IntPtr Constructor(NSData data); - - // -(instancetype _Nonnull)initWithStream:(NSInputStream * _Nonnull)stream; - [Export("initWithStream:")] - IntPtr Constructor(NSInputStream stream); - - // -(void)parse; - [Export("parse")] - void Parse(); - } - - // @interface GMUGeometryCollection : NSObject - [BaseType(typeof(NSObject))] - interface GMUGeometryCollection : IGMUGeometry - { - // @property (readonly, nonatomic) NSArray> * _Nonnull geometries; - [Export("geometries")] - IGMUGeometry[] Geometries { get; } - - // -(instancetype _Nonnull)initWithGeometries:(NSArray> * _Nonnull)geometries; - [Export("initWithGeometries:")] - IntPtr Constructor(IGMUGeometry[] geometries); - } - - // @interface GMUGeometryRenderer : NSObject - [BaseType(typeof(NSObject))] - interface GMUGeometryRenderer - { - // -(instancetype _Nonnull)initWithMap:(GMSMapView * _Nonnull)map geometries:(NSArray> * _Nonnull)geometries; - [Export("initWithMap:geometries:")] - IntPtr Constructor(MapView map, IGMUGeometryContainer[] geometries); - - // -(instancetype _Nonnull)initWithMap:(GMSMapView * _Nonnull)map geometries:(NSArray> * _Nonnull)geometries styles:(NSArray * _Nullable)styles; - [Export("initWithMap:geometries:styles:")] - IntPtr Constructor(MapView map, IGMUGeometryContainer[] geometries, [NullAllowed] GMUStyle[] styles); - - // -(void)render; - [Export("render")] - void Render(); - - // -(void)clear; - [Export("clear")] - void Clear(); - } - - // @interface GMUGradient : NSObject - [BaseType(typeof(NSObject))] - interface GMUGradient - { - // @property (readonly, nonatomic) NSUInteger mapSize; - [Export("mapSize")] - nuint MapSize { get; } - - // @property (readonly, nonatomic) NSArray * _Nonnull colors; - [Export("colors")] - UIColor[] Colors { get; } - - // @property (readonly, nonatomic) NSArray * _Nonnull startPoints; - [Export("startPoints")] - NSNumber[] StartPoints { get; } - - // -(instancetype _Nonnull)initWithColors:(NSArray * _Nonnull)colors startPoints:(NSArray * _Nonnull)startPoints colorMapSize:(NSUInteger)mapSize; - [Export("initWithColors:startPoints:colorMapSize:")] - IntPtr Constructor(UIColor[] colors, NSNumber[] startPoints, nuint mapSize); - - // -(NSArray * _Nonnull)generateColorMap; - [Export("generateColorMap")] - UIColor[] GenerateColorMap { get; } - } - - // @interface GMUGridBasedClusterAlgorithm : NSObject - [BaseType(typeof(NSObject))] - interface GMUGridBasedClusterAlgorithm : GMUClusterAlgorithm - { - } - - // @interface GMUGroundOverlay : NSObject - [BaseType(typeof(NSObject))] - interface GMUGroundOverlay : IGMUGeometry - { - // @property (readonly, nonatomic) CLLocationCoordinate2D northEast; - [Export("northEast")] - CLLocationCoordinate2D NorthEast { get; } - - // @property (readonly, nonatomic) CLLocationCoordinate2D southWest; - [Export("southWest")] - CLLocationCoordinate2D SouthWest { get; } - - // @property (readonly, nonatomic) int zIndex; - [Export("zIndex")] - int ZIndex { get; } - - // @property (readonly, nonatomic) double rotation; - [Export("rotation")] - double Rotation { get; } - - // @property (readonly, nonatomic) NSString * _Nonnull href; - [Export("href")] - string Href { get; } - - // -(instancetype _Nonnull)initWithCoordinate:(CLLocationCoordinate2D)northEast southWest:(CLLocationCoordinate2D)southWest zIndex:(int)zIndex rotation:(double)rotation href:(NSString * _Nonnull)href; - [Export("initWithCoordinate:southWest:zIndex:rotation:href:")] - IntPtr Constructor(CLLocationCoordinate2D northEast, CLLocationCoordinate2D southWest, int zIndex, double rotation, string href); - } - - // @protocol GQTPointQuadTreeItem - [Protocol,Model] - [BaseType(typeof(NSObject))] - interface GQTPointQuadTreeItem - { - // @required -(GQTPoint)point; - [Abstract] - [Export("point")] - GQTPoint Point { get; } - } - - interface IGQTPointQuadTreeItem { } - - // @interface GMUWeightedLatLng : NSObject - [BaseType(typeof(NSObject))] - interface GMUWeightedLatLng : IGQTPointQuadTreeItem - { - // @property (readonly, nonatomic) float intensity; - [Export("intensity")] - float Intensity { get; } - - // -(instancetype _Nonnull)initWithCoordinate:(CLLocationCoordinate2D)coordinate intensity:(float)intensity; - [Export("initWithCoordinate:intensity:")] - IntPtr Constructor(CLLocationCoordinate2D coordinate, float intensity); - } - - // @interface GMUHeatmapTileLayer : GMSSyncTileLayer - [BaseType(typeof(SyncTileLayer))] - interface GMUHeatmapTileLayer - { - // @property (copy, nonatomic) NSArray * _Nonnull weightedData; - [Export("weightedData", ArgumentSemantic.Copy)] - GMUWeightedLatLng[] WeightedData { get; set; } - - // @property (nonatomic) NSUInteger radius; - [Export("radius")] - nuint Radius { get; set; } - - // @property (nonatomic) GMUGradient * _Nonnull gradient; - [Export("gradient", ArgumentSemantic.Assign)] - GMUGradient Gradient { get; set; } - - // @property (nonatomic) NSUInteger minimumZoomIntensity; - [Export("minimumZoomIntensity")] - nuint MinimumZoomIntensity { get; set; } - - // @property (nonatomic) NSUInteger maximumZoomIntensity; - [Export("maximumZoomIntensity")] - nuint MaximumZoomIntensity { get; set; } - } - - // @interface GMUKMLParser : NSObject - [BaseType(typeof(NSObject))] - interface GMUKMLParser - { - // @property (readonly, nonatomic) NSArray> * _Nonnull placemarks; - [Export("placemarks")] - IGMUGeometryContainer[] Placemarks { get; } - - // @property (readonly, nonatomic) NSArray * _Nonnull styles; - [Export("styles")] - GMUStyle[] Styles { get; } - - // -(void)parse; - [Export("parse")] - void Parse(); - - // -(instancetype _Nonnull)initWithURL:(NSURL * _Nonnull)url; - [Export("initWithURL:")] - IntPtr Constructor(NSUrl url); - - // -(instancetype _Nonnull)initWithData:(NSData * _Nonnull)data; - [Export("initWithData:")] - IntPtr Constructor(NSData data); - - // -(instancetype _Nonnull)initWithStream:(NSInputStream * _Nonnull)stream; - [Export("initWithStream:")] - IntPtr Constructor(NSInputStream stream); - } - - // @interface GMULineString : NSObject - [BaseType(typeof(NSObject))] - interface GMULineString : IGMUGeometry - { - // @property (readonly, nonatomic) GMSPath * _Nonnull path; - [Export("path")] - Path Path { get; } - - // -(instancetype _Nonnull)initWithPath:(GMSPath * _Nonnull)path; - [Export("initWithPath:")] - IntPtr Constructor(Path path); - } - - // @interface GMUNonHierarchicalDistanceBasedAlgorithm : NSObject - [BaseType(typeof(NSObject))] - interface GMUNonHierarchicalDistanceBasedAlgorithm : GMUClusterAlgorithm - { - } - - // @interface GMUPlacemark : NSObject - [BaseType(typeof(NSObject))] - interface GMUPlacemark : IGMUGeometryContainer - { - // @property (readonly, nonatomic) NSString * _Nullable title; - [NullAllowed, Export("title")] - string Title { get; } - - // @property (readonly, nonatomic) NSString * _Nullable snippet; - [NullAllowed, Export("snippet")] - string Snippet { get; } - - // @property (readonly, nonatomic) NSString * _Nullable styleUrl; - [NullAllowed, Export("styleUrl")] - string StyleUrl { get; } - - // -(instancetype _Nonnull)initWithGeometry:(id _Nullable)geometry title:(NSString * _Nullable)title snippet:(NSString * _Nullable)snippet style:(GMUStyle * _Nullable)style styleUrl:(NSString * _Nullable)styleUrl; - [Export("initWithGeometry:title:snippet:style:styleUrl:")] - IntPtr Constructor([NullAllowed] IGMUGeometry geometry, [NullAllowed] string title, [NullAllowed] string snippet, [NullAllowed] GMUStyle style, [NullAllowed] string styleUrl); - } - - // @interface GMUPoint : NSObject - [BaseType(typeof(NSObject))] - interface GMUPoint : IGMUGeometry - { - // @property (readonly, nonatomic) CLLocationCoordinate2D coordinate; - [Export("coordinate")] - CLLocationCoordinate2D Coordinate { get; } - - // -(instancetype _Nonnull)initWithCoordinate:(CLLocationCoordinate2D)coordinate; - [Export("initWithCoordinate:")] - IntPtr Constructor(CLLocationCoordinate2D coordinate); - } - - // @interface GMUPolygon : NSObject - [BaseType(typeof(NSObject))] - interface GMUPolygon : IGMUGeometry - { - // @property (readonly, nonatomic) NSArray * _Nonnull paths; - [Export("paths")] - Path[] Paths { get; } - - // -(instancetype _Nonnull)initWithPaths:(NSArray * _Nonnull)paths; - [Export("initWithPaths:")] - IntPtr Constructor(Path[] paths); - } - - // @interface GMUSimpleClusterAlgorithm : NSObject - [BaseType(typeof(NSObject))] - interface GMUSimpleClusterAlgorithm : GMUClusterAlgorithm - { - } - - // @interface GMUStaticCluster : NSObject - [BaseType(typeof(NSObject))] - interface GMUStaticCluster : IGMUCluster - { - // -(instancetype _Nonnull)initWithPosition:(CLLocationCoordinate2D)position __attribute__((objc_designated_initializer)); - [Export("initWithPosition:")] - [DesignatedInitializer] - IntPtr Constructor(CLLocationCoordinate2D position); - - // @property (readonly, nonatomic) CLLocationCoordinate2D position; - [Export("position")] - CLLocationCoordinate2D Position { get; } - - // @property (readonly, nonatomic) NSUInteger count; - [Export("count")] - nuint Count { get; } - - // @property (readonly, nonatomic) NSArray> * _Nonnull items; - [Export("items")] - IGMUClusterItem[] Items { get; } - - // -(void)addItem:(id _Nonnull)item; - [Export("addItem:")] - void AddItem(IGMUClusterItem item); - - // -(void)removeItem:(id _Nonnull)item; - [Export("removeItem:")] - void RemoveItem(IGMUClusterItem item); - } - - // @interface GMUWrappingDictionaryKey : NSObject - [BaseType(typeof(NSObject))] - interface GMUWrappingDictionaryKey : INSCopying - { - // -(instancetype)initWithObject:(id)object; - [Export("initWithObject:")] - IntPtr Constructor(NSObject @object); - } - - // @interface GQTPointQuadTree : NSObject - [BaseType(typeof(NSObject))] - interface GQTPointQuadTree - { - // -(id)initWithBounds:(GQTBounds)bounds; - [Export("initWithBounds:")] - IntPtr Constructor(GQTBounds bounds); - - // -(BOOL)add:(id)item; - [Export("add:")] - bool Add(IGQTPointQuadTreeItem item); - - // -(BOOL)remove:(id)item; - [Export("remove:")] - bool Remove(IGQTPointQuadTreeItem item); - - // -(void)clear; - [Export("clear")] - void Clear(); - - // -(NSArray *)searchWithBounds:(GQTBounds)bounds; - [Export("searchWithBounds:")] - NSObject[] SearchWithBounds(GQTBounds bounds); - - // -(NSUInteger)count; - [Export("count")] - nuint Count { get; } - } - - // @interface GQTPointQuadTreeChild : NSObject - [BaseType(typeof(NSObject))] - interface GQTPointQuadTreeChild - { - // -(void)add:(id)item withOwnBounds:(GQTBounds)bounds atDepth:(NSUInteger)depth; - [Export("add:withOwnBounds:atDepth:")] - void Add(IGQTPointQuadTreeItem item, GQTBounds bounds, nuint depth); - - // -(BOOL)remove:(id)item withOwnBounds:(GQTBounds)bounds; - [Export("remove:withOwnBounds:")] - bool Remove(IGQTPointQuadTreeItem item, GQTBounds bounds); - - // -(void)searchWithBounds:(GQTBounds)searchBounds withOwnBounds:(GQTBounds)ownBounds results:(NSMutableArray *)accumulator; - [Export("searchWithBounds:withOwnBounds:results:")] - void SearchWithBounds(GQTBounds searchBounds, GQTBounds ownBounds, NSMutableArray accumulator); - - // -(void)splitWithOwnBounds:(GQTBounds)ownBounds atDepth:(NSUInteger)depth; - [Export("splitWithOwnBounds:atDepth:")] - void SplitWithOwnBounds(GQTBounds ownBounds, nuint depth); - } -} diff --git a/Google.Maps.Utils.iOS/External/libGoogleMapsUtils.a b/Google.Maps.Utils.iOS/External/libGoogleMapsUtils.a deleted file mode 100755 index 775275d..0000000 Binary files a/Google.Maps.Utils.iOS/External/libGoogleMapsUtils.a and /dev/null differ diff --git a/Google.Maps.Utils.iOS/Structs.cs b/Google.Maps.Utils.iOS/Structs.cs deleted file mode 100644 index 2419762..0000000 --- a/Google.Maps.Utils.iOS/Structs.cs +++ /dev/null @@ -1,25 +0,0 @@ -using System; -using System.Runtime.InteropServices; - -namespace Google.Maps.Utils -{ - [StructLayout (LayoutKind.Sequential)] - public struct GQTPoint - { - public double x; - - public double y; - } - - [StructLayout (LayoutKind.Sequential)] - public struct GQTBounds - { - public double minX; - - public double minY; - - public double maxX; - - public double maxY; - } -} \ No newline at end of file diff --git a/Nugets/Xamarin.Google.Maps.Utils.nuspec b/Nugets/Xamarin.Google.Maps.Utils.nuspec new file mode 100644 index 0000000..6d26abf --- /dev/null +++ b/Nugets/Xamarin.Google.Maps.Utils.nuspec @@ -0,0 +1,62 @@ + + + + Xamarin.Google.Maps.Utils + 1.0.1 + Xamarin.Google.Maps.Utils + Josué Díaz + Josué Díaz + false + icon.png + LICENSE + https://aka.ms/deprecateLicenseUrl + https://github.com/JosueDM94/Xamarin.Google.Maps.Utils + Set of Xamarin bindings of Google Maps Utility for Xamarin.Android and Xamarin.iOS + Set of Xamarin bindings of Google Maps Utility for Xamarin.Android and Xamarin.iOS + Suppport AndroidX packages: +[iOS] GoogleMapsUtils 2.1.0 +[Android] GoogleMapsUtils 0.6.0 + Copyright Josué Díaz © 2022 + en-US + xamarin, ios, android, google, maps, utils, utility, play services + README.md + + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/README.md b/README.md index 7f2bc50..cbad6fe 100644 --- a/README.md +++ b/README.md @@ -1,32 +1,106 @@ # Xamarin.Google.Maps.Utils -The library can be used as in the included samples. +[![NuGet Badge](https://buildstats.info/nuget/Xamarin.Google.Maps.Utils)](https://www.nuget.org/packages/Xamarin.Google.Maps.Utils/) -Nuget plugin forXamarin platform can be downloaded from [Xamarin Google Maps Utils][nuget] +This is a set of Xamarin bindings of Google Maps Utils for iOS and Android -**Note** - - That you'll also need to initialize Google Maps with an API key in the AppDelegate. - - That you'll also need to initialize Google Maps with an API key in the Android Manifest. - - Using GMSPolyline is possible to decode and endoce Polyines with iOS +This open-source library contains utilities that are useful for a wide range of applications using the [Google Maps Android API][android-site] and [Google Maps SDK for iOS][ios-site]. -## DOC Android +## Table of Contents ## -Samples and other information about Android Maps Utils on official [Google Developers site][devsite-guide-android] +- [Installation](#installation) +- [Example](#example) +- [Android](#google-maps-utils-android) +- [iOS](#google-maps-utils-ios) -## DOC iOS +## Installation ## -Samples and other information about iOS Maps Utils on official [Google Developers site][devsite-guide-ios] +The latest stable release of the AffirmSDK is [available on NuGet](https://www.nuget.org/packages/Xamarin.Google.Maps.Utils). -### Features -1. Manage marker clusters -2. Import GeoJSON onto your map -3. Import KML onto your map -4. Add heatmaps to your map -5. Customize markers via bubble icons -6. Encode and decode polylines -7. Calculate distances, areas and headings via spherical geometry +## Example ## + +A demo app that integrates Affirm is included in the repo. You may clone the [GitHub repository](https://github.com/JosueDM94/Xamarin.Google.Maps.Utils) into a new Visual Studio project folder and run the Examples project. + +## Google Maps Utils Android ## + +## Usage Overview + +- **Marker clustering** — handles the display of a large number of points +- **Heat maps** — display a large number of points as a heat map +- **IconGenerator** — display text on your Markers +- **Poly decoding and encoding** — compact encoding for paths, + interoperability with Maps API web services +- **Spherical geometry** — for example: computeDistance, computeHeading, + computeArea +- **KML** — displays KML data +- **GeoJSON** — displays and styles GeoJSON data + +

+ +For more information, check out the detailed guide on the +[Google Developers site][devsite-guide-android]. You can also view the generated +[reference docs][javadoc] for a full list of classes and their methods. + +## Google Maps Utils iOS ## + +## Usage Overview + +- **Marker clustering** — handles the display of a large number of points +- **Quadtree data structure** - indexes 2D geometry points and performs +2D range queries + +

+ +- **Geometry libraries** - KML and GeoJSON rendering +

+ +- **Heatmaps** - Heatmap rendering +

+ +## Customize cluster and item markers + +As of version 1.1.0 we have added new features for easy customization of markers. There is a new delegate [GMUClusterRendererDelegate][gmuclusterrendererdelegate] on ```GMUDefaultClusterRenderer``` which allows developers to customize properties of a marker before and after it is added to the map. Using this new delegate you can achieve something cool like this: + +

+ + +See [CustomMarkerViewController][custommarkerviewcontroller] for the +implementation. + +## KML and GeoJSON rendering + +As of version 2.0.0 we have added new features for rendering KML and GeoJSON inputs. This first +version supports common geometries like Point, Polyline, Polygon, GroundOverlay. Please note that +this version does not support interaction with the rendered geometries. + +The following screenshot shows a demo of a KML file being rendered on the map. See +[KMLViewController][kmlviewcontroller] for how to use the new APIs. + +

+ +## Heatmap rendering + +As of version 2.1.0 we have added new features for rendering heatmaps. +Heatmaps make it easy for viewers to understand the distribution and relative +intensity of data points on a map. Rather than placing a marker at each +location, heatmaps use color to represent the distribution of the data. + +In the example below, red represents areas of high concentration of police +stations in Victoria, Australia. + +

+A map with a heatmap showing location of police stations +

+ +For more information, check out the detailed guide on the +[Google Developers site][devsite-guide-ios]. -[nuget]: https://www.nuget.org/packages/Xamarin.Google.Maps.Utils -[library-repo]: https://github.com/googlemaps/google-maps-ios-utils [devsite-guide-ios]: https://developers.google.com/maps/documentation/ios-sdk/utility/ [devsite-guide-android]: https://developers.google.com/maps/documentation/android-api/utility/ +[javadoc]: http://googlemaps.github.io/android-maps-utils/javadoc/ +[android-site]: https://developer.android.com/training/maps/index.html +[ios-site]: https://developers.google.com/maps/documentation/ios-sdk +[kmlviewcontroller]: https://github.com/JosueDM94/Xamarin.Google.Maps.Utils/blob/master/Samples/Sample.iOS/UI/KMLViewController.cs +[custommarkerviewcontroller]: https://github.com/JosueDM94/Xamarin.Google.Maps.Utils/blob/master/Samples/Sample.iOS/UI/CustomMarkerViewController.cs +[gmuclusterrendererdelegate]: https://github.com/googlemaps/google-maps-ios-utils/blob/master/src/Clustering/View/GMUDefaultClusterRenderer.h \ No newline at end of file diff --git a/Sample.AndroidX/Resources/Resource.designer.cs b/Sample.AndroidX/Resources/Resource.designer.cs deleted file mode 100644 index 60c17ea..0000000 --- a/Sample.AndroidX/Resources/Resource.designer.cs +++ /dev/null @@ -1,10856 +0,0 @@ -#pragma warning disable 1591 -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -[assembly: global::Android.Runtime.ResourceDesignerAttribute("Sample.AndroidX.Resource", IsApplication=true)] - -namespace Sample.AndroidX -{ - - - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Android.Build.Tasks", "1.0.0.0")] - public partial class Resource - { - - static Resource() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - public static void UpdateIdValues() - { - } - - public partial class Animation - { - - // aapt resource value: 0x7F010000 - public const int abc_fade_in = 2130771968; - - // aapt resource value: 0x7F010001 - public const int abc_fade_out = 2130771969; - - // aapt resource value: 0x7F010002 - public const int abc_grow_fade_in_from_bottom = 2130771970; - - // aapt resource value: 0x7F010003 - public const int abc_popup_enter = 2130771971; - - // aapt resource value: 0x7F010004 - public const int abc_popup_exit = 2130771972; - - // aapt resource value: 0x7F010005 - public const int abc_shrink_fade_out_from_bottom = 2130771973; - - // aapt resource value: 0x7F010006 - public const int abc_slide_in_bottom = 2130771974; - - // aapt resource value: 0x7F010007 - public const int abc_slide_in_top = 2130771975; - - // aapt resource value: 0x7F010008 - public const int abc_slide_out_bottom = 2130771976; - - // aapt resource value: 0x7F010009 - public const int abc_slide_out_top = 2130771977; - - // aapt resource value: 0x7F01000A - public const int abc_tooltip_enter = 2130771978; - - // aapt resource value: 0x7F01000B - public const int abc_tooltip_exit = 2130771979; - - // aapt resource value: 0x7F01000C - public const int btn_checkbox_to_checked_box_inner_merged_animation = 2130771980; - - // aapt resource value: 0x7F01000D - public const int btn_checkbox_to_checked_box_outer_merged_animation = 2130771981; - - // aapt resource value: 0x7F01000E - public const int btn_checkbox_to_checked_icon_null_animation = 2130771982; - - // aapt resource value: 0x7F01000F - public const int btn_checkbox_to_unchecked_box_inner_merged_animation = 2130771983; - - // aapt resource value: 0x7F010010 - public const int btn_checkbox_to_unchecked_check_path_merged_animation = 2130771984; - - // aapt resource value: 0x7F010011 - public const int btn_checkbox_to_unchecked_icon_null_animation = 2130771985; - - // aapt resource value: 0x7F010012 - public const int btn_radio_to_off_mtrl_dot_group_animation = 2130771986; - - // aapt resource value: 0x7F010013 - public const int btn_radio_to_off_mtrl_ring_outer_animation = 2130771987; - - // aapt resource value: 0x7F010014 - public const int btn_radio_to_off_mtrl_ring_outer_path_animation = 2130771988; - - // aapt resource value: 0x7F010015 - public const int btn_radio_to_on_mtrl_dot_group_animation = 2130771989; - - // aapt resource value: 0x7F010016 - public const int btn_radio_to_on_mtrl_ring_outer_animation = 2130771990; - - // aapt resource value: 0x7F010017 - public const int btn_radio_to_on_mtrl_ring_outer_path_animation = 2130771991; - - // aapt resource value: 0x7F010018 - public const int design_bottom_sheet_slide_in = 2130771992; - - // aapt resource value: 0x7F010019 - public const int design_bottom_sheet_slide_out = 2130771993; - - // aapt resource value: 0x7F01001A - public const int design_snackbar_in = 2130771994; - - // aapt resource value: 0x7F01001B - public const int design_snackbar_out = 2130771995; - - // aapt resource value: 0x7F01001C - public const int fragment_close_enter = 2130771996; - - // aapt resource value: 0x7F01001D - public const int fragment_close_exit = 2130771997; - - // aapt resource value: 0x7F01001E - public const int fragment_fade_enter = 2130771998; - - // aapt resource value: 0x7F01001F - public const int fragment_fade_exit = 2130771999; - - // aapt resource value: 0x7F010020 - public const int fragment_fast_out_extra_slow_in = 2130772000; - - // aapt resource value: 0x7F010021 - public const int fragment_open_enter = 2130772001; - - // aapt resource value: 0x7F010022 - public const int fragment_open_exit = 2130772002; - - static Animation() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Animation() - { - } - } - - public partial class Animator - { - - // aapt resource value: 0x7F020000 - public const int design_appbar_state_list_animator = 2130837504; - - // aapt resource value: 0x7F020001 - public const int design_fab_hide_motion_spec = 2130837505; - - // aapt resource value: 0x7F020002 - public const int design_fab_show_motion_spec = 2130837506; - - // aapt resource value: 0x7F020003 - public const int mtrl_btn_state_list_anim = 2130837507; - - // aapt resource value: 0x7F020004 - public const int mtrl_btn_unelevated_state_list_anim = 2130837508; - - // aapt resource value: 0x7F020005 - public const int mtrl_chip_state_list_anim = 2130837509; - - // aapt resource value: 0x7F020006 - public const int mtrl_fab_hide_motion_spec = 2130837510; - - // aapt resource value: 0x7F020007 - public const int mtrl_fab_show_motion_spec = 2130837511; - - // aapt resource value: 0x7F020008 - public const int mtrl_fab_transformation_sheet_collapse_spec = 2130837512; - - // aapt resource value: 0x7F020009 - public const int mtrl_fab_transformation_sheet_expand_spec = 2130837513; - - static Animator() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Animator() - { - } - } - - public partial class Array - { - - // aapt resource value: 0x7F030000 - public const int heatmaps_datasets_array = 2130903040; - - static Array() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Array() - { - } - } - - public partial class Attribute - { - - // aapt resource value: 0x7F040000 - public const int actionBarDivider = 2130968576; - - // aapt resource value: 0x7F040001 - public const int actionBarItemBackground = 2130968577; - - // aapt resource value: 0x7F040002 - public const int actionBarPopupTheme = 2130968578; - - // aapt resource value: 0x7F040003 - public const int actionBarSize = 2130968579; - - // aapt resource value: 0x7F040004 - public const int actionBarSplitStyle = 2130968580; - - // aapt resource value: 0x7F040005 - public const int actionBarStyle = 2130968581; - - // aapt resource value: 0x7F040006 - public const int actionBarTabBarStyle = 2130968582; - - // aapt resource value: 0x7F040007 - public const int actionBarTabStyle = 2130968583; - - // aapt resource value: 0x7F040008 - public const int actionBarTabTextStyle = 2130968584; - - // aapt resource value: 0x7F040009 - public const int actionBarTheme = 2130968585; - - // aapt resource value: 0x7F04000A - public const int actionBarWidgetTheme = 2130968586; - - // aapt resource value: 0x7F04000B - public const int actionButtonStyle = 2130968587; - - // aapt resource value: 0x7F04000C - public const int actionDropDownStyle = 2130968588; - - // aapt resource value: 0x7F04000D - public const int actionLayout = 2130968589; - - // aapt resource value: 0x7F04000E - public const int actionMenuTextAppearance = 2130968590; - - // aapt resource value: 0x7F04000F - public const int actionMenuTextColor = 2130968591; - - // aapt resource value: 0x7F040010 - public const int actionModeBackground = 2130968592; - - // aapt resource value: 0x7F040011 - public const int actionModeCloseButtonStyle = 2130968593; - - // aapt resource value: 0x7F040012 - public const int actionModeCloseDrawable = 2130968594; - - // aapt resource value: 0x7F040013 - public const int actionModeCopyDrawable = 2130968595; - - // aapt resource value: 0x7F040014 - public const int actionModeCutDrawable = 2130968596; - - // aapt resource value: 0x7F040015 - public const int actionModeFindDrawable = 2130968597; - - // aapt resource value: 0x7F040016 - public const int actionModePasteDrawable = 2130968598; - - // aapt resource value: 0x7F040017 - public const int actionModePopupWindowStyle = 2130968599; - - // aapt resource value: 0x7F040018 - public const int actionModeSelectAllDrawable = 2130968600; - - // aapt resource value: 0x7F040019 - public const int actionModeShareDrawable = 2130968601; - - // aapt resource value: 0x7F04001A - public const int actionModeSplitBackground = 2130968602; - - // aapt resource value: 0x7F04001B - public const int actionModeStyle = 2130968603; - - // aapt resource value: 0x7F04001C - public const int actionModeWebSearchDrawable = 2130968604; - - // aapt resource value: 0x7F04001D - public const int actionOverflowButtonStyle = 2130968605; - - // aapt resource value: 0x7F04001E - public const int actionOverflowMenuStyle = 2130968606; - - // aapt resource value: 0x7F04001F - public const int actionProviderClass = 2130968607; - - // aapt resource value: 0x7F040020 - public const int actionViewClass = 2130968608; - - // aapt resource value: 0x7F040021 - public const int activityChooserViewStyle = 2130968609; - - // aapt resource value: 0x7F040022 - public const int alertDialogButtonGroupStyle = 2130968610; - - // aapt resource value: 0x7F040023 - public const int alertDialogCenterButtons = 2130968611; - - // aapt resource value: 0x7F040024 - public const int alertDialogStyle = 2130968612; - - // aapt resource value: 0x7F040025 - public const int alertDialogTheme = 2130968613; - - // aapt resource value: 0x7F040026 - public const int allowStacking = 2130968614; - - // aapt resource value: 0x7F040027 - public const int alpha = 2130968615; - - // aapt resource value: 0x7F040028 - public const int alphabeticModifiers = 2130968616; - - // aapt resource value: 0x7F040029 - public const int ambientEnabled = 2130968617; - - // aapt resource value: 0x7F04002A - public const int arrowHeadLength = 2130968618; - - // aapt resource value: 0x7F04002B - public const int arrowShaftLength = 2130968619; - - // aapt resource value: 0x7F04002C - public const int autoCompleteTextViewStyle = 2130968620; - - // aapt resource value: 0x7F04002D - public const int autoSizeMaxTextSize = 2130968621; - - // aapt resource value: 0x7F04002E - public const int autoSizeMinTextSize = 2130968622; - - // aapt resource value: 0x7F04002F - public const int autoSizePresetSizes = 2130968623; - - // aapt resource value: 0x7F040030 - public const int autoSizeStepGranularity = 2130968624; - - // aapt resource value: 0x7F040031 - public const int autoSizeTextType = 2130968625; - - // aapt resource value: 0x7F040032 - public const int background = 2130968626; - - // aapt resource value: 0x7F040033 - public const int backgroundSplit = 2130968627; - - // aapt resource value: 0x7F040034 - public const int backgroundStacked = 2130968628; - - // aapt resource value: 0x7F040035 - public const int backgroundTint = 2130968629; - - // aapt resource value: 0x7F040036 - public const int backgroundTintMode = 2130968630; - - // aapt resource value: 0x7F040037 - public const int barLength = 2130968631; - - // aapt resource value: 0x7F040038 - public const int behavior_autoHide = 2130968632; - - // aapt resource value: 0x7F040039 - public const int behavior_fitToContents = 2130968633; - - // aapt resource value: 0x7F04003A - public const int behavior_hideable = 2130968634; - - // aapt resource value: 0x7F04003B - public const int behavior_overlapTop = 2130968635; - - // aapt resource value: 0x7F04003C - public const int behavior_peekHeight = 2130968636; - - // aapt resource value: 0x7F04003D - public const int behavior_skipCollapsed = 2130968637; - - // aapt resource value: 0x7F04003F - public const int borderlessButtonStyle = 2130968639; - - // aapt resource value: 0x7F04003E - public const int borderWidth = 2130968638; - - // aapt resource value: 0x7F040040 - public const int bottomAppBarStyle = 2130968640; - - // aapt resource value: 0x7F040041 - public const int bottomNavigationStyle = 2130968641; - - // aapt resource value: 0x7F040042 - public const int bottomSheetDialogTheme = 2130968642; - - // aapt resource value: 0x7F040043 - public const int bottomSheetStyle = 2130968643; - - // aapt resource value: 0x7F040044 - public const int boxBackgroundColor = 2130968644; - - // aapt resource value: 0x7F040045 - public const int boxBackgroundMode = 2130968645; - - // aapt resource value: 0x7F040046 - public const int boxCollapsedPaddingTop = 2130968646; - - // aapt resource value: 0x7F040047 - public const int boxCornerRadiusBottomEnd = 2130968647; - - // aapt resource value: 0x7F040048 - public const int boxCornerRadiusBottomStart = 2130968648; - - // aapt resource value: 0x7F040049 - public const int boxCornerRadiusTopEnd = 2130968649; - - // aapt resource value: 0x7F04004A - public const int boxCornerRadiusTopStart = 2130968650; - - // aapt resource value: 0x7F04004B - public const int boxStrokeColor = 2130968651; - - // aapt resource value: 0x7F04004C - public const int boxStrokeWidth = 2130968652; - - // aapt resource value: 0x7F04004D - public const int buttonBarButtonStyle = 2130968653; - - // aapt resource value: 0x7F04004E - public const int buttonBarNegativeButtonStyle = 2130968654; - - // aapt resource value: 0x7F04004F - public const int buttonBarNeutralButtonStyle = 2130968655; - - // aapt resource value: 0x7F040050 - public const int buttonBarPositiveButtonStyle = 2130968656; - - // aapt resource value: 0x7F040051 - public const int buttonBarStyle = 2130968657; - - // aapt resource value: 0x7F040052 - public const int buttonCompat = 2130968658; - - // aapt resource value: 0x7F040053 - public const int buttonGravity = 2130968659; - - // aapt resource value: 0x7F040054 - public const int buttonIconDimen = 2130968660; - - // aapt resource value: 0x7F040055 - public const int buttonPanelSideLayout = 2130968661; - - // aapt resource value: 0x7F040056 - public const int buttonSize = 2130968662; - - // aapt resource value: 0x7F040057 - public const int buttonStyle = 2130968663; - - // aapt resource value: 0x7F040058 - public const int buttonStyleSmall = 2130968664; - - // aapt resource value: 0x7F040059 - public const int buttonTint = 2130968665; - - // aapt resource value: 0x7F04005A - public const int buttonTintMode = 2130968666; - - // aapt resource value: 0x7F04005B - public const int cameraBearing = 2130968667; - - // aapt resource value: 0x7F04005C - public const int cameraMaxZoomPreference = 2130968668; - - // aapt resource value: 0x7F04005D - public const int cameraMinZoomPreference = 2130968669; - - // aapt resource value: 0x7F04005E - public const int cameraTargetLat = 2130968670; - - // aapt resource value: 0x7F04005F - public const int cameraTargetLng = 2130968671; - - // aapt resource value: 0x7F040060 - public const int cameraTilt = 2130968672; - - // aapt resource value: 0x7F040061 - public const int cameraZoom = 2130968673; - - // aapt resource value: 0x7F040062 - public const int cardBackgroundColor = 2130968674; - - // aapt resource value: 0x7F040063 - public const int cardCornerRadius = 2130968675; - - // aapt resource value: 0x7F040064 - public const int cardElevation = 2130968676; - - // aapt resource value: 0x7F040065 - public const int cardMaxElevation = 2130968677; - - // aapt resource value: 0x7F040066 - public const int cardPreventCornerOverlap = 2130968678; - - // aapt resource value: 0x7F040067 - public const int cardUseCompatPadding = 2130968679; - - // aapt resource value: 0x7F040068 - public const int cardViewStyle = 2130968680; - - // aapt resource value: 0x7F040069 - public const int checkboxStyle = 2130968681; - - // aapt resource value: 0x7F04006A - public const int checkedChip = 2130968682; - - // aapt resource value: 0x7F04006B - public const int checkedIcon = 2130968683; - - // aapt resource value: 0x7F04006C - public const int checkedIconEnabled = 2130968684; - - // aapt resource value: 0x7F04006D - public const int checkedIconVisible = 2130968685; - - // aapt resource value: 0x7F04006E - public const int checkedTextViewStyle = 2130968686; - - // aapt resource value: 0x7F04006F - public const int chipBackgroundColor = 2130968687; - - // aapt resource value: 0x7F040070 - public const int chipCornerRadius = 2130968688; - - // aapt resource value: 0x7F040071 - public const int chipEndPadding = 2130968689; - - // aapt resource value: 0x7F040072 - public const int chipGroupStyle = 2130968690; - - // aapt resource value: 0x7F040073 - public const int chipIcon = 2130968691; - - // aapt resource value: 0x7F040074 - public const int chipIconEnabled = 2130968692; - - // aapt resource value: 0x7F040075 - public const int chipIconSize = 2130968693; - - // aapt resource value: 0x7F040076 - public const int chipIconTint = 2130968694; - - // aapt resource value: 0x7F040077 - public const int chipIconVisible = 2130968695; - - // aapt resource value: 0x7F040078 - public const int chipMinHeight = 2130968696; - - // aapt resource value: 0x7F040079 - public const int chipSpacing = 2130968697; - - // aapt resource value: 0x7F04007A - public const int chipSpacingHorizontal = 2130968698; - - // aapt resource value: 0x7F04007B - public const int chipSpacingVertical = 2130968699; - - // aapt resource value: 0x7F04007C - public const int chipStandaloneStyle = 2130968700; - - // aapt resource value: 0x7F04007D - public const int chipStartPadding = 2130968701; - - // aapt resource value: 0x7F04007E - public const int chipStrokeColor = 2130968702; - - // aapt resource value: 0x7F04007F - public const int chipStrokeWidth = 2130968703; - - // aapt resource value: 0x7F040080 - public const int chipStyle = 2130968704; - - // aapt resource value: 0x7F040081 - public const int circleCrop = 2130968705; - - // aapt resource value: 0x7F040082 - public const int closeIcon = 2130968706; - - // aapt resource value: 0x7F040083 - public const int closeIconEnabled = 2130968707; - - // aapt resource value: 0x7F040084 - public const int closeIconEndPadding = 2130968708; - - // aapt resource value: 0x7F040085 - public const int closeIconSize = 2130968709; - - // aapt resource value: 0x7F040086 - public const int closeIconStartPadding = 2130968710; - - // aapt resource value: 0x7F040087 - public const int closeIconTint = 2130968711; - - // aapt resource value: 0x7F040088 - public const int closeIconVisible = 2130968712; - - // aapt resource value: 0x7F040089 - public const int closeItemLayout = 2130968713; - - // aapt resource value: 0x7F04008A - public const int collapseContentDescription = 2130968714; - - // aapt resource value: 0x7F04008C - public const int collapsedTitleGravity = 2130968716; - - // aapt resource value: 0x7F04008D - public const int collapsedTitleTextAppearance = 2130968717; - - // aapt resource value: 0x7F04008B - public const int collapseIcon = 2130968715; - - // aapt resource value: 0x7F04008E - public const int color = 2130968718; - - // aapt resource value: 0x7F04008F - public const int colorAccent = 2130968719; - - // aapt resource value: 0x7F040090 - public const int colorBackgroundFloating = 2130968720; - - // aapt resource value: 0x7F040091 - public const int colorButtonNormal = 2130968721; - - // aapt resource value: 0x7F040092 - public const int colorControlActivated = 2130968722; - - // aapt resource value: 0x7F040093 - public const int colorControlHighlight = 2130968723; - - // aapt resource value: 0x7F040094 - public const int colorControlNormal = 2130968724; - - // aapt resource value: 0x7F040095 - public const int colorError = 2130968725; - - // aapt resource value: 0x7F040096 - public const int colorPrimary = 2130968726; - - // aapt resource value: 0x7F040097 - public const int colorPrimaryDark = 2130968727; - - // aapt resource value: 0x7F040098 - public const int colorScheme = 2130968728; - - // aapt resource value: 0x7F040099 - public const int colorSecondary = 2130968729; - - // aapt resource value: 0x7F04009A - public const int colorSwitchThumbNormal = 2130968730; - - // aapt resource value: 0x7F04009B - public const int commitIcon = 2130968731; - - // aapt resource value: 0x7F04009C - public const int contentDescription = 2130968732; - - // aapt resource value: 0x7F04009D - public const int contentInsetEnd = 2130968733; - - // aapt resource value: 0x7F04009E - public const int contentInsetEndWithActions = 2130968734; - - // aapt resource value: 0x7F04009F - public const int contentInsetLeft = 2130968735; - - // aapt resource value: 0x7F0400A0 - public const int contentInsetRight = 2130968736; - - // aapt resource value: 0x7F0400A1 - public const int contentInsetStart = 2130968737; - - // aapt resource value: 0x7F0400A2 - public const int contentInsetStartWithNavigation = 2130968738; - - // aapt resource value: 0x7F0400A3 - public const int contentPadding = 2130968739; - - // aapt resource value: 0x7F0400A4 - public const int contentPaddingBottom = 2130968740; - - // aapt resource value: 0x7F0400A5 - public const int contentPaddingLeft = 2130968741; - - // aapt resource value: 0x7F0400A6 - public const int contentPaddingRight = 2130968742; - - // aapt resource value: 0x7F0400A7 - public const int contentPaddingTop = 2130968743; - - // aapt resource value: 0x7F0400A8 - public const int contentScrim = 2130968744; - - // aapt resource value: 0x7F0400A9 - public const int controlBackground = 2130968745; - - // aapt resource value: 0x7F0400AA - public const int coordinatorLayoutStyle = 2130968746; - - // aapt resource value: 0x7F0400AB - public const int cornerRadius = 2130968747; - - // aapt resource value: 0x7F0400AC - public const int counterEnabled = 2130968748; - - // aapt resource value: 0x7F0400AD - public const int counterMaxLength = 2130968749; - - // aapt resource value: 0x7F0400AE - public const int counterOverflowTextAppearance = 2130968750; - - // aapt resource value: 0x7F0400AF - public const int counterTextAppearance = 2130968751; - - // aapt resource value: 0x7F0400B0 - public const int customNavigationLayout = 2130968752; - - // aapt resource value: 0x7F0400B1 - public const int defaultQueryHint = 2130968753; - - // aapt resource value: 0x7F0400B2 - public const int dialogCornerRadius = 2130968754; - - // aapt resource value: 0x7F0400B3 - public const int dialogPreferredPadding = 2130968755; - - // aapt resource value: 0x7F0400B4 - public const int dialogTheme = 2130968756; - - // aapt resource value: 0x7F0400B5 - public const int displayOptions = 2130968757; - - // aapt resource value: 0x7F0400B6 - public const int divider = 2130968758; - - // aapt resource value: 0x7F0400B7 - public const int dividerHorizontal = 2130968759; - - // aapt resource value: 0x7F0400B8 - public const int dividerPadding = 2130968760; - - // aapt resource value: 0x7F0400B9 - public const int dividerVertical = 2130968761; - - // aapt resource value: 0x7F0400BA - public const int drawableBottomCompat = 2130968762; - - // aapt resource value: 0x7F0400BB - public const int drawableEndCompat = 2130968763; - - // aapt resource value: 0x7F0400BC - public const int drawableLeftCompat = 2130968764; - - // aapt resource value: 0x7F0400BD - public const int drawableRightCompat = 2130968765; - - // aapt resource value: 0x7F0400BE - public const int drawableSize = 2130968766; - - // aapt resource value: 0x7F0400BF - public const int drawableStartCompat = 2130968767; - - // aapt resource value: 0x7F0400C0 - public const int drawableTint = 2130968768; - - // aapt resource value: 0x7F0400C1 - public const int drawableTintMode = 2130968769; - - // aapt resource value: 0x7F0400C2 - public const int drawableTopCompat = 2130968770; - - // aapt resource value: 0x7F0400C3 - public const int drawerArrowStyle = 2130968771; - - // aapt resource value: 0x7F0400C5 - public const int dropdownListPreferredItemHeight = 2130968773; - - // aapt resource value: 0x7F0400C4 - public const int dropDownListViewStyle = 2130968772; - - // aapt resource value: 0x7F0400C6 - public const int editTextBackground = 2130968774; - - // aapt resource value: 0x7F0400C7 - public const int editTextColor = 2130968775; - - // aapt resource value: 0x7F0400C8 - public const int editTextStyle = 2130968776; - - // aapt resource value: 0x7F0400C9 - public const int elevation = 2130968777; - - // aapt resource value: 0x7F0400CA - public const int enforceMaterialTheme = 2130968778; - - // aapt resource value: 0x7F0400CB - public const int enforceTextAppearance = 2130968779; - - // aapt resource value: 0x7F0400CC - public const int errorEnabled = 2130968780; - - // aapt resource value: 0x7F0400CD - public const int errorTextAppearance = 2130968781; - - // aapt resource value: 0x7F0400CE - public const int expandActivityOverflowButtonDrawable = 2130968782; - - // aapt resource value: 0x7F0400CF - public const int expanded = 2130968783; - - // aapt resource value: 0x7F0400D0 - public const int expandedTitleGravity = 2130968784; - - // aapt resource value: 0x7F0400D1 - public const int expandedTitleMargin = 2130968785; - - // aapt resource value: 0x7F0400D2 - public const int expandedTitleMarginBottom = 2130968786; - - // aapt resource value: 0x7F0400D3 - public const int expandedTitleMarginEnd = 2130968787; - - // aapt resource value: 0x7F0400D4 - public const int expandedTitleMarginStart = 2130968788; - - // aapt resource value: 0x7F0400D5 - public const int expandedTitleMarginTop = 2130968789; - - // aapt resource value: 0x7F0400D6 - public const int expandedTitleTextAppearance = 2130968790; - - // aapt resource value: 0x7F0400D7 - public const int externalRouteEnabledDrawable = 2130968791; - - // aapt resource value: 0x7F0400D8 - public const int externalRouteEnabledDrawableStatic = 2130968792; - - // aapt resource value: 0x7F0400D9 - public const int fabAlignmentMode = 2130968793; - - // aapt resource value: 0x7F0400DA - public const int fabCradleMargin = 2130968794; - - // aapt resource value: 0x7F0400DB - public const int fabCradleRoundedCornerRadius = 2130968795; - - // aapt resource value: 0x7F0400DC - public const int fabCradleVerticalOffset = 2130968796; - - // aapt resource value: 0x7F0400DD - public const int fabCustomSize = 2130968797; - - // aapt resource value: 0x7F0400DE - public const int fabSize = 2130968798; - - // aapt resource value: 0x7F0400DF - public const int fastScrollEnabled = 2130968799; - - // aapt resource value: 0x7F0400E0 - public const int fastScrollHorizontalThumbDrawable = 2130968800; - - // aapt resource value: 0x7F0400E1 - public const int fastScrollHorizontalTrackDrawable = 2130968801; - - // aapt resource value: 0x7F0400E2 - public const int fastScrollVerticalThumbDrawable = 2130968802; - - // aapt resource value: 0x7F0400E3 - public const int fastScrollVerticalTrackDrawable = 2130968803; - - // aapt resource value: 0x7F0400E4 - public const int firstBaselineToTopHeight = 2130968804; - - // aapt resource value: 0x7F0400E5 - public const int floatingActionButtonStyle = 2130968805; - - // aapt resource value: 0x7F0400E6 - public const int font = 2130968806; - - // aapt resource value: 0x7F0400E7 - public const int fontFamily = 2130968807; - - // aapt resource value: 0x7F0400E8 - public const int fontProviderAuthority = 2130968808; - - // aapt resource value: 0x7F0400E9 - public const int fontProviderCerts = 2130968809; - - // aapt resource value: 0x7F0400EA - public const int fontProviderFetchStrategy = 2130968810; - - // aapt resource value: 0x7F0400EB - public const int fontProviderFetchTimeout = 2130968811; - - // aapt resource value: 0x7F0400EC - public const int fontProviderPackage = 2130968812; - - // aapt resource value: 0x7F0400ED - public const int fontProviderQuery = 2130968813; - - // aapt resource value: 0x7F0400EE - public const int fontStyle = 2130968814; - - // aapt resource value: 0x7F0400EF - public const int fontVariationSettings = 2130968815; - - // aapt resource value: 0x7F0400F0 - public const int fontWeight = 2130968816; - - // aapt resource value: 0x7F0400F1 - public const int foregroundInsidePadding = 2130968817; - - // aapt resource value: 0x7F0400F2 - public const int gapBetweenBars = 2130968818; - - // aapt resource value: 0x7F0400F3 - public const int goIcon = 2130968819; - - // aapt resource value: 0x7F0400F4 - public const int headerLayout = 2130968820; - - // aapt resource value: 0x7F0400F5 - public const int height = 2130968821; - - // aapt resource value: 0x7F0400F6 - public const int helperText = 2130968822; - - // aapt resource value: 0x7F0400F7 - public const int helperTextEnabled = 2130968823; - - // aapt resource value: 0x7F0400F8 - public const int helperTextTextAppearance = 2130968824; - - // aapt resource value: 0x7F0400F9 - public const int hideMotionSpec = 2130968825; - - // aapt resource value: 0x7F0400FA - public const int hideOnContentScroll = 2130968826; - - // aapt resource value: 0x7F0400FB - public const int hideOnScroll = 2130968827; - - // aapt resource value: 0x7F0400FC - public const int hintAnimationEnabled = 2130968828; - - // aapt resource value: 0x7F0400FD - public const int hintEnabled = 2130968829; - - // aapt resource value: 0x7F0400FE - public const int hintTextAppearance = 2130968830; - - // aapt resource value: 0x7F0400FF - public const int homeAsUpIndicator = 2130968831; - - // aapt resource value: 0x7F040100 - public const int homeLayout = 2130968832; - - // aapt resource value: 0x7F040101 - public const int hoveredFocusedTranslationZ = 2130968833; - - // aapt resource value: 0x7F040102 - public const int icon = 2130968834; - - // aapt resource value: 0x7F040103 - public const int iconEndPadding = 2130968835; - - // aapt resource value: 0x7F040104 - public const int iconGravity = 2130968836; - - // aapt resource value: 0x7F04010A - public const int iconifiedByDefault = 2130968842; - - // aapt resource value: 0x7F040105 - public const int iconPadding = 2130968837; - - // aapt resource value: 0x7F040106 - public const int iconSize = 2130968838; - - // aapt resource value: 0x7F040107 - public const int iconStartPadding = 2130968839; - - // aapt resource value: 0x7F040108 - public const int iconTint = 2130968840; - - // aapt resource value: 0x7F040109 - public const int iconTintMode = 2130968841; - - // aapt resource value: 0x7F04010B - public const int imageAspectRatio = 2130968843; - - // aapt resource value: 0x7F04010C - public const int imageAspectRatioAdjust = 2130968844; - - // aapt resource value: 0x7F04010D - public const int imageButtonStyle = 2130968845; - - // aapt resource value: 0x7F04010E - public const int indeterminateProgressStyle = 2130968846; - - // aapt resource value: 0x7F04010F - public const int initialActivityCount = 2130968847; - - // aapt resource value: 0x7F040110 - public const int insetForeground = 2130968848; - - // aapt resource value: 0x7F040111 - public const int isLightTheme = 2130968849; - - // aapt resource value: 0x7F040112 - public const int itemBackground = 2130968850; - - // aapt resource value: 0x7F040113 - public const int itemHorizontalPadding = 2130968851; - - // aapt resource value: 0x7F040114 - public const int itemHorizontalTranslationEnabled = 2130968852; - - // aapt resource value: 0x7F040115 - public const int itemIconPadding = 2130968853; - - // aapt resource value: 0x7F040116 - public const int itemIconSize = 2130968854; - - // aapt resource value: 0x7F040117 - public const int itemIconTint = 2130968855; - - // aapt resource value: 0x7F040118 - public const int itemPadding = 2130968856; - - // aapt resource value: 0x7F040119 - public const int itemSpacing = 2130968857; - - // aapt resource value: 0x7F04011A - public const int itemTextAppearance = 2130968858; - - // aapt resource value: 0x7F04011B - public const int itemTextAppearanceActive = 2130968859; - - // aapt resource value: 0x7F04011C - public const int itemTextAppearanceInactive = 2130968860; - - // aapt resource value: 0x7F04011D - public const int itemTextColor = 2130968861; - - // aapt resource value: 0x7F04011E - public const int keylines = 2130968862; - - // aapt resource value: 0x7F04011F - public const int labelVisibilityMode = 2130968863; - - // aapt resource value: 0x7F040120 - public const int lastBaselineToBottomHeight = 2130968864; - - // aapt resource value: 0x7F040121 - public const int latLngBoundsNorthEastLatitude = 2130968865; - - // aapt resource value: 0x7F040122 - public const int latLngBoundsNorthEastLongitude = 2130968866; - - // aapt resource value: 0x7F040123 - public const int latLngBoundsSouthWestLatitude = 2130968867; - - // aapt resource value: 0x7F040124 - public const int latLngBoundsSouthWestLongitude = 2130968868; - - // aapt resource value: 0x7F040125 - public const int layout = 2130968869; - - // aapt resource value: 0x7F040126 - public const int layoutManager = 2130968870; - - // aapt resource value: 0x7F040127 - public const int layout_anchor = 2130968871; - - // aapt resource value: 0x7F040128 - public const int layout_anchorGravity = 2130968872; - - // aapt resource value: 0x7F040129 - public const int layout_behavior = 2130968873; - - // aapt resource value: 0x7F04012A - public const int layout_collapseMode = 2130968874; - - // aapt resource value: 0x7F04012B - public const int layout_collapseParallaxMultiplier = 2130968875; - - // aapt resource value: 0x7F04012C - public const int layout_dodgeInsetEdges = 2130968876; - - // aapt resource value: 0x7F04012D - public const int layout_insetEdge = 2130968877; - - // aapt resource value: 0x7F04012E - public const int layout_keyline = 2130968878; - - // aapt resource value: 0x7F04012F - public const int layout_scrollFlags = 2130968879; - - // aapt resource value: 0x7F040130 - public const int layout_scrollInterpolator = 2130968880; - - // aapt resource value: 0x7F040131 - public const int liftOnScroll = 2130968881; - - // aapt resource value: 0x7F040132 - public const int lineHeight = 2130968882; - - // aapt resource value: 0x7F040133 - public const int lineSpacing = 2130968883; - - // aapt resource value: 0x7F040134 - public const int listChoiceBackgroundIndicator = 2130968884; - - // aapt resource value: 0x7F040135 - public const int listChoiceIndicatorMultipleAnimated = 2130968885; - - // aapt resource value: 0x7F040136 - public const int listChoiceIndicatorSingleAnimated = 2130968886; - - // aapt resource value: 0x7F040137 - public const int listDividerAlertDialog = 2130968887; - - // aapt resource value: 0x7F040138 - public const int listItemLayout = 2130968888; - - // aapt resource value: 0x7F040139 - public const int listLayout = 2130968889; - - // aapt resource value: 0x7F04013A - public const int listMenuViewStyle = 2130968890; - - // aapt resource value: 0x7F04013B - public const int listPopupWindowStyle = 2130968891; - - // aapt resource value: 0x7F04013C - public const int listPreferredItemHeight = 2130968892; - - // aapt resource value: 0x7F04013D - public const int listPreferredItemHeightLarge = 2130968893; - - // aapt resource value: 0x7F04013E - public const int listPreferredItemHeightSmall = 2130968894; - - // aapt resource value: 0x7F04013F - public const int listPreferredItemPaddingEnd = 2130968895; - - // aapt resource value: 0x7F040140 - public const int listPreferredItemPaddingLeft = 2130968896; - - // aapt resource value: 0x7F040141 - public const int listPreferredItemPaddingRight = 2130968897; - - // aapt resource value: 0x7F040142 - public const int listPreferredItemPaddingStart = 2130968898; - - // aapt resource value: 0x7F040143 - public const int liteMode = 2130968899; - - // aapt resource value: 0x7F040144 - public const int logo = 2130968900; - - // aapt resource value: 0x7F040145 - public const int logoDescription = 2130968901; - - // aapt resource value: 0x7F040146 - public const int mapType = 2130968902; - - // aapt resource value: 0x7F040147 - public const int materialButtonStyle = 2130968903; - - // aapt resource value: 0x7F040148 - public const int materialCardViewStyle = 2130968904; - - // aapt resource value: 0x7F040149 - public const int maxActionInlineWidth = 2130968905; - - // aapt resource value: 0x7F04014A - public const int maxButtonHeight = 2130968906; - - // aapt resource value: 0x7F04014B - public const int maxImageSize = 2130968907; - - // aapt resource value: 0x7F04014C - public const int measureWithLargestChild = 2130968908; - - // aapt resource value: 0x7F04014D - public const int mediaRouteAudioTrackDrawable = 2130968909; - - // aapt resource value: 0x7F04014E - public const int mediaRouteBodyTextAppearance = 2130968910; - - // aapt resource value: 0x7F04014F - public const int mediaRouteButtonStyle = 2130968911; - - // aapt resource value: 0x7F040150 - public const int mediaRouteButtonTint = 2130968912; - - // aapt resource value: 0x7F040151 - public const int mediaRouteCloseDrawable = 2130968913; - - // aapt resource value: 0x7F040152 - public const int mediaRouteControlPanelThemeOverlay = 2130968914; - - // aapt resource value: 0x7F040153 - public const int mediaRouteDefaultIconDrawable = 2130968915; - - // aapt resource value: 0x7F040154 - public const int mediaRouteDividerColor = 2130968916; - - // aapt resource value: 0x7F040155 - public const int mediaRouteHeaderTextAppearance = 2130968917; - - // aapt resource value: 0x7F040156 - public const int mediaRoutePauseDrawable = 2130968918; - - // aapt resource value: 0x7F040157 - public const int mediaRoutePlayDrawable = 2130968919; - - // aapt resource value: 0x7F040158 - public const int mediaRouteSpeakerGroupIconDrawable = 2130968920; - - // aapt resource value: 0x7F040159 - public const int mediaRouteSpeakerIconDrawable = 2130968921; - - // aapt resource value: 0x7F04015A - public const int mediaRouteStopDrawable = 2130968922; - - // aapt resource value: 0x7F04015B - public const int mediaRouteTheme = 2130968923; - - // aapt resource value: 0x7F04015C - public const int mediaRouteTvIconDrawable = 2130968924; - - // aapt resource value: 0x7F04015D - public const int menu = 2130968925; - - // aapt resource value: 0x7F04015E - public const int multiChoiceItemLayout = 2130968926; - - // aapt resource value: 0x7F04015F - public const int navigationContentDescription = 2130968927; - - // aapt resource value: 0x7F040160 - public const int navigationIcon = 2130968928; - - // aapt resource value: 0x7F040161 - public const int navigationMode = 2130968929; - - // aapt resource value: 0x7F040162 - public const int navigationViewStyle = 2130968930; - - // aapt resource value: 0x7F040163 - public const int numericModifiers = 2130968931; - - // aapt resource value: 0x7F040164 - public const int overlapAnchor = 2130968932; - - // aapt resource value: 0x7F040165 - public const int paddingBottomNoButtons = 2130968933; - - // aapt resource value: 0x7F040166 - public const int paddingEnd = 2130968934; - - // aapt resource value: 0x7F040167 - public const int paddingStart = 2130968935; - - // aapt resource value: 0x7F040168 - public const int paddingTopNoTitle = 2130968936; - - // aapt resource value: 0x7F040169 - public const int panelBackground = 2130968937; - - // aapt resource value: 0x7F04016A - public const int panelMenuListTheme = 2130968938; - - // aapt resource value: 0x7F04016B - public const int panelMenuListWidth = 2130968939; - - // aapt resource value: 0x7F04016C - public const int passwordToggleContentDescription = 2130968940; - - // aapt resource value: 0x7F04016D - public const int passwordToggleDrawable = 2130968941; - - // aapt resource value: 0x7F04016E - public const int passwordToggleEnabled = 2130968942; - - // aapt resource value: 0x7F04016F - public const int passwordToggleTint = 2130968943; - - // aapt resource value: 0x7F040170 - public const int passwordToggleTintMode = 2130968944; - - // aapt resource value: 0x7F040171 - public const int popupMenuStyle = 2130968945; - - // aapt resource value: 0x7F040172 - public const int popupTheme = 2130968946; - - // aapt resource value: 0x7F040173 - public const int popupWindowStyle = 2130968947; - - // aapt resource value: 0x7F040174 - public const int preserveIconSpacing = 2130968948; - - // aapt resource value: 0x7F040175 - public const int pressedTranslationZ = 2130968949; - - // aapt resource value: 0x7F040176 - public const int progressBarPadding = 2130968950; - - // aapt resource value: 0x7F040177 - public const int progressBarStyle = 2130968951; - - // aapt resource value: 0x7F040178 - public const int queryBackground = 2130968952; - - // aapt resource value: 0x7F040179 - public const int queryHint = 2130968953; - - // aapt resource value: 0x7F04017A - public const int radioButtonStyle = 2130968954; - - // aapt resource value: 0x7F04017B - public const int ratingBarStyle = 2130968955; - - // aapt resource value: 0x7F04017C - public const int ratingBarStyleIndicator = 2130968956; - - // aapt resource value: 0x7F04017D - public const int ratingBarStyleSmall = 2130968957; - - // aapt resource value: 0x7F04017E - public const int recyclerViewStyle = 2130968958; - - // aapt resource value: 0x7F04017F - public const int reverseLayout = 2130968959; - - // aapt resource value: 0x7F040180 - public const int rippleColor = 2130968960; - - // aapt resource value: 0x7F040181 - public const int scopeUris = 2130968961; - - // aapt resource value: 0x7F040182 - public const int scrimAnimationDuration = 2130968962; - - // aapt resource value: 0x7F040183 - public const int scrimBackground = 2130968963; - - // aapt resource value: 0x7F040184 - public const int scrimVisibleHeightTrigger = 2130968964; - - // aapt resource value: 0x7F040185 - public const int searchHintIcon = 2130968965; - - // aapt resource value: 0x7F040186 - public const int searchIcon = 2130968966; - - // aapt resource value: 0x7F040187 - public const int searchViewStyle = 2130968967; - - // aapt resource value: 0x7F040188 - public const int seekBarStyle = 2130968968; - - // aapt resource value: 0x7F040189 - public const int selectableItemBackground = 2130968969; - - // aapt resource value: 0x7F04018A - public const int selectableItemBackgroundBorderless = 2130968970; - - // aapt resource value: 0x7F04018B - public const int showAsAction = 2130968971; - - // aapt resource value: 0x7F04018C - public const int showDividers = 2130968972; - - // aapt resource value: 0x7F04018D - public const int showMotionSpec = 2130968973; - - // aapt resource value: 0x7F04018E - public const int showText = 2130968974; - - // aapt resource value: 0x7F04018F - public const int showTitle = 2130968975; - - // aapt resource value: 0x7F040190 - public const int singleChoiceItemLayout = 2130968976; - - // aapt resource value: 0x7F040191 - public const int singleLine = 2130968977; - - // aapt resource value: 0x7F040192 - public const int singleSelection = 2130968978; - - // aapt resource value: 0x7F040193 - public const int snackbarButtonStyle = 2130968979; - - // aapt resource value: 0x7F040194 - public const int snackbarStyle = 2130968980; - - // aapt resource value: 0x7F040195 - public const int spanCount = 2130968981; - - // aapt resource value: 0x7F040196 - public const int spinBars = 2130968982; - - // aapt resource value: 0x7F040197 - public const int spinnerDropDownItemStyle = 2130968983; - - // aapt resource value: 0x7F040198 - public const int spinnerStyle = 2130968984; - - // aapt resource value: 0x7F040199 - public const int splitTrack = 2130968985; - - // aapt resource value: 0x7F04019A - public const int srcCompat = 2130968986; - - // aapt resource value: 0x7F04019B - public const int stackFromEnd = 2130968987; - - // aapt resource value: 0x7F04019C - public const int state_above_anchor = 2130968988; - - // aapt resource value: 0x7F04019D - public const int state_collapsed = 2130968989; - - // aapt resource value: 0x7F04019E - public const int state_collapsible = 2130968990; - - // aapt resource value: 0x7F04019F - public const int state_liftable = 2130968991; - - // aapt resource value: 0x7F0401A0 - public const int state_lifted = 2130968992; - - // aapt resource value: 0x7F0401A1 - public const int statusBarBackground = 2130968993; - - // aapt resource value: 0x7F0401A2 - public const int statusBarScrim = 2130968994; - - // aapt resource value: 0x7F0401A3 - public const int strokeColor = 2130968995; - - // aapt resource value: 0x7F0401A4 - public const int strokeWidth = 2130968996; - - // aapt resource value: 0x7F0401A5 - public const int subMenuArrow = 2130968997; - - // aapt resource value: 0x7F0401A6 - public const int submitBackground = 2130968998; - - // aapt resource value: 0x7F0401A7 - public const int subtitle = 2130968999; - - // aapt resource value: 0x7F0401A8 - public const int subtitleTextAppearance = 2130969000; - - // aapt resource value: 0x7F0401A9 - public const int subtitleTextColor = 2130969001; - - // aapt resource value: 0x7F0401AA - public const int subtitleTextStyle = 2130969002; - - // aapt resource value: 0x7F0401AB - public const int suggestionRowLayout = 2130969003; - - // aapt resource value: 0x7F0401AC - public const int switchMinWidth = 2130969004; - - // aapt resource value: 0x7F0401AD - public const int switchPadding = 2130969005; - - // aapt resource value: 0x7F0401AE - public const int switchStyle = 2130969006; - - // aapt resource value: 0x7F0401AF - public const int switchTextAppearance = 2130969007; - - // aapt resource value: 0x7F0401B0 - public const int tabBackground = 2130969008; - - // aapt resource value: 0x7F0401B1 - public const int tabContentStart = 2130969009; - - // aapt resource value: 0x7F0401B2 - public const int tabGravity = 2130969010; - - // aapt resource value: 0x7F0401B3 - public const int tabIconTint = 2130969011; - - // aapt resource value: 0x7F0401B4 - public const int tabIconTintMode = 2130969012; - - // aapt resource value: 0x7F0401B5 - public const int tabIndicator = 2130969013; - - // aapt resource value: 0x7F0401B6 - public const int tabIndicatorAnimationDuration = 2130969014; - - // aapt resource value: 0x7F0401B7 - public const int tabIndicatorColor = 2130969015; - - // aapt resource value: 0x7F0401B8 - public const int tabIndicatorFullWidth = 2130969016; - - // aapt resource value: 0x7F0401B9 - public const int tabIndicatorGravity = 2130969017; - - // aapt resource value: 0x7F0401BA - public const int tabIndicatorHeight = 2130969018; - - // aapt resource value: 0x7F0401BB - public const int tabInlineLabel = 2130969019; - - // aapt resource value: 0x7F0401BC - public const int tabMaxWidth = 2130969020; - - // aapt resource value: 0x7F0401BD - public const int tabMinWidth = 2130969021; - - // aapt resource value: 0x7F0401BE - public const int tabMode = 2130969022; - - // aapt resource value: 0x7F0401BF - public const int tabPadding = 2130969023; - - // aapt resource value: 0x7F0401C0 - public const int tabPaddingBottom = 2130969024; - - // aapt resource value: 0x7F0401C1 - public const int tabPaddingEnd = 2130969025; - - // aapt resource value: 0x7F0401C2 - public const int tabPaddingStart = 2130969026; - - // aapt resource value: 0x7F0401C3 - public const int tabPaddingTop = 2130969027; - - // aapt resource value: 0x7F0401C4 - public const int tabRippleColor = 2130969028; - - // aapt resource value: 0x7F0401C5 - public const int tabSelectedTextColor = 2130969029; - - // aapt resource value: 0x7F0401C6 - public const int tabStyle = 2130969030; - - // aapt resource value: 0x7F0401C7 - public const int tabTextAppearance = 2130969031; - - // aapt resource value: 0x7F0401C8 - public const int tabTextColor = 2130969032; - - // aapt resource value: 0x7F0401C9 - public const int tabUnboundedRipple = 2130969033; - - // aapt resource value: 0x7F0401CA - public const int textAllCaps = 2130969034; - - // aapt resource value: 0x7F0401CB - public const int textAppearanceBody1 = 2130969035; - - // aapt resource value: 0x7F0401CC - public const int textAppearanceBody2 = 2130969036; - - // aapt resource value: 0x7F0401CD - public const int textAppearanceButton = 2130969037; - - // aapt resource value: 0x7F0401CE - public const int textAppearanceCaption = 2130969038; - - // aapt resource value: 0x7F0401CF - public const int textAppearanceHeadline1 = 2130969039; - - // aapt resource value: 0x7F0401D0 - public const int textAppearanceHeadline2 = 2130969040; - - // aapt resource value: 0x7F0401D1 - public const int textAppearanceHeadline3 = 2130969041; - - // aapt resource value: 0x7F0401D2 - public const int textAppearanceHeadline4 = 2130969042; - - // aapt resource value: 0x7F0401D3 - public const int textAppearanceHeadline5 = 2130969043; - - // aapt resource value: 0x7F0401D4 - public const int textAppearanceHeadline6 = 2130969044; - - // aapt resource value: 0x7F0401D5 - public const int textAppearanceLargePopupMenu = 2130969045; - - // aapt resource value: 0x7F0401D6 - public const int textAppearanceListItem = 2130969046; - - // aapt resource value: 0x7F0401D7 - public const int textAppearanceListItemSecondary = 2130969047; - - // aapt resource value: 0x7F0401D8 - public const int textAppearanceListItemSmall = 2130969048; - - // aapt resource value: 0x7F0401D9 - public const int textAppearanceOverline = 2130969049; - - // aapt resource value: 0x7F0401DA - public const int textAppearancePopupMenuHeader = 2130969050; - - // aapt resource value: 0x7F0401DB - public const int textAppearanceSearchResultSubtitle = 2130969051; - - // aapt resource value: 0x7F0401DC - public const int textAppearanceSearchResultTitle = 2130969052; - - // aapt resource value: 0x7F0401DD - public const int textAppearanceSmallPopupMenu = 2130969053; - - // aapt resource value: 0x7F0401DE - public const int textAppearanceSubtitle1 = 2130969054; - - // aapt resource value: 0x7F0401DF - public const int textAppearanceSubtitle2 = 2130969055; - - // aapt resource value: 0x7F0401E0 - public const int textColorAlertDialogListItem = 2130969056; - - // aapt resource value: 0x7F0401E1 - public const int textColorSearchUrl = 2130969057; - - // aapt resource value: 0x7F0401E2 - public const int textEndPadding = 2130969058; - - // aapt resource value: 0x7F0401E3 - public const int textInputStyle = 2130969059; - - // aapt resource value: 0x7F0401E4 - public const int textLocale = 2130969060; - - // aapt resource value: 0x7F0401E5 - public const int textStartPadding = 2130969061; - - // aapt resource value: 0x7F0401E6 - public const int theme = 2130969062; - - // aapt resource value: 0x7F0401E7 - public const int thickness = 2130969063; - - // aapt resource value: 0x7F0401E8 - public const int thumbTextPadding = 2130969064; - - // aapt resource value: 0x7F0401E9 - public const int thumbTint = 2130969065; - - // aapt resource value: 0x7F0401EA - public const int thumbTintMode = 2130969066; - - // aapt resource value: 0x7F0401EB - public const int tickMark = 2130969067; - - // aapt resource value: 0x7F0401EC - public const int tickMarkTint = 2130969068; - - // aapt resource value: 0x7F0401ED - public const int tickMarkTintMode = 2130969069; - - // aapt resource value: 0x7F0401EE - public const int tint = 2130969070; - - // aapt resource value: 0x7F0401EF - public const int tintMode = 2130969071; - - // aapt resource value: 0x7F0401F0 - public const int title = 2130969072; - - // aapt resource value: 0x7F0401F1 - public const int titleEnabled = 2130969073; - - // aapt resource value: 0x7F0401F2 - public const int titleMargin = 2130969074; - - // aapt resource value: 0x7F0401F3 - public const int titleMarginBottom = 2130969075; - - // aapt resource value: 0x7F0401F4 - public const int titleMarginEnd = 2130969076; - - // aapt resource value: 0x7F0401F7 - public const int titleMargins = 2130969079; - - // aapt resource value: 0x7F0401F5 - public const int titleMarginStart = 2130969077; - - // aapt resource value: 0x7F0401F6 - public const int titleMarginTop = 2130969078; - - // aapt resource value: 0x7F0401F8 - public const int titleTextAppearance = 2130969080; - - // aapt resource value: 0x7F0401F9 - public const int titleTextColor = 2130969081; - - // aapt resource value: 0x7F0401FA - public const int titleTextStyle = 2130969082; - - // aapt resource value: 0x7F0401FB - public const int toolbarId = 2130969083; - - // aapt resource value: 0x7F0401FC - public const int toolbarNavigationButtonStyle = 2130969084; - - // aapt resource value: 0x7F0401FD - public const int toolbarStyle = 2130969085; - - // aapt resource value: 0x7F0401FE - public const int tooltipForegroundColor = 2130969086; - - // aapt resource value: 0x7F0401FF - public const int tooltipFrameBackground = 2130969087; - - // aapt resource value: 0x7F040200 - public const int tooltipText = 2130969088; - - // aapt resource value: 0x7F040201 - public const int track = 2130969089; - - // aapt resource value: 0x7F040202 - public const int trackTint = 2130969090; - - // aapt resource value: 0x7F040203 - public const int trackTintMode = 2130969091; - - // aapt resource value: 0x7F040204 - public const int ttcIndex = 2130969092; - - // aapt resource value: 0x7F040205 - public const int uiCompass = 2130969093; - - // aapt resource value: 0x7F040206 - public const int uiMapToolbar = 2130969094; - - // aapt resource value: 0x7F040207 - public const int uiRotateGestures = 2130969095; - - // aapt resource value: 0x7F040208 - public const int uiScrollGestures = 2130969096; - - // aapt resource value: 0x7F040209 - public const int uiScrollGesturesDuringRotateOrZoom = 2130969097; - - // aapt resource value: 0x7F04020A - public const int uiTiltGestures = 2130969098; - - // aapt resource value: 0x7F04020B - public const int uiZoomControls = 2130969099; - - // aapt resource value: 0x7F04020C - public const int uiZoomGestures = 2130969100; - - // aapt resource value: 0x7F04020D - public const int useCompatPadding = 2130969101; - - // aapt resource value: 0x7F04020E - public const int useViewLifecycle = 2130969102; - - // aapt resource value: 0x7F04020F - public const int viewInflaterClass = 2130969103; - - // aapt resource value: 0x7F040210 - public const int voiceIcon = 2130969104; - - // aapt resource value: 0x7F040211 - public const int windowActionBar = 2130969105; - - // aapt resource value: 0x7F040212 - public const int windowActionBarOverlay = 2130969106; - - // aapt resource value: 0x7F040213 - public const int windowActionModeOverlay = 2130969107; - - // aapt resource value: 0x7F040214 - public const int windowFixedHeightMajor = 2130969108; - - // aapt resource value: 0x7F040215 - public const int windowFixedHeightMinor = 2130969109; - - // aapt resource value: 0x7F040216 - public const int windowFixedWidthMajor = 2130969110; - - // aapt resource value: 0x7F040217 - public const int windowFixedWidthMinor = 2130969111; - - // aapt resource value: 0x7F040218 - public const int windowMinWidthMajor = 2130969112; - - // aapt resource value: 0x7F040219 - public const int windowMinWidthMinor = 2130969113; - - // aapt resource value: 0x7F04021A - public const int windowNoTitle = 2130969114; - - // aapt resource value: 0x7F04021B - public const int zOrderOnTop = 2130969115; - - static Attribute() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Attribute() - { - } - } - - public partial class Boolean - { - - // aapt resource value: 0x7F050000 - public const int abc_action_bar_embed_tabs = 2131034112; - - // aapt resource value: 0x7F050001 - public const int abc_allow_stacked_button_bar = 2131034113; - - // aapt resource value: 0x7F050002 - public const int abc_config_actionMenuItemAllCaps = 2131034114; - - // aapt resource value: 0x7F050003 - public const int is_tablet = 2131034115; - - // aapt resource value: 0x7F050004 - public const int mtrl_btn_textappearance_all_caps = 2131034116; - - static Boolean() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Boolean() - { - } - } - - public partial class Color - { - - // aapt resource value: 0x7F060000 - public const int abc_background_cache_hint_selector_material_dark = 2131099648; - - // aapt resource value: 0x7F060001 - public const int abc_background_cache_hint_selector_material_light = 2131099649; - - // aapt resource value: 0x7F060002 - public const int abc_btn_colored_borderless_text_material = 2131099650; - - // aapt resource value: 0x7F060003 - public const int abc_btn_colored_text_material = 2131099651; - - // aapt resource value: 0x7F060004 - public const int abc_color_highlight_material = 2131099652; - - // aapt resource value: 0x7F060005 - public const int abc_hint_foreground_material_dark = 2131099653; - - // aapt resource value: 0x7F060006 - public const int abc_hint_foreground_material_light = 2131099654; - - // aapt resource value: 0x7F060007 - public const int abc_input_method_navigation_guard = 2131099655; - - // aapt resource value: 0x7F060008 - public const int abc_primary_text_disable_only_material_dark = 2131099656; - - // aapt resource value: 0x7F060009 - public const int abc_primary_text_disable_only_material_light = 2131099657; - - // aapt resource value: 0x7F06000A - public const int abc_primary_text_material_dark = 2131099658; - - // aapt resource value: 0x7F06000B - public const int abc_primary_text_material_light = 2131099659; - - // aapt resource value: 0x7F06000C - public const int abc_search_url_text = 2131099660; - - // aapt resource value: 0x7F06000D - public const int abc_search_url_text_normal = 2131099661; - - // aapt resource value: 0x7F06000E - public const int abc_search_url_text_pressed = 2131099662; - - // aapt resource value: 0x7F06000F - public const int abc_search_url_text_selected = 2131099663; - - // aapt resource value: 0x7F060010 - public const int abc_secondary_text_material_dark = 2131099664; - - // aapt resource value: 0x7F060011 - public const int abc_secondary_text_material_light = 2131099665; - - // aapt resource value: 0x7F060012 - public const int abc_tint_btn_checkable = 2131099666; - - // aapt resource value: 0x7F060013 - public const int abc_tint_default = 2131099667; - - // aapt resource value: 0x7F060014 - public const int abc_tint_edittext = 2131099668; - - // aapt resource value: 0x7F060015 - public const int abc_tint_seek_thumb = 2131099669; - - // aapt resource value: 0x7F060016 - public const int abc_tint_spinner = 2131099670; - - // aapt resource value: 0x7F060017 - public const int abc_tint_switch_track = 2131099671; - - // aapt resource value: 0x7F060018 - public const int accent_material_dark = 2131099672; - - // aapt resource value: 0x7F060019 - public const int accent_material_light = 2131099673; - - // aapt resource value: 0x7F06001A - public const int background_floating_material_dark = 2131099674; - - // aapt resource value: 0x7F06001B - public const int background_floating_material_light = 2131099675; - - // aapt resource value: 0x7F06001C - public const int background_material_dark = 2131099676; - - // aapt resource value: 0x7F06001D - public const int background_material_light = 2131099677; - - // aapt resource value: 0x7F06001E - public const int bright_foreground_disabled_material_dark = 2131099678; - - // aapt resource value: 0x7F06001F - public const int bright_foreground_disabled_material_light = 2131099679; - - // aapt resource value: 0x7F060020 - public const int bright_foreground_inverse_material_dark = 2131099680; - - // aapt resource value: 0x7F060021 - public const int bright_foreground_inverse_material_light = 2131099681; - - // aapt resource value: 0x7F060022 - public const int bright_foreground_material_dark = 2131099682; - - // aapt resource value: 0x7F060023 - public const int bright_foreground_material_light = 2131099683; - - // aapt resource value: 0x7F060024 - public const int browser_actions_bg_grey = 2131099684; - - // aapt resource value: 0x7F060025 - public const int browser_actions_divider_color = 2131099685; - - // aapt resource value: 0x7F060026 - public const int browser_actions_text_color = 2131099686; - - // aapt resource value: 0x7F060027 - public const int browser_actions_title_color = 2131099687; - - // aapt resource value: 0x7F060028 - public const int button_material_dark = 2131099688; - - // aapt resource value: 0x7F060029 - public const int button_material_light = 2131099689; - - // aapt resource value: 0x7F06002A - public const int cardview_dark_background = 2131099690; - - // aapt resource value: 0x7F06002B - public const int cardview_light_background = 2131099691; - - // aapt resource value: 0x7F06002C - public const int cardview_shadow_end_color = 2131099692; - - // aapt resource value: 0x7F06002D - public const int cardview_shadow_start_color = 2131099693; - - // aapt resource value: 0x7F06002E - public const int colorAccent = 2131099694; - - // aapt resource value: 0x7F06002F - public const int colorPrimary = 2131099695; - - // aapt resource value: 0x7F060030 - public const int colorPrimaryDark = 2131099696; - - // aapt resource value: 0x7F060031 - public const int common_google_signin_btn_text_dark = 2131099697; - - // aapt resource value: 0x7F060032 - public const int common_google_signin_btn_text_dark_default = 2131099698; - - // aapt resource value: 0x7F060033 - public const int common_google_signin_btn_text_dark_disabled = 2131099699; - - // aapt resource value: 0x7F060034 - public const int common_google_signin_btn_text_dark_focused = 2131099700; - - // aapt resource value: 0x7F060035 - public const int common_google_signin_btn_text_dark_pressed = 2131099701; - - // aapt resource value: 0x7F060036 - public const int common_google_signin_btn_text_light = 2131099702; - - // aapt resource value: 0x7F060037 - public const int common_google_signin_btn_text_light_default = 2131099703; - - // aapt resource value: 0x7F060038 - public const int common_google_signin_btn_text_light_disabled = 2131099704; - - // aapt resource value: 0x7F060039 - public const int common_google_signin_btn_text_light_focused = 2131099705; - - // aapt resource value: 0x7F06003A - public const int common_google_signin_btn_text_light_pressed = 2131099706; - - // aapt resource value: 0x7F06003B - public const int common_google_signin_btn_tint = 2131099707; - - // aapt resource value: 0x7F06003C - public const int design_bottom_navigation_shadow_color = 2131099708; - - // aapt resource value: 0x7F06003D - public const int design_default_color_primary = 2131099709; - - // aapt resource value: 0x7F06003E - public const int design_default_color_primary_dark = 2131099710; - - // aapt resource value: 0x7F06003F - public const int design_error = 2131099711; - - // aapt resource value: 0x7F060040 - public const int design_fab_shadow_end_color = 2131099712; - - // aapt resource value: 0x7F060041 - public const int design_fab_shadow_mid_color = 2131099713; - - // aapt resource value: 0x7F060042 - public const int design_fab_shadow_start_color = 2131099714; - - // aapt resource value: 0x7F060043 - public const int design_fab_stroke_end_inner_color = 2131099715; - - // aapt resource value: 0x7F060044 - public const int design_fab_stroke_end_outer_color = 2131099716; - - // aapt resource value: 0x7F060045 - public const int design_fab_stroke_top_inner_color = 2131099717; - - // aapt resource value: 0x7F060046 - public const int design_fab_stroke_top_outer_color = 2131099718; - - // aapt resource value: 0x7F060047 - public const int design_snackbar_background_color = 2131099719; - - // aapt resource value: 0x7F060048 - public const int design_tint_password_toggle = 2131099720; - - // aapt resource value: 0x7F060049 - public const int dim_foreground_disabled_material_dark = 2131099721; - - // aapt resource value: 0x7F06004A - public const int dim_foreground_disabled_material_light = 2131099722; - - // aapt resource value: 0x7F06004B - public const int dim_foreground_material_dark = 2131099723; - - // aapt resource value: 0x7F06004C - public const int dim_foreground_material_light = 2131099724; - - // aapt resource value: 0x7F06004D - public const int error_color_material_dark = 2131099725; - - // aapt resource value: 0x7F06004E - public const int error_color_material_light = 2131099726; - - // aapt resource value: 0x7F06004F - public const int foreground_material_dark = 2131099727; - - // aapt resource value: 0x7F060050 - public const int foreground_material_light = 2131099728; - - // aapt resource value: 0x7F060051 - public const int highlighted_text_material_dark = 2131099729; - - // aapt resource value: 0x7F060052 - public const int highlighted_text_material_light = 2131099730; - - // aapt resource value: 0x7F060053 - public const int ic_launcher_background = 2131099731; - - // aapt resource value: 0x7F060054 - public const int material_blue_grey_800 = 2131099732; - - // aapt resource value: 0x7F060055 - public const int material_blue_grey_900 = 2131099733; - - // aapt resource value: 0x7F060056 - public const int material_blue_grey_950 = 2131099734; - - // aapt resource value: 0x7F060057 - public const int material_deep_teal_200 = 2131099735; - - // aapt resource value: 0x7F060058 - public const int material_deep_teal_500 = 2131099736; - - // aapt resource value: 0x7F060059 - public const int material_grey_100 = 2131099737; - - // aapt resource value: 0x7F06005A - public const int material_grey_300 = 2131099738; - - // aapt resource value: 0x7F06005B - public const int material_grey_50 = 2131099739; - - // aapt resource value: 0x7F06005C - public const int material_grey_600 = 2131099740; - - // aapt resource value: 0x7F06005D - public const int material_grey_800 = 2131099741; - - // aapt resource value: 0x7F06005E - public const int material_grey_850 = 2131099742; - - // aapt resource value: 0x7F06005F - public const int material_grey_900 = 2131099743; - - // aapt resource value: 0x7F060060 - public const int mr_cast_meta_black_scrim = 2131099744; - - // aapt resource value: 0x7F060061 - public const int mr_cast_meta_default_background = 2131099745; - - // aapt resource value: 0x7F060062 - public const int mr_cast_meta_default_text_color = 2131099746; - - // aapt resource value: 0x7F060063 - public const int mr_cast_progressbar_background_dark = 2131099747; - - // aapt resource value: 0x7F060064 - public const int mr_cast_progressbar_background_light = 2131099748; - - // aapt resource value: 0x7F060065 - public const int mr_cast_progressbar_progress_and_thumb_dark = 2131099749; - - // aapt resource value: 0x7F060066 - public const int mr_cast_progressbar_progress_and_thumb_light = 2131099750; - - // aapt resource value: 0x7F060067 - public const int mr_cast_route_divider_dark = 2131099751; - - // aapt resource value: 0x7F060068 - public const int mr_cast_route_divider_light = 2131099752; - - // aapt resource value: 0x7F060069 - public const int mr_dynamic_dialog_background_dark = 2131099753; - - // aapt resource value: 0x7F06006A - public const int mr_dynamic_dialog_background_light = 2131099754; - - // aapt resource value: 0x7F06006B - public const int mr_dynamic_dialog_header_text_color_dark = 2131099755; - - // aapt resource value: 0x7F06006C - public const int mr_dynamic_dialog_header_text_color_light = 2131099756; - - // aapt resource value: 0x7F06006D - public const int mr_dynamic_dialog_icon_dark = 2131099757; - - // aapt resource value: 0x7F06006E - public const int mr_dynamic_dialog_icon_light = 2131099758; - - // aapt resource value: 0x7F06006F - public const int mr_dynamic_dialog_route_text_color_dark = 2131099759; - - // aapt resource value: 0x7F060070 - public const int mr_dynamic_dialog_route_text_color_light = 2131099760; - - // aapt resource value: 0x7F060071 - public const int mtrl_bottom_nav_colored_item_tint = 2131099761; - - // aapt resource value: 0x7F060072 - public const int mtrl_bottom_nav_item_tint = 2131099762; - - // aapt resource value: 0x7F060073 - public const int mtrl_btn_bg_color_disabled = 2131099763; - - // aapt resource value: 0x7F060074 - public const int mtrl_btn_bg_color_selector = 2131099764; - - // aapt resource value: 0x7F060075 - public const int mtrl_btn_ripple_color = 2131099765; - - // aapt resource value: 0x7F060076 - public const int mtrl_btn_stroke_color_selector = 2131099766; - - // aapt resource value: 0x7F060077 - public const int mtrl_btn_text_btn_ripple_color = 2131099767; - - // aapt resource value: 0x7F060078 - public const int mtrl_btn_text_color_disabled = 2131099768; - - // aapt resource value: 0x7F060079 - public const int mtrl_btn_text_color_selector = 2131099769; - - // aapt resource value: 0x7F06007A - public const int mtrl_btn_transparent_bg_color = 2131099770; - - // aapt resource value: 0x7F06007B - public const int mtrl_chip_background_color = 2131099771; - - // aapt resource value: 0x7F06007C - public const int mtrl_chip_close_icon_tint = 2131099772; - - // aapt resource value: 0x7F06007D - public const int mtrl_chip_ripple_color = 2131099773; - - // aapt resource value: 0x7F06007E - public const int mtrl_chip_text_color = 2131099774; - - // aapt resource value: 0x7F06007F - public const int mtrl_fab_ripple_color = 2131099775; - - // aapt resource value: 0x7F060080 - public const int mtrl_scrim_color = 2131099776; - - // aapt resource value: 0x7F060081 - public const int mtrl_tabs_colored_ripple_color = 2131099777; - - // aapt resource value: 0x7F060082 - public const int mtrl_tabs_icon_color_selector = 2131099778; - - // aapt resource value: 0x7F060083 - public const int mtrl_tabs_icon_color_selector_colored = 2131099779; - - // aapt resource value: 0x7F060084 - public const int mtrl_tabs_legacy_text_color_selector = 2131099780; - - // aapt resource value: 0x7F060085 - public const int mtrl_tabs_ripple_color = 2131099781; - - // aapt resource value: 0x7F060087 - public const int mtrl_textinput_default_box_stroke_color = 2131099783; - - // aapt resource value: 0x7F060088 - public const int mtrl_textinput_disabled_color = 2131099784; - - // aapt resource value: 0x7F060089 - public const int mtrl_textinput_filled_box_default_background_color = 2131099785; - - // aapt resource value: 0x7F06008A - public const int mtrl_textinput_hovered_box_stroke_color = 2131099786; - - // aapt resource value: 0x7F060086 - public const int mtrl_text_btn_text_color_selector = 2131099782; - - // aapt resource value: 0x7F06008B - public const int notification_action_color_filter = 2131099787; - - // aapt resource value: 0x7F06008C - public const int notification_icon_bg_color = 2131099788; - - // aapt resource value: 0x7F06008D - public const int notification_material_background_media_default_color = 2131099789; - - // aapt resource value: 0x7F06008E - public const int primary_dark_material_dark = 2131099790; - - // aapt resource value: 0x7F06008F - public const int primary_dark_material_light = 2131099791; - - // aapt resource value: 0x7F060090 - public const int primary_material_dark = 2131099792; - - // aapt resource value: 0x7F060091 - public const int primary_material_light = 2131099793; - - // aapt resource value: 0x7F060092 - public const int primary_text_default_material_dark = 2131099794; - - // aapt resource value: 0x7F060093 - public const int primary_text_default_material_light = 2131099795; - - // aapt resource value: 0x7F060094 - public const int primary_text_disabled_material_dark = 2131099796; - - // aapt resource value: 0x7F060095 - public const int primary_text_disabled_material_light = 2131099797; - - // aapt resource value: 0x7F060096 - public const int ripple_material_dark = 2131099798; - - // aapt resource value: 0x7F060097 - public const int ripple_material_light = 2131099799; - - // aapt resource value: 0x7F060098 - public const int secondary_text_default_material_dark = 2131099800; - - // aapt resource value: 0x7F060099 - public const int secondary_text_default_material_light = 2131099801; - - // aapt resource value: 0x7F06009A - public const int secondary_text_disabled_material_dark = 2131099802; - - // aapt resource value: 0x7F06009B - public const int secondary_text_disabled_material_light = 2131099803; - - // aapt resource value: 0x7F06009C - public const int switch_thumb_disabled_material_dark = 2131099804; - - // aapt resource value: 0x7F06009D - public const int switch_thumb_disabled_material_light = 2131099805; - - // aapt resource value: 0x7F06009E - public const int switch_thumb_material_dark = 2131099806; - - // aapt resource value: 0x7F06009F - public const int switch_thumb_material_light = 2131099807; - - // aapt resource value: 0x7F0600A0 - public const int switch_thumb_normal_material_dark = 2131099808; - - // aapt resource value: 0x7F0600A1 - public const int switch_thumb_normal_material_light = 2131099809; - - // aapt resource value: 0x7F0600A2 - public const int tooltip_background_dark = 2131099810; - - // aapt resource value: 0x7F0600A3 - public const int tooltip_background_light = 2131099811; - - static Color() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Color() - { - } - } - - public partial class Dimension - { - - // aapt resource value: 0x7F070000 - public const int abc_action_bar_content_inset_material = 2131165184; - - // aapt resource value: 0x7F070001 - public const int abc_action_bar_content_inset_with_nav = 2131165185; - - // aapt resource value: 0x7F070002 - public const int abc_action_bar_default_height_material = 2131165186; - - // aapt resource value: 0x7F070003 - public const int abc_action_bar_default_padding_end_material = 2131165187; - - // aapt resource value: 0x7F070004 - public const int abc_action_bar_default_padding_start_material = 2131165188; - - // aapt resource value: 0x7F070005 - public const int abc_action_bar_elevation_material = 2131165189; - - // aapt resource value: 0x7F070006 - public const int abc_action_bar_icon_vertical_padding_material = 2131165190; - - // aapt resource value: 0x7F070007 - public const int abc_action_bar_overflow_padding_end_material = 2131165191; - - // aapt resource value: 0x7F070008 - public const int abc_action_bar_overflow_padding_start_material = 2131165192; - - // aapt resource value: 0x7F070009 - public const int abc_action_bar_stacked_max_height = 2131165193; - - // aapt resource value: 0x7F07000A - public const int abc_action_bar_stacked_tab_max_width = 2131165194; - - // aapt resource value: 0x7F07000B - public const int abc_action_bar_subtitle_bottom_margin_material = 2131165195; - - // aapt resource value: 0x7F07000C - public const int abc_action_bar_subtitle_top_margin_material = 2131165196; - - // aapt resource value: 0x7F07000D - public const int abc_action_button_min_height_material = 2131165197; - - // aapt resource value: 0x7F07000E - public const int abc_action_button_min_width_material = 2131165198; - - // aapt resource value: 0x7F07000F - public const int abc_action_button_min_width_overflow_material = 2131165199; - - // aapt resource value: 0x7F070010 - public const int abc_alert_dialog_button_bar_height = 2131165200; - - // aapt resource value: 0x7F070011 - public const int abc_alert_dialog_button_dimen = 2131165201; - - // aapt resource value: 0x7F070012 - public const int abc_button_inset_horizontal_material = 2131165202; - - // aapt resource value: 0x7F070013 - public const int abc_button_inset_vertical_material = 2131165203; - - // aapt resource value: 0x7F070014 - public const int abc_button_padding_horizontal_material = 2131165204; - - // aapt resource value: 0x7F070015 - public const int abc_button_padding_vertical_material = 2131165205; - - // aapt resource value: 0x7F070016 - public const int abc_cascading_menus_min_smallest_width = 2131165206; - - // aapt resource value: 0x7F070017 - public const int abc_config_prefDialogWidth = 2131165207; - - // aapt resource value: 0x7F070018 - public const int abc_control_corner_material = 2131165208; - - // aapt resource value: 0x7F070019 - public const int abc_control_inset_material = 2131165209; - - // aapt resource value: 0x7F07001A - public const int abc_control_padding_material = 2131165210; - - // aapt resource value: 0x7F07001B - public const int abc_dialog_corner_radius_material = 2131165211; - - // aapt resource value: 0x7F07001C - public const int abc_dialog_fixed_height_major = 2131165212; - - // aapt resource value: 0x7F07001D - public const int abc_dialog_fixed_height_minor = 2131165213; - - // aapt resource value: 0x7F07001E - public const int abc_dialog_fixed_width_major = 2131165214; - - // aapt resource value: 0x7F07001F - public const int abc_dialog_fixed_width_minor = 2131165215; - - // aapt resource value: 0x7F070020 - public const int abc_dialog_list_padding_bottom_no_buttons = 2131165216; - - // aapt resource value: 0x7F070021 - public const int abc_dialog_list_padding_top_no_title = 2131165217; - - // aapt resource value: 0x7F070022 - public const int abc_dialog_min_width_major = 2131165218; - - // aapt resource value: 0x7F070023 - public const int abc_dialog_min_width_minor = 2131165219; - - // aapt resource value: 0x7F070024 - public const int abc_dialog_padding_material = 2131165220; - - // aapt resource value: 0x7F070025 - public const int abc_dialog_padding_top_material = 2131165221; - - // aapt resource value: 0x7F070026 - public const int abc_dialog_title_divider_material = 2131165222; - - // aapt resource value: 0x7F070027 - public const int abc_disabled_alpha_material_dark = 2131165223; - - // aapt resource value: 0x7F070028 - public const int abc_disabled_alpha_material_light = 2131165224; - - // aapt resource value: 0x7F070029 - public const int abc_dropdownitem_icon_width = 2131165225; - - // aapt resource value: 0x7F07002A - public const int abc_dropdownitem_text_padding_left = 2131165226; - - // aapt resource value: 0x7F07002B - public const int abc_dropdownitem_text_padding_right = 2131165227; - - // aapt resource value: 0x7F07002C - public const int abc_edit_text_inset_bottom_material = 2131165228; - - // aapt resource value: 0x7F07002D - public const int abc_edit_text_inset_horizontal_material = 2131165229; - - // aapt resource value: 0x7F07002E - public const int abc_edit_text_inset_top_material = 2131165230; - - // aapt resource value: 0x7F07002F - public const int abc_floating_window_z = 2131165231; - - // aapt resource value: 0x7F070030 - public const int abc_list_item_height_large_material = 2131165232; - - // aapt resource value: 0x7F070031 - public const int abc_list_item_height_material = 2131165233; - - // aapt resource value: 0x7F070032 - public const int abc_list_item_height_small_material = 2131165234; - - // aapt resource value: 0x7F070033 - public const int abc_list_item_padding_horizontal_material = 2131165235; - - // aapt resource value: 0x7F070034 - public const int abc_panel_menu_list_width = 2131165236; - - // aapt resource value: 0x7F070035 - public const int abc_progress_bar_height_material = 2131165237; - - // aapt resource value: 0x7F070036 - public const int abc_search_view_preferred_height = 2131165238; - - // aapt resource value: 0x7F070037 - public const int abc_search_view_preferred_width = 2131165239; - - // aapt resource value: 0x7F070038 - public const int abc_seekbar_track_background_height_material = 2131165240; - - // aapt resource value: 0x7F070039 - public const int abc_seekbar_track_progress_height_material = 2131165241; - - // aapt resource value: 0x7F07003A - public const int abc_select_dialog_padding_start_material = 2131165242; - - // aapt resource value: 0x7F07003B - public const int abc_switch_padding = 2131165243; - - // aapt resource value: 0x7F07003C - public const int abc_text_size_body_1_material = 2131165244; - - // aapt resource value: 0x7F07003D - public const int abc_text_size_body_2_material = 2131165245; - - // aapt resource value: 0x7F07003E - public const int abc_text_size_button_material = 2131165246; - - // aapt resource value: 0x7F07003F - public const int abc_text_size_caption_material = 2131165247; - - // aapt resource value: 0x7F070040 - public const int abc_text_size_display_1_material = 2131165248; - - // aapt resource value: 0x7F070041 - public const int abc_text_size_display_2_material = 2131165249; - - // aapt resource value: 0x7F070042 - public const int abc_text_size_display_3_material = 2131165250; - - // aapt resource value: 0x7F070043 - public const int abc_text_size_display_4_material = 2131165251; - - // aapt resource value: 0x7F070044 - public const int abc_text_size_headline_material = 2131165252; - - // aapt resource value: 0x7F070045 - public const int abc_text_size_large_material = 2131165253; - - // aapt resource value: 0x7F070046 - public const int abc_text_size_medium_material = 2131165254; - - // aapt resource value: 0x7F070047 - public const int abc_text_size_menu_header_material = 2131165255; - - // aapt resource value: 0x7F070048 - public const int abc_text_size_menu_material = 2131165256; - - // aapt resource value: 0x7F070049 - public const int abc_text_size_small_material = 2131165257; - - // aapt resource value: 0x7F07004A - public const int abc_text_size_subhead_material = 2131165258; - - // aapt resource value: 0x7F07004B - public const int abc_text_size_subtitle_material_toolbar = 2131165259; - - // aapt resource value: 0x7F07004C - public const int abc_text_size_title_material = 2131165260; - - // aapt resource value: 0x7F07004D - public const int abc_text_size_title_material_toolbar = 2131165261; - - // aapt resource value: 0x7F07004E - public const int browser_actions_context_menu_max_width = 2131165262; - - // aapt resource value: 0x7F07004F - public const int browser_actions_context_menu_min_padding = 2131165263; - - // aapt resource value: 0x7F070050 - public const int cardview_compat_inset_shadow = 2131165264; - - // aapt resource value: 0x7F070051 - public const int cardview_default_elevation = 2131165265; - - // aapt resource value: 0x7F070052 - public const int cardview_default_radius = 2131165266; - - // aapt resource value: 0x7F070053 - public const int compat_button_inset_horizontal_material = 2131165267; - - // aapt resource value: 0x7F070054 - public const int compat_button_inset_vertical_material = 2131165268; - - // aapt resource value: 0x7F070055 - public const int compat_button_padding_horizontal_material = 2131165269; - - // aapt resource value: 0x7F070056 - public const int compat_button_padding_vertical_material = 2131165270; - - // aapt resource value: 0x7F070057 - public const int compat_control_corner_material = 2131165271; - - // aapt resource value: 0x7F070058 - public const int compat_notification_large_icon_max_height = 2131165272; - - // aapt resource value: 0x7F070059 - public const int compat_notification_large_icon_max_width = 2131165273; - - // aapt resource value: 0x7F07005A - public const int custom_profile_image = 2131165274; - - // aapt resource value: 0x7F07005B - public const int custom_profile_padding = 2131165275; - - // aapt resource value: 0x7F07005C - public const int design_appbar_elevation = 2131165276; - - // aapt resource value: 0x7F07005D - public const int design_bottom_navigation_active_item_max_width = 2131165277; - - // aapt resource value: 0x7F07005E - public const int design_bottom_navigation_active_item_min_width = 2131165278; - - // aapt resource value: 0x7F07005F - public const int design_bottom_navigation_active_text_size = 2131165279; - - // aapt resource value: 0x7F070060 - public const int design_bottom_navigation_elevation = 2131165280; - - // aapt resource value: 0x7F070061 - public const int design_bottom_navigation_height = 2131165281; - - // aapt resource value: 0x7F070062 - public const int design_bottom_navigation_icon_size = 2131165282; - - // aapt resource value: 0x7F070063 - public const int design_bottom_navigation_item_max_width = 2131165283; - - // aapt resource value: 0x7F070064 - public const int design_bottom_navigation_item_min_width = 2131165284; - - // aapt resource value: 0x7F070065 - public const int design_bottom_navigation_margin = 2131165285; - - // aapt resource value: 0x7F070066 - public const int design_bottom_navigation_shadow_height = 2131165286; - - // aapt resource value: 0x7F070067 - public const int design_bottom_navigation_text_size = 2131165287; - - // aapt resource value: 0x7F070068 - public const int design_bottom_sheet_modal_elevation = 2131165288; - - // aapt resource value: 0x7F070069 - public const int design_bottom_sheet_peek_height_min = 2131165289; - - // aapt resource value: 0x7F07006A - public const int design_fab_border_width = 2131165290; - - // aapt resource value: 0x7F07006B - public const int design_fab_elevation = 2131165291; - - // aapt resource value: 0x7F07006C - public const int design_fab_image_size = 2131165292; - - // aapt resource value: 0x7F07006D - public const int design_fab_size_mini = 2131165293; - - // aapt resource value: 0x7F07006E - public const int design_fab_size_normal = 2131165294; - - // aapt resource value: 0x7F07006F - public const int design_fab_translation_z_hovered_focused = 2131165295; - - // aapt resource value: 0x7F070070 - public const int design_fab_translation_z_pressed = 2131165296; - - // aapt resource value: 0x7F070071 - public const int design_navigation_elevation = 2131165297; - - // aapt resource value: 0x7F070072 - public const int design_navigation_icon_padding = 2131165298; - - // aapt resource value: 0x7F070073 - public const int design_navigation_icon_size = 2131165299; - - // aapt resource value: 0x7F070074 - public const int design_navigation_item_horizontal_padding = 2131165300; - - // aapt resource value: 0x7F070075 - public const int design_navigation_item_icon_padding = 2131165301; - - // aapt resource value: 0x7F070076 - public const int design_navigation_max_width = 2131165302; - - // aapt resource value: 0x7F070077 - public const int design_navigation_padding_bottom = 2131165303; - - // aapt resource value: 0x7F070078 - public const int design_navigation_separator_vertical_padding = 2131165304; - - // aapt resource value: 0x7F070079 - public const int design_snackbar_action_inline_max_width = 2131165305; - - // aapt resource value: 0x7F07007A - public const int design_snackbar_background_corner_radius = 2131165306; - - // aapt resource value: 0x7F07007B - public const int design_snackbar_elevation = 2131165307; - - // aapt resource value: 0x7F07007C - public const int design_snackbar_extra_spacing_horizontal = 2131165308; - - // aapt resource value: 0x7F07007D - public const int design_snackbar_max_width = 2131165309; - - // aapt resource value: 0x7F07007E - public const int design_snackbar_min_width = 2131165310; - - // aapt resource value: 0x7F07007F - public const int design_snackbar_padding_horizontal = 2131165311; - - // aapt resource value: 0x7F070080 - public const int design_snackbar_padding_vertical = 2131165312; - - // aapt resource value: 0x7F070081 - public const int design_snackbar_padding_vertical_2lines = 2131165313; - - // aapt resource value: 0x7F070082 - public const int design_snackbar_text_size = 2131165314; - - // aapt resource value: 0x7F070083 - public const int design_tab_max_width = 2131165315; - - // aapt resource value: 0x7F070084 - public const int design_tab_scrollable_min_width = 2131165316; - - // aapt resource value: 0x7F070085 - public const int design_tab_text_size = 2131165317; - - // aapt resource value: 0x7F070086 - public const int design_tab_text_size_2line = 2131165318; - - // aapt resource value: 0x7F070087 - public const int design_textinput_caption_translate_y = 2131165319; - - // aapt resource value: 0x7F070088 - public const int disabled_alpha_material_dark = 2131165320; - - // aapt resource value: 0x7F070089 - public const int disabled_alpha_material_light = 2131165321; - - // aapt resource value: 0x7F07008A - public const int fab_margin = 2131165322; - - // aapt resource value: 0x7F07008B - public const int fastscroll_default_thickness = 2131165323; - - // aapt resource value: 0x7F07008C - public const int fastscroll_margin = 2131165324; - - // aapt resource value: 0x7F07008D - public const int fastscroll_minimum_range = 2131165325; - - // aapt resource value: 0x7F07008E - public const int highlight_alpha_material_colored = 2131165326; - - // aapt resource value: 0x7F07008F - public const int highlight_alpha_material_dark = 2131165327; - - // aapt resource value: 0x7F070090 - public const int highlight_alpha_material_light = 2131165328; - - // aapt resource value: 0x7F070091 - public const int hint_alpha_material_dark = 2131165329; - - // aapt resource value: 0x7F070092 - public const int hint_alpha_material_light = 2131165330; - - // aapt resource value: 0x7F070093 - public const int hint_pressed_alpha_material_dark = 2131165331; - - // aapt resource value: 0x7F070094 - public const int hint_pressed_alpha_material_light = 2131165332; - - // aapt resource value: 0x7F070095 - public const int item_touch_helper_max_drag_scroll_per_frame = 2131165333; - - // aapt resource value: 0x7F070096 - public const int item_touch_helper_swipe_escape_max_velocity = 2131165334; - - // aapt resource value: 0x7F070097 - public const int item_touch_helper_swipe_escape_velocity = 2131165335; - - // aapt resource value: 0x7F070098 - public const int mr_cast_group_volume_seekbar_height = 2131165336; - - // aapt resource value: 0x7F070099 - public const int mr_cast_meta_art_size = 2131165337; - - // aapt resource value: 0x7F07009A - public const int mr_cast_meta_subtitle_text_size = 2131165338; - - // aapt resource value: 0x7F07009B - public const int mr_cast_route_volume_seekbar_height = 2131165339; - - // aapt resource value: 0x7F07009C - public const int mr_cast_seekbar_thumb_size = 2131165340; - - // aapt resource value: 0x7F07009D - public const int mr_controller_volume_group_list_item_height = 2131165341; - - // aapt resource value: 0x7F07009E - public const int mr_controller_volume_group_list_item_icon_size = 2131165342; - - // aapt resource value: 0x7F07009F - public const int mr_controller_volume_group_list_max_height = 2131165343; - - // aapt resource value: 0x7F0700A0 - public const int mr_controller_volume_group_list_padding_top = 2131165344; - - // aapt resource value: 0x7F0700A1 - public const int mr_dialog_fixed_width_major = 2131165345; - - // aapt resource value: 0x7F0700A2 - public const int mr_dialog_fixed_width_minor = 2131165346; - - // aapt resource value: 0x7F0700A3 - public const int mr_dynamic_dialog_header_text_size = 2131165347; - - // aapt resource value: 0x7F0700A4 - public const int mr_dynamic_dialog_route_text_size = 2131165348; - - // aapt resource value: 0x7F0700A5 - public const int mr_dynamic_dialog_row_height = 2131165349; - - // aapt resource value: 0x7F0700A6 - public const int mr_dynamic_volume_group_list_item_height = 2131165350; - - // aapt resource value: 0x7F0700A7 - public const int mtrl_bottomappbar_fabOffsetEndMode = 2131165351; - - // aapt resource value: 0x7F0700A8 - public const int mtrl_bottomappbar_fab_cradle_margin = 2131165352; - - // aapt resource value: 0x7F0700A9 - public const int mtrl_bottomappbar_fab_cradle_rounded_corner_radius = 2131165353; - - // aapt resource value: 0x7F0700AA - public const int mtrl_bottomappbar_fab_cradle_vertical_offset = 2131165354; - - // aapt resource value: 0x7F0700AB - public const int mtrl_bottomappbar_height = 2131165355; - - // aapt resource value: 0x7F0700AC - public const int mtrl_btn_corner_radius = 2131165356; - - // aapt resource value: 0x7F0700AD - public const int mtrl_btn_dialog_btn_min_width = 2131165357; - - // aapt resource value: 0x7F0700AE - public const int mtrl_btn_disabled_elevation = 2131165358; - - // aapt resource value: 0x7F0700AF - public const int mtrl_btn_disabled_z = 2131165359; - - // aapt resource value: 0x7F0700B0 - public const int mtrl_btn_elevation = 2131165360; - - // aapt resource value: 0x7F0700B1 - public const int mtrl_btn_focused_z = 2131165361; - - // aapt resource value: 0x7F0700B2 - public const int mtrl_btn_hovered_z = 2131165362; - - // aapt resource value: 0x7F0700B3 - public const int mtrl_btn_icon_btn_padding_left = 2131165363; - - // aapt resource value: 0x7F0700B4 - public const int mtrl_btn_icon_padding = 2131165364; - - // aapt resource value: 0x7F0700B5 - public const int mtrl_btn_inset = 2131165365; - - // aapt resource value: 0x7F0700B6 - public const int mtrl_btn_letter_spacing = 2131165366; - - // aapt resource value: 0x7F0700B7 - public const int mtrl_btn_padding_bottom = 2131165367; - - // aapt resource value: 0x7F0700B8 - public const int mtrl_btn_padding_left = 2131165368; - - // aapt resource value: 0x7F0700B9 - public const int mtrl_btn_padding_right = 2131165369; - - // aapt resource value: 0x7F0700BA - public const int mtrl_btn_padding_top = 2131165370; - - // aapt resource value: 0x7F0700BB - public const int mtrl_btn_pressed_z = 2131165371; - - // aapt resource value: 0x7F0700BC - public const int mtrl_btn_stroke_size = 2131165372; - - // aapt resource value: 0x7F0700BD - public const int mtrl_btn_text_btn_icon_padding = 2131165373; - - // aapt resource value: 0x7F0700BE - public const int mtrl_btn_text_btn_padding_left = 2131165374; - - // aapt resource value: 0x7F0700BF - public const int mtrl_btn_text_btn_padding_right = 2131165375; - - // aapt resource value: 0x7F0700C0 - public const int mtrl_btn_text_size = 2131165376; - - // aapt resource value: 0x7F0700C1 - public const int mtrl_btn_z = 2131165377; - - // aapt resource value: 0x7F0700C2 - public const int mtrl_card_elevation = 2131165378; - - // aapt resource value: 0x7F0700C3 - public const int mtrl_card_spacing = 2131165379; - - // aapt resource value: 0x7F0700C4 - public const int mtrl_chip_pressed_translation_z = 2131165380; - - // aapt resource value: 0x7F0700C5 - public const int mtrl_chip_text_size = 2131165381; - - // aapt resource value: 0x7F0700C6 - public const int mtrl_fab_elevation = 2131165382; - - // aapt resource value: 0x7F0700C7 - public const int mtrl_fab_translation_z_hovered_focused = 2131165383; - - // aapt resource value: 0x7F0700C8 - public const int mtrl_fab_translation_z_pressed = 2131165384; - - // aapt resource value: 0x7F0700C9 - public const int mtrl_navigation_elevation = 2131165385; - - // aapt resource value: 0x7F0700CA - public const int mtrl_navigation_item_horizontal_padding = 2131165386; - - // aapt resource value: 0x7F0700CB - public const int mtrl_navigation_item_icon_padding = 2131165387; - - // aapt resource value: 0x7F0700CC - public const int mtrl_snackbar_background_corner_radius = 2131165388; - - // aapt resource value: 0x7F0700CD - public const int mtrl_snackbar_margin = 2131165389; - - // aapt resource value: 0x7F0700CE - public const int mtrl_textinput_box_bottom_offset = 2131165390; - - // aapt resource value: 0x7F0700CF - public const int mtrl_textinput_box_corner_radius_medium = 2131165391; - - // aapt resource value: 0x7F0700D0 - public const int mtrl_textinput_box_corner_radius_small = 2131165392; - - // aapt resource value: 0x7F0700D1 - public const int mtrl_textinput_box_label_cutout_padding = 2131165393; - - // aapt resource value: 0x7F0700D2 - public const int mtrl_textinput_box_padding_end = 2131165394; - - // aapt resource value: 0x7F0700D3 - public const int mtrl_textinput_box_stroke_width_default = 2131165395; - - // aapt resource value: 0x7F0700D4 - public const int mtrl_textinput_box_stroke_width_focused = 2131165396; - - // aapt resource value: 0x7F0700D5 - public const int mtrl_textinput_outline_box_expanded_padding = 2131165397; - - // aapt resource value: 0x7F0700D6 - public const int mtrl_toolbar_default_height = 2131165398; - - // aapt resource value: 0x7F0700D7 - public const int notification_action_icon_size = 2131165399; - - // aapt resource value: 0x7F0700D8 - public const int notification_action_text_size = 2131165400; - - // aapt resource value: 0x7F0700D9 - public const int notification_big_circle_margin = 2131165401; - - // aapt resource value: 0x7F0700DA - public const int notification_content_margin_start = 2131165402; - - // aapt resource value: 0x7F0700DB - public const int notification_large_icon_height = 2131165403; - - // aapt resource value: 0x7F0700DC - public const int notification_large_icon_width = 2131165404; - - // aapt resource value: 0x7F0700DD - public const int notification_main_column_padding_top = 2131165405; - - // aapt resource value: 0x7F0700DE - public const int notification_media_narrow_margin = 2131165406; - - // aapt resource value: 0x7F0700DF - public const int notification_right_icon_size = 2131165407; - - // aapt resource value: 0x7F0700E0 - public const int notification_right_side_padding_top = 2131165408; - - // aapt resource value: 0x7F0700E1 - public const int notification_small_icon_background_padding = 2131165409; - - // aapt resource value: 0x7F0700E2 - public const int notification_small_icon_size_as_large = 2131165410; - - // aapt resource value: 0x7F0700E3 - public const int notification_subtext_size = 2131165411; - - // aapt resource value: 0x7F0700E4 - public const int notification_top_pad = 2131165412; - - // aapt resource value: 0x7F0700E5 - public const int notification_top_pad_large_text = 2131165413; - - // aapt resource value: 0x7F0700E6 - public const int subtitle_corner_radius = 2131165414; - - // aapt resource value: 0x7F0700E7 - public const int subtitle_outline_width = 2131165415; - - // aapt resource value: 0x7F0700E8 - public const int subtitle_shadow_offset = 2131165416; - - // aapt resource value: 0x7F0700E9 - public const int subtitle_shadow_radius = 2131165417; - - // aapt resource value: 0x7F0700EA - public const int tooltip_corner_radius = 2131165418; - - // aapt resource value: 0x7F0700EB - public const int tooltip_horizontal_padding = 2131165419; - - // aapt resource value: 0x7F0700EC - public const int tooltip_margin = 2131165420; - - // aapt resource value: 0x7F0700ED - public const int tooltip_precise_anchor_extra_offset = 2131165421; - - // aapt resource value: 0x7F0700EE - public const int tooltip_precise_anchor_threshold = 2131165422; - - // aapt resource value: 0x7F0700EF - public const int tooltip_vertical_padding = 2131165423; - - // aapt resource value: 0x7F0700F0 - public const int tooltip_y_offset_non_touch = 2131165424; - - // aapt resource value: 0x7F0700F1 - public const int tooltip_y_offset_touch = 2131165425; - - static Dimension() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Dimension() - { - } - } - - public partial class Drawable - { - - // aapt resource value: 0x7F080006 - public const int abc_ab_share_pack_mtrl_alpha = 2131230726; - - // aapt resource value: 0x7F080007 - public const int abc_action_bar_item_background_material = 2131230727; - - // aapt resource value: 0x7F080008 - public const int abc_btn_borderless_material = 2131230728; - - // aapt resource value: 0x7F080009 - public const int abc_btn_check_material = 2131230729; - - // aapt resource value: 0x7F08000A - public const int abc_btn_check_material_anim = 2131230730; - - // aapt resource value: 0x7F08000B - public const int abc_btn_check_to_on_mtrl_000 = 2131230731; - - // aapt resource value: 0x7F08000C - public const int abc_btn_check_to_on_mtrl_015 = 2131230732; - - // aapt resource value: 0x7F08000D - public const int abc_btn_colored_material = 2131230733; - - // aapt resource value: 0x7F08000E - public const int abc_btn_default_mtrl_shape = 2131230734; - - // aapt resource value: 0x7F08000F - public const int abc_btn_radio_material = 2131230735; - - // aapt resource value: 0x7F080010 - public const int abc_btn_radio_material_anim = 2131230736; - - // aapt resource value: 0x7F080011 - public const int abc_btn_radio_to_on_mtrl_000 = 2131230737; - - // aapt resource value: 0x7F080012 - public const int abc_btn_radio_to_on_mtrl_015 = 2131230738; - - // aapt resource value: 0x7F080013 - public const int abc_btn_switch_to_on_mtrl_00001 = 2131230739; - - // aapt resource value: 0x7F080014 - public const int abc_btn_switch_to_on_mtrl_00012 = 2131230740; - - // aapt resource value: 0x7F080015 - public const int abc_cab_background_internal_bg = 2131230741; - - // aapt resource value: 0x7F080016 - public const int abc_cab_background_top_material = 2131230742; - - // aapt resource value: 0x7F080017 - public const int abc_cab_background_top_mtrl_alpha = 2131230743; - - // aapt resource value: 0x7F080018 - public const int abc_control_background_material = 2131230744; - - // aapt resource value: 0x7F080019 - public const int abc_dialog_material_background = 2131230745; - - // aapt resource value: 0x7F08001A - public const int abc_edit_text_material = 2131230746; - - // aapt resource value: 0x7F08001B - public const int abc_ic_ab_back_material = 2131230747; - - // aapt resource value: 0x7F08001C - public const int abc_ic_arrow_drop_right_black_24dp = 2131230748; - - // aapt resource value: 0x7F08001D - public const int abc_ic_clear_material = 2131230749; - - // aapt resource value: 0x7F08001E - public const int abc_ic_commit_search_api_mtrl_alpha = 2131230750; - - // aapt resource value: 0x7F08001F - public const int abc_ic_go_search_api_material = 2131230751; - - // aapt resource value: 0x7F080020 - public const int abc_ic_menu_copy_mtrl_am_alpha = 2131230752; - - // aapt resource value: 0x7F080021 - public const int abc_ic_menu_cut_mtrl_alpha = 2131230753; - - // aapt resource value: 0x7F080022 - public const int abc_ic_menu_overflow_material = 2131230754; - - // aapt resource value: 0x7F080023 - public const int abc_ic_menu_paste_mtrl_am_alpha = 2131230755; - - // aapt resource value: 0x7F080024 - public const int abc_ic_menu_selectall_mtrl_alpha = 2131230756; - - // aapt resource value: 0x7F080025 - public const int abc_ic_menu_share_mtrl_alpha = 2131230757; - - // aapt resource value: 0x7F080026 - public const int abc_ic_search_api_material = 2131230758; - - // aapt resource value: 0x7F080027 - public const int abc_ic_star_black_16dp = 2131230759; - - // aapt resource value: 0x7F080028 - public const int abc_ic_star_black_36dp = 2131230760; - - // aapt resource value: 0x7F080029 - public const int abc_ic_star_black_48dp = 2131230761; - - // aapt resource value: 0x7F08002A - public const int abc_ic_star_half_black_16dp = 2131230762; - - // aapt resource value: 0x7F08002B - public const int abc_ic_star_half_black_36dp = 2131230763; - - // aapt resource value: 0x7F08002C - public const int abc_ic_star_half_black_48dp = 2131230764; - - // aapt resource value: 0x7F08002D - public const int abc_ic_voice_search_api_material = 2131230765; - - // aapt resource value: 0x7F08002E - public const int abc_item_background_holo_dark = 2131230766; - - // aapt resource value: 0x7F08002F - public const int abc_item_background_holo_light = 2131230767; - - // aapt resource value: 0x7F080030 - public const int abc_list_divider_material = 2131230768; - - // aapt resource value: 0x7F080031 - public const int abc_list_divider_mtrl_alpha = 2131230769; - - // aapt resource value: 0x7F080032 - public const int abc_list_focused_holo = 2131230770; - - // aapt resource value: 0x7F080033 - public const int abc_list_longpressed_holo = 2131230771; - - // aapt resource value: 0x7F080034 - public const int abc_list_pressed_holo_dark = 2131230772; - - // aapt resource value: 0x7F080035 - public const int abc_list_pressed_holo_light = 2131230773; - - // aapt resource value: 0x7F080036 - public const int abc_list_selector_background_transition_holo_dark = 2131230774; - - // aapt resource value: 0x7F080037 - public const int abc_list_selector_background_transition_holo_light = 2131230775; - - // aapt resource value: 0x7F080038 - public const int abc_list_selector_disabled_holo_dark = 2131230776; - - // aapt resource value: 0x7F080039 - public const int abc_list_selector_disabled_holo_light = 2131230777; - - // aapt resource value: 0x7F08003A - public const int abc_list_selector_holo_dark = 2131230778; - - // aapt resource value: 0x7F08003B - public const int abc_list_selector_holo_light = 2131230779; - - // aapt resource value: 0x7F08003C - public const int abc_menu_hardkey_panel_mtrl_mult = 2131230780; - - // aapt resource value: 0x7F08003D - public const int abc_popup_background_mtrl_mult = 2131230781; - - // aapt resource value: 0x7F08003E - public const int abc_ratingbar_indicator_material = 2131230782; - - // aapt resource value: 0x7F08003F - public const int abc_ratingbar_material = 2131230783; - - // aapt resource value: 0x7F080040 - public const int abc_ratingbar_small_material = 2131230784; - - // aapt resource value: 0x7F080041 - public const int abc_scrubber_control_off_mtrl_alpha = 2131230785; - - // aapt resource value: 0x7F080042 - public const int abc_scrubber_control_to_pressed_mtrl_000 = 2131230786; - - // aapt resource value: 0x7F080043 - public const int abc_scrubber_control_to_pressed_mtrl_005 = 2131230787; - - // aapt resource value: 0x7F080044 - public const int abc_scrubber_primary_mtrl_alpha = 2131230788; - - // aapt resource value: 0x7F080045 - public const int abc_scrubber_track_mtrl_alpha = 2131230789; - - // aapt resource value: 0x7F080046 - public const int abc_seekbar_thumb_material = 2131230790; - - // aapt resource value: 0x7F080047 - public const int abc_seekbar_tick_mark_material = 2131230791; - - // aapt resource value: 0x7F080048 - public const int abc_seekbar_track_material = 2131230792; - - // aapt resource value: 0x7F080049 - public const int abc_spinner_mtrl_am_alpha = 2131230793; - - // aapt resource value: 0x7F08004A - public const int abc_spinner_textfield_background_material = 2131230794; - - // aapt resource value: 0x7F08004B - public const int abc_switch_thumb_material = 2131230795; - - // aapt resource value: 0x7F08004C - public const int abc_switch_track_mtrl_alpha = 2131230796; - - // aapt resource value: 0x7F08004D - public const int abc_tab_indicator_material = 2131230797; - - // aapt resource value: 0x7F08004E - public const int abc_tab_indicator_mtrl_alpha = 2131230798; - - // aapt resource value: 0x7F080056 - public const int abc_textfield_activated_mtrl_alpha = 2131230806; - - // aapt resource value: 0x7F080057 - public const int abc_textfield_default_mtrl_alpha = 2131230807; - - // aapt resource value: 0x7F080058 - public const int abc_textfield_search_activated_mtrl_alpha = 2131230808; - - // aapt resource value: 0x7F080059 - public const int abc_textfield_search_default_mtrl_alpha = 2131230809; - - // aapt resource value: 0x7F08005A - public const int abc_textfield_search_material = 2131230810; - - // aapt resource value: 0x7F08004F - public const int abc_text_cursor_material = 2131230799; - - // aapt resource value: 0x7F080050 - public const int abc_text_select_handle_left_mtrl_dark = 2131230800; - - // aapt resource value: 0x7F080051 - public const int abc_text_select_handle_left_mtrl_light = 2131230801; - - // aapt resource value: 0x7F080052 - public const int abc_text_select_handle_middle_mtrl_dark = 2131230802; - - // aapt resource value: 0x7F080053 - public const int abc_text_select_handle_middle_mtrl_light = 2131230803; - - // aapt resource value: 0x7F080054 - public const int abc_text_select_handle_right_mtrl_dark = 2131230804; - - // aapt resource value: 0x7F080055 - public const int abc_text_select_handle_right_mtrl_light = 2131230805; - - // aapt resource value: 0x7F08005B - public const int abc_vector_test = 2131230811; - - // aapt resource value: 0x7F08005C - public const int amu_bubble_mask = 2131230812; - - // aapt resource value: 0x7F08005D - public const int amu_bubble_shadow = 2131230813; - - // aapt resource value: 0x7F08005E - public const int avd_hide_password = 2131230814; - - // aapt resource value: 0x7F08005F - public const int avd_show_password = 2131230815; - - // aapt resource value: 0x7F080060 - public const int btn_checkbox_checked_mtrl = 2131230816; - - // aapt resource value: 0x7F080061 - public const int btn_checkbox_checked_to_unchecked_mtrl_animation = 2131230817; - - // aapt resource value: 0x7F080062 - public const int btn_checkbox_unchecked_mtrl = 2131230818; - - // aapt resource value: 0x7F080063 - public const int btn_checkbox_unchecked_to_checked_mtrl_animation = 2131230819; - - // aapt resource value: 0x7F080064 - public const int btn_radio_off_mtrl = 2131230820; - - // aapt resource value: 0x7F080065 - public const int btn_radio_off_to_on_mtrl_animation = 2131230821; - - // aapt resource value: 0x7F080066 - public const int btn_radio_on_mtrl = 2131230822; - - // aapt resource value: 0x7F080067 - public const int btn_radio_on_to_off_mtrl_animation = 2131230823; - - // aapt resource value: 0x7F080068 - public const int common_full_open_on_phone = 2131230824; - - // aapt resource value: 0x7F080069 - public const int common_google_signin_btn_icon_dark = 2131230825; - - // aapt resource value: 0x7F08006A - public const int common_google_signin_btn_icon_dark_focused = 2131230826; - - // aapt resource value: 0x7F08006B - public const int common_google_signin_btn_icon_dark_normal = 2131230827; - - // aapt resource value: 0x7F08006C - public const int common_google_signin_btn_icon_dark_normal_background = 2131230828; - - // aapt resource value: 0x7F08006D - public const int common_google_signin_btn_icon_disabled = 2131230829; - - // aapt resource value: 0x7F08006E - public const int common_google_signin_btn_icon_light = 2131230830; - - // aapt resource value: 0x7F08006F - public const int common_google_signin_btn_icon_light_focused = 2131230831; - - // aapt resource value: 0x7F080070 - public const int common_google_signin_btn_icon_light_normal = 2131230832; - - // aapt resource value: 0x7F080071 - public const int common_google_signin_btn_icon_light_normal_background = 2131230833; - - // aapt resource value: 0x7F080072 - public const int common_google_signin_btn_text_dark = 2131230834; - - // aapt resource value: 0x7F080073 - public const int common_google_signin_btn_text_dark_focused = 2131230835; - - // aapt resource value: 0x7F080074 - public const int common_google_signin_btn_text_dark_normal = 2131230836; - - // aapt resource value: 0x7F080075 - public const int common_google_signin_btn_text_dark_normal_background = 2131230837; - - // aapt resource value: 0x7F080076 - public const int common_google_signin_btn_text_disabled = 2131230838; - - // aapt resource value: 0x7F080077 - public const int common_google_signin_btn_text_light = 2131230839; - - // aapt resource value: 0x7F080078 - public const int common_google_signin_btn_text_light_focused = 2131230840; - - // aapt resource value: 0x7F080079 - public const int common_google_signin_btn_text_light_normal = 2131230841; - - // aapt resource value: 0x7F08007A - public const int common_google_signin_btn_text_light_normal_background = 2131230842; - - // aapt resource value: 0x7F08007B - public const int design_bottom_navigation_item_background = 2131230843; - - // aapt resource value: 0x7F08007C - public const int design_fab_background = 2131230844; - - // aapt resource value: 0x7F08007D - public const int design_ic_visibility = 2131230845; - - // aapt resource value: 0x7F08007E - public const int design_ic_visibility_off = 2131230846; - - // aapt resource value: 0x7F08007F - public const int design_password_eye = 2131230847; - - // aapt resource value: 0x7F080080 - public const int design_snackbar_background = 2131230848; - - // aapt resource value: 0x7F080081 - public const int googleg_disabled_color_18 = 2131230849; - - // aapt resource value: 0x7F080082 - public const int googleg_standard_color_18 = 2131230850; - - // aapt resource value: 0x7F080083 - public const int gran = 2131230851; - - // aapt resource value: 0x7F080084 - public const int ic_audiotrack_dark = 2131230852; - - // aapt resource value: 0x7F080085 - public const int ic_audiotrack_light = 2131230853; - - // aapt resource value: 0x7F080086 - public const int ic_checked_checkbox = 2131230854; - - // aapt resource value: 0x7F080087 - public const int ic_dialog_close_dark = 2131230855; - - // aapt resource value: 0x7F080088 - public const int ic_dialog_close_light = 2131230856; - - // aapt resource value: 0x7F080089 - public const int ic_group_collapse_00 = 2131230857; - - // aapt resource value: 0x7F08008A - public const int ic_group_collapse_01 = 2131230858; - - // aapt resource value: 0x7F08008B - public const int ic_group_collapse_02 = 2131230859; - - // aapt resource value: 0x7F08008C - public const int ic_group_collapse_03 = 2131230860; - - // aapt resource value: 0x7F08008D - public const int ic_group_collapse_04 = 2131230861; - - // aapt resource value: 0x7F08008E - public const int ic_group_collapse_05 = 2131230862; - - // aapt resource value: 0x7F08008F - public const int ic_group_collapse_06 = 2131230863; - - // aapt resource value: 0x7F080090 - public const int ic_group_collapse_07 = 2131230864; - - // aapt resource value: 0x7F080091 - public const int ic_group_collapse_08 = 2131230865; - - // aapt resource value: 0x7F080092 - public const int ic_group_collapse_09 = 2131230866; - - // aapt resource value: 0x7F080093 - public const int ic_group_collapse_10 = 2131230867; - - // aapt resource value: 0x7F080094 - public const int ic_group_collapse_11 = 2131230868; - - // aapt resource value: 0x7F080095 - public const int ic_group_collapse_12 = 2131230869; - - // aapt resource value: 0x7F080096 - public const int ic_group_collapse_13 = 2131230870; - - // aapt resource value: 0x7F080097 - public const int ic_group_collapse_14 = 2131230871; - - // aapt resource value: 0x7F080098 - public const int ic_group_collapse_15 = 2131230872; - - // aapt resource value: 0x7F080099 - public const int ic_group_expand_00 = 2131230873; - - // aapt resource value: 0x7F08009A - public const int ic_group_expand_01 = 2131230874; - - // aapt resource value: 0x7F08009B - public const int ic_group_expand_02 = 2131230875; - - // aapt resource value: 0x7F08009C - public const int ic_group_expand_03 = 2131230876; - - // aapt resource value: 0x7F08009D - public const int ic_group_expand_04 = 2131230877; - - // aapt resource value: 0x7F08009E - public const int ic_group_expand_05 = 2131230878; - - // aapt resource value: 0x7F08009F - public const int ic_group_expand_06 = 2131230879; - - // aapt resource value: 0x7F0800A0 - public const int ic_group_expand_07 = 2131230880; - - // aapt resource value: 0x7F0800A1 - public const int ic_group_expand_08 = 2131230881; - - // aapt resource value: 0x7F0800A2 - public const int ic_group_expand_09 = 2131230882; - - // aapt resource value: 0x7F0800A3 - public const int ic_group_expand_10 = 2131230883; - - // aapt resource value: 0x7F0800A4 - public const int ic_group_expand_11 = 2131230884; - - // aapt resource value: 0x7F0800A5 - public const int ic_group_expand_12 = 2131230885; - - // aapt resource value: 0x7F0800A6 - public const int ic_group_expand_13 = 2131230886; - - // aapt resource value: 0x7F0800A7 - public const int ic_group_expand_14 = 2131230887; - - // aapt resource value: 0x7F0800A8 - public const int ic_group_expand_15 = 2131230888; - - // aapt resource value: 0x7F0800A9 - public const int ic_launcher = 2131230889; - - // aapt resource value: 0x7F0800AA - public const int ic_media_pause_dark = 2131230890; - - // aapt resource value: 0x7F0800AB - public const int ic_media_pause_light = 2131230891; - - // aapt resource value: 0x7F0800AC - public const int ic_media_play_dark = 2131230892; - - // aapt resource value: 0x7F0800AD - public const int ic_media_play_light = 2131230893; - - // aapt resource value: 0x7F0800AE - public const int ic_media_stop_dark = 2131230894; - - // aapt resource value: 0x7F0800AF - public const int ic_media_stop_light = 2131230895; - - // aapt resource value: 0x7F0800B0 - public const int ic_mr_button_connected_00_dark = 2131230896; - - // aapt resource value: 0x7F0800B1 - public const int ic_mr_button_connected_00_light = 2131230897; - - // aapt resource value: 0x7F0800B2 - public const int ic_mr_button_connected_01_dark = 2131230898; - - // aapt resource value: 0x7F0800B3 - public const int ic_mr_button_connected_01_light = 2131230899; - - // aapt resource value: 0x7F0800B4 - public const int ic_mr_button_connected_02_dark = 2131230900; - - // aapt resource value: 0x7F0800B5 - public const int ic_mr_button_connected_02_light = 2131230901; - - // aapt resource value: 0x7F0800B6 - public const int ic_mr_button_connected_03_dark = 2131230902; - - // aapt resource value: 0x7F0800B7 - public const int ic_mr_button_connected_03_light = 2131230903; - - // aapt resource value: 0x7F0800B8 - public const int ic_mr_button_connected_04_dark = 2131230904; - - // aapt resource value: 0x7F0800B9 - public const int ic_mr_button_connected_04_light = 2131230905; - - // aapt resource value: 0x7F0800BA - public const int ic_mr_button_connected_05_dark = 2131230906; - - // aapt resource value: 0x7F0800BB - public const int ic_mr_button_connected_05_light = 2131230907; - - // aapt resource value: 0x7F0800BC - public const int ic_mr_button_connected_06_dark = 2131230908; - - // aapt resource value: 0x7F0800BD - public const int ic_mr_button_connected_06_light = 2131230909; - - // aapt resource value: 0x7F0800BE - public const int ic_mr_button_connected_07_dark = 2131230910; - - // aapt resource value: 0x7F0800BF - public const int ic_mr_button_connected_07_light = 2131230911; - - // aapt resource value: 0x7F0800C0 - public const int ic_mr_button_connected_08_dark = 2131230912; - - // aapt resource value: 0x7F0800C1 - public const int ic_mr_button_connected_08_light = 2131230913; - - // aapt resource value: 0x7F0800C2 - public const int ic_mr_button_connected_09_dark = 2131230914; - - // aapt resource value: 0x7F0800C3 - public const int ic_mr_button_connected_09_light = 2131230915; - - // aapt resource value: 0x7F0800C4 - public const int ic_mr_button_connected_10_dark = 2131230916; - - // aapt resource value: 0x7F0800C5 - public const int ic_mr_button_connected_10_light = 2131230917; - - // aapt resource value: 0x7F0800C6 - public const int ic_mr_button_connected_11_dark = 2131230918; - - // aapt resource value: 0x7F0800C7 - public const int ic_mr_button_connected_11_light = 2131230919; - - // aapt resource value: 0x7F0800C8 - public const int ic_mr_button_connected_12_dark = 2131230920; - - // aapt resource value: 0x7F0800C9 - public const int ic_mr_button_connected_12_light = 2131230921; - - // aapt resource value: 0x7F0800CA - public const int ic_mr_button_connected_13_dark = 2131230922; - - // aapt resource value: 0x7F0800CB - public const int ic_mr_button_connected_13_light = 2131230923; - - // aapt resource value: 0x7F0800CC - public const int ic_mr_button_connected_14_dark = 2131230924; - - // aapt resource value: 0x7F0800CD - public const int ic_mr_button_connected_14_light = 2131230925; - - // aapt resource value: 0x7F0800CE - public const int ic_mr_button_connected_15_dark = 2131230926; - - // aapt resource value: 0x7F0800CF - public const int ic_mr_button_connected_15_light = 2131230927; - - // aapt resource value: 0x7F0800D0 - public const int ic_mr_button_connected_16_dark = 2131230928; - - // aapt resource value: 0x7F0800D1 - public const int ic_mr_button_connected_16_light = 2131230929; - - // aapt resource value: 0x7F0800D2 - public const int ic_mr_button_connected_17_dark = 2131230930; - - // aapt resource value: 0x7F0800D3 - public const int ic_mr_button_connected_17_light = 2131230931; - - // aapt resource value: 0x7F0800D4 - public const int ic_mr_button_connected_18_dark = 2131230932; - - // aapt resource value: 0x7F0800D5 - public const int ic_mr_button_connected_18_light = 2131230933; - - // aapt resource value: 0x7F0800D6 - public const int ic_mr_button_connected_19_dark = 2131230934; - - // aapt resource value: 0x7F0800D7 - public const int ic_mr_button_connected_19_light = 2131230935; - - // aapt resource value: 0x7F0800D8 - public const int ic_mr_button_connected_20_dark = 2131230936; - - // aapt resource value: 0x7F0800D9 - public const int ic_mr_button_connected_20_light = 2131230937; - - // aapt resource value: 0x7F0800DA - public const int ic_mr_button_connected_21_dark = 2131230938; - - // aapt resource value: 0x7F0800DB - public const int ic_mr_button_connected_21_light = 2131230939; - - // aapt resource value: 0x7F0800DC - public const int ic_mr_button_connected_22_dark = 2131230940; - - // aapt resource value: 0x7F0800DD - public const int ic_mr_button_connected_22_light = 2131230941; - - // aapt resource value: 0x7F0800DE - public const int ic_mr_button_connected_23_dark = 2131230942; - - // aapt resource value: 0x7F0800DF - public const int ic_mr_button_connected_23_light = 2131230943; - - // aapt resource value: 0x7F0800E0 - public const int ic_mr_button_connected_24_dark = 2131230944; - - // aapt resource value: 0x7F0800E1 - public const int ic_mr_button_connected_24_light = 2131230945; - - // aapt resource value: 0x7F0800E2 - public const int ic_mr_button_connected_25_dark = 2131230946; - - // aapt resource value: 0x7F0800E3 - public const int ic_mr_button_connected_25_light = 2131230947; - - // aapt resource value: 0x7F0800E4 - public const int ic_mr_button_connected_26_dark = 2131230948; - - // aapt resource value: 0x7F0800E5 - public const int ic_mr_button_connected_26_light = 2131230949; - - // aapt resource value: 0x7F0800E6 - public const int ic_mr_button_connected_27_dark = 2131230950; - - // aapt resource value: 0x7F0800E7 - public const int ic_mr_button_connected_27_light = 2131230951; - - // aapt resource value: 0x7F0800E8 - public const int ic_mr_button_connected_28_dark = 2131230952; - - // aapt resource value: 0x7F0800E9 - public const int ic_mr_button_connected_28_light = 2131230953; - - // aapt resource value: 0x7F0800EA - public const int ic_mr_button_connected_29_dark = 2131230954; - - // aapt resource value: 0x7F0800EB - public const int ic_mr_button_connected_29_light = 2131230955; - - // aapt resource value: 0x7F0800EC - public const int ic_mr_button_connected_30_dark = 2131230956; - - // aapt resource value: 0x7F0800ED - public const int ic_mr_button_connected_30_light = 2131230957; - - // aapt resource value: 0x7F0800EE - public const int ic_mr_button_connecting_00_dark = 2131230958; - - // aapt resource value: 0x7F0800EF - public const int ic_mr_button_connecting_00_light = 2131230959; - - // aapt resource value: 0x7F0800F0 - public const int ic_mr_button_connecting_01_dark = 2131230960; - - // aapt resource value: 0x7F0800F1 - public const int ic_mr_button_connecting_01_light = 2131230961; - - // aapt resource value: 0x7F0800F2 - public const int ic_mr_button_connecting_02_dark = 2131230962; - - // aapt resource value: 0x7F0800F3 - public const int ic_mr_button_connecting_02_light = 2131230963; - - // aapt resource value: 0x7F0800F4 - public const int ic_mr_button_connecting_03_dark = 2131230964; - - // aapt resource value: 0x7F0800F5 - public const int ic_mr_button_connecting_03_light = 2131230965; - - // aapt resource value: 0x7F0800F6 - public const int ic_mr_button_connecting_04_dark = 2131230966; - - // aapt resource value: 0x7F0800F7 - public const int ic_mr_button_connecting_04_light = 2131230967; - - // aapt resource value: 0x7F0800F8 - public const int ic_mr_button_connecting_05_dark = 2131230968; - - // aapt resource value: 0x7F0800F9 - public const int ic_mr_button_connecting_05_light = 2131230969; - - // aapt resource value: 0x7F0800FA - public const int ic_mr_button_connecting_06_dark = 2131230970; - - // aapt resource value: 0x7F0800FB - public const int ic_mr_button_connecting_06_light = 2131230971; - - // aapt resource value: 0x7F0800FC - public const int ic_mr_button_connecting_07_dark = 2131230972; - - // aapt resource value: 0x7F0800FD - public const int ic_mr_button_connecting_07_light = 2131230973; - - // aapt resource value: 0x7F0800FE - public const int ic_mr_button_connecting_08_dark = 2131230974; - - // aapt resource value: 0x7F0800FF - public const int ic_mr_button_connecting_08_light = 2131230975; - - // aapt resource value: 0x7F080100 - public const int ic_mr_button_connecting_09_dark = 2131230976; - - // aapt resource value: 0x7F080101 - public const int ic_mr_button_connecting_09_light = 2131230977; - - // aapt resource value: 0x7F080102 - public const int ic_mr_button_connecting_10_dark = 2131230978; - - // aapt resource value: 0x7F080103 - public const int ic_mr_button_connecting_10_light = 2131230979; - - // aapt resource value: 0x7F080104 - public const int ic_mr_button_connecting_11_dark = 2131230980; - - // aapt resource value: 0x7F080105 - public const int ic_mr_button_connecting_11_light = 2131230981; - - // aapt resource value: 0x7F080106 - public const int ic_mr_button_connecting_12_dark = 2131230982; - - // aapt resource value: 0x7F080107 - public const int ic_mr_button_connecting_12_light = 2131230983; - - // aapt resource value: 0x7F080108 - public const int ic_mr_button_connecting_13_dark = 2131230984; - - // aapt resource value: 0x7F080109 - public const int ic_mr_button_connecting_13_light = 2131230985; - - // aapt resource value: 0x7F08010A - public const int ic_mr_button_connecting_14_dark = 2131230986; - - // aapt resource value: 0x7F08010B - public const int ic_mr_button_connecting_14_light = 2131230987; - - // aapt resource value: 0x7F08010C - public const int ic_mr_button_connecting_15_dark = 2131230988; - - // aapt resource value: 0x7F08010D - public const int ic_mr_button_connecting_15_light = 2131230989; - - // aapt resource value: 0x7F08010E - public const int ic_mr_button_connecting_16_dark = 2131230990; - - // aapt resource value: 0x7F08010F - public const int ic_mr_button_connecting_16_light = 2131230991; - - // aapt resource value: 0x7F080110 - public const int ic_mr_button_connecting_17_dark = 2131230992; - - // aapt resource value: 0x7F080111 - public const int ic_mr_button_connecting_17_light = 2131230993; - - // aapt resource value: 0x7F080112 - public const int ic_mr_button_connecting_18_dark = 2131230994; - - // aapt resource value: 0x7F080113 - public const int ic_mr_button_connecting_18_light = 2131230995; - - // aapt resource value: 0x7F080114 - public const int ic_mr_button_connecting_19_dark = 2131230996; - - // aapt resource value: 0x7F080115 - public const int ic_mr_button_connecting_19_light = 2131230997; - - // aapt resource value: 0x7F080116 - public const int ic_mr_button_connecting_20_dark = 2131230998; - - // aapt resource value: 0x7F080117 - public const int ic_mr_button_connecting_20_light = 2131230999; - - // aapt resource value: 0x7F080118 - public const int ic_mr_button_connecting_21_dark = 2131231000; - - // aapt resource value: 0x7F080119 - public const int ic_mr_button_connecting_21_light = 2131231001; - - // aapt resource value: 0x7F08011A - public const int ic_mr_button_connecting_22_dark = 2131231002; - - // aapt resource value: 0x7F08011B - public const int ic_mr_button_connecting_22_light = 2131231003; - - // aapt resource value: 0x7F08011C - public const int ic_mr_button_connecting_23_dark = 2131231004; - - // aapt resource value: 0x7F08011D - public const int ic_mr_button_connecting_23_light = 2131231005; - - // aapt resource value: 0x7F08011E - public const int ic_mr_button_connecting_24_dark = 2131231006; - - // aapt resource value: 0x7F08011F - public const int ic_mr_button_connecting_24_light = 2131231007; - - // aapt resource value: 0x7F080120 - public const int ic_mr_button_connecting_25_dark = 2131231008; - - // aapt resource value: 0x7F080121 - public const int ic_mr_button_connecting_25_light = 2131231009; - - // aapt resource value: 0x7F080122 - public const int ic_mr_button_connecting_26_dark = 2131231010; - - // aapt resource value: 0x7F080123 - public const int ic_mr_button_connecting_26_light = 2131231011; - - // aapt resource value: 0x7F080124 - public const int ic_mr_button_connecting_27_dark = 2131231012; - - // aapt resource value: 0x7F080125 - public const int ic_mr_button_connecting_27_light = 2131231013; - - // aapt resource value: 0x7F080126 - public const int ic_mr_button_connecting_28_dark = 2131231014; - - // aapt resource value: 0x7F080127 - public const int ic_mr_button_connecting_28_light = 2131231015; - - // aapt resource value: 0x7F080128 - public const int ic_mr_button_connecting_29_dark = 2131231016; - - // aapt resource value: 0x7F080129 - public const int ic_mr_button_connecting_29_light = 2131231017; - - // aapt resource value: 0x7F08012A - public const int ic_mr_button_connecting_30_dark = 2131231018; - - // aapt resource value: 0x7F08012B - public const int ic_mr_button_connecting_30_light = 2131231019; - - // aapt resource value: 0x7F08012C - public const int ic_mr_button_disabled_dark = 2131231020; - - // aapt resource value: 0x7F08012D - public const int ic_mr_button_disabled_light = 2131231021; - - // aapt resource value: 0x7F08012E - public const int ic_mr_button_disconnected_dark = 2131231022; - - // aapt resource value: 0x7F08012F - public const int ic_mr_button_disconnected_light = 2131231023; - - // aapt resource value: 0x7F080130 - public const int ic_mr_button_grey = 2131231024; - - // aapt resource value: 0x7F080131 - public const int ic_mtrl_chip_checked_black = 2131231025; - - // aapt resource value: 0x7F080132 - public const int ic_mtrl_chip_checked_circle = 2131231026; - - // aapt resource value: 0x7F080133 - public const int ic_mtrl_chip_close_circle = 2131231027; - - // aapt resource value: 0x7F080134 - public const int ic_unchecked_checkbox = 2131231028; - - // aapt resource value: 0x7F080135 - public const int ic_vol_mute = 2131231029; - - // aapt resource value: 0x7F080136 - public const int ic_vol_type_speaker_dark = 2131231030; - - // aapt resource value: 0x7F080137 - public const int ic_vol_type_speaker_group_dark = 2131231031; - - // aapt resource value: 0x7F080138 - public const int ic_vol_type_speaker_group_light = 2131231032; - - // aapt resource value: 0x7F080139 - public const int ic_vol_type_speaker_light = 2131231033; - - // aapt resource value: 0x7F08013A - public const int ic_vol_type_tv_dark = 2131231034; - - // aapt resource value: 0x7F08013B - public const int ic_vol_type_tv_light = 2131231035; - - // aapt resource value: 0x7F08013C - public const int ic_vol_unmute = 2131231036; - - // aapt resource value: 0x7F08013D - public const int john = 2131231037; - - // aapt resource value: 0x7F08013E - public const int mechanic = 2131231038; - - // aapt resource value: 0x7F08013F - public const int mr_button_connected_dark = 2131231039; - - // aapt resource value: 0x7F080140 - public const int mr_button_connected_light = 2131231040; - - // aapt resource value: 0x7F080141 - public const int mr_button_connecting_dark = 2131231041; - - // aapt resource value: 0x7F080142 - public const int mr_button_connecting_light = 2131231042; - - // aapt resource value: 0x7F080143 - public const int mr_button_dark = 2131231043; - - // aapt resource value: 0x7F080144 - public const int mr_button_dark_static = 2131231044; - - // aapt resource value: 0x7F080145 - public const int mr_button_light = 2131231045; - - // aapt resource value: 0x7F080146 - public const int mr_button_light_static = 2131231046; - - // aapt resource value: 0x7F080147 - public const int mr_cast_checkbox = 2131231047; - - // aapt resource value: 0x7F080148 - public const int mr_cast_group_seekbar_track = 2131231048; - - // aapt resource value: 0x7F080149 - public const int mr_cast_mute_button = 2131231049; - - // aapt resource value: 0x7F08014A - public const int mr_cast_route_seekbar_track = 2131231050; - - // aapt resource value: 0x7F08014B - public const int mr_cast_stop = 2131231051; - - // aapt resource value: 0x7F08014C - public const int mr_cast_thumb = 2131231052; - - // aapt resource value: 0x7F08014D - public const int mr_dialog_close_dark = 2131231053; - - // aapt resource value: 0x7F08014E - public const int mr_dialog_close_light = 2131231054; - - // aapt resource value: 0x7F08014F - public const int mr_dialog_material_background_dark = 2131231055; - - // aapt resource value: 0x7F080150 - public const int mr_dialog_material_background_light = 2131231056; - - // aapt resource value: 0x7F080151 - public const int mr_group_collapse = 2131231057; - - // aapt resource value: 0x7F080152 - public const int mr_group_expand = 2131231058; - - // aapt resource value: 0x7F080153 - public const int mr_media_pause_dark = 2131231059; - - // aapt resource value: 0x7F080154 - public const int mr_media_pause_light = 2131231060; - - // aapt resource value: 0x7F080155 - public const int mr_media_play_dark = 2131231061; - - // aapt resource value: 0x7F080156 - public const int mr_media_play_light = 2131231062; - - // aapt resource value: 0x7F080157 - public const int mr_media_stop_dark = 2131231063; - - // aapt resource value: 0x7F080158 - public const int mr_media_stop_light = 2131231064; - - // aapt resource value: 0x7F080159 - public const int mr_vol_type_audiotrack_dark = 2131231065; - - // aapt resource value: 0x7F08015A - public const int mr_vol_type_audiotrack_light = 2131231066; - - // aapt resource value: 0x7F08015B - public const int mtrl_snackbar_background = 2131231067; - - // aapt resource value: 0x7F08015C - public const int mtrl_tabs_default_indicator = 2131231068; - - // aapt resource value: 0x7F08015D - public const int navigation_empty_icon = 2131231069; - - // aapt resource value: 0x7F08015E - public const int notification_action_background = 2131231070; - - // aapt resource value: 0x7F08015F - public const int notification_bg = 2131231071; - - // aapt resource value: 0x7F080160 - public const int notification_bg_low = 2131231072; - - // aapt resource value: 0x7F080161 - public const int notification_bg_low_normal = 2131231073; - - // aapt resource value: 0x7F080162 - public const int notification_bg_low_pressed = 2131231074; - - // aapt resource value: 0x7F080163 - public const int notification_bg_normal = 2131231075; - - // aapt resource value: 0x7F080164 - public const int notification_bg_normal_pressed = 2131231076; - - // aapt resource value: 0x7F080165 - public const int notification_icon_background = 2131231077; - - // aapt resource value: 0x7F080166 - public const int notification_template_icon_bg = 2131231078; - - // aapt resource value: 0x7F080167 - public const int notification_template_icon_low_bg = 2131231079; - - // aapt resource value: 0x7F080168 - public const int notification_tile_bg = 2131231080; - - // aapt resource value: 0x7F080169 - public const int notify_panel_notification_icon_bg = 2131231081; - - // aapt resource value: 0x7F08016A - public const int ruth = 2131231082; - - // aapt resource value: 0x7F08016B - public const int stefan = 2131231083; - - // aapt resource value: 0x7F08016C - public const int teacher = 2131231084; - - // aapt resource value: 0x7F08016D - public const int tooltip_frame_dark = 2131231085; - - // aapt resource value: 0x7F08016E - public const int tooltip_frame_light = 2131231086; - - // aapt resource value: 0x7F08016F - public const int turtle = 2131231087; - - // aapt resource value: 0x7F080170 - public const int walter = 2131231088; - - // aapt resource value: 0x7F080171 - public const int yeats = 2131231089; - - static Drawable() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Drawable() - { - } - } - - public partial class Id - { - - // aapt resource value: 0x7F090006 - public const int accessibility_action_clickable_span = 2131296262; - - // aapt resource value: 0x7F090007 - public const int accessibility_custom_action_0 = 2131296263; - - // aapt resource value: 0x7F090008 - public const int accessibility_custom_action_1 = 2131296264; - - // aapt resource value: 0x7F090009 - public const int accessibility_custom_action_10 = 2131296265; - - // aapt resource value: 0x7F09000A - public const int accessibility_custom_action_11 = 2131296266; - - // aapt resource value: 0x7F09000B - public const int accessibility_custom_action_12 = 2131296267; - - // aapt resource value: 0x7F09000C - public const int accessibility_custom_action_13 = 2131296268; - - // aapt resource value: 0x7F09000D - public const int accessibility_custom_action_14 = 2131296269; - - // aapt resource value: 0x7F09000E - public const int accessibility_custom_action_15 = 2131296270; - - // aapt resource value: 0x7F09000F - public const int accessibility_custom_action_16 = 2131296271; - - // aapt resource value: 0x7F090010 - public const int accessibility_custom_action_17 = 2131296272; - - // aapt resource value: 0x7F090011 - public const int accessibility_custom_action_18 = 2131296273; - - // aapt resource value: 0x7F090012 - public const int accessibility_custom_action_19 = 2131296274; - - // aapt resource value: 0x7F090013 - public const int accessibility_custom_action_2 = 2131296275; - - // aapt resource value: 0x7F090014 - public const int accessibility_custom_action_20 = 2131296276; - - // aapt resource value: 0x7F090015 - public const int accessibility_custom_action_21 = 2131296277; - - // aapt resource value: 0x7F090016 - public const int accessibility_custom_action_22 = 2131296278; - - // aapt resource value: 0x7F090017 - public const int accessibility_custom_action_23 = 2131296279; - - // aapt resource value: 0x7F090018 - public const int accessibility_custom_action_24 = 2131296280; - - // aapt resource value: 0x7F090019 - public const int accessibility_custom_action_25 = 2131296281; - - // aapt resource value: 0x7F09001A - public const int accessibility_custom_action_26 = 2131296282; - - // aapt resource value: 0x7F09001B - public const int accessibility_custom_action_27 = 2131296283; - - // aapt resource value: 0x7F09001C - public const int accessibility_custom_action_28 = 2131296284; - - // aapt resource value: 0x7F09001D - public const int accessibility_custom_action_29 = 2131296285; - - // aapt resource value: 0x7F09001E - public const int accessibility_custom_action_3 = 2131296286; - - // aapt resource value: 0x7F09001F - public const int accessibility_custom_action_30 = 2131296287; - - // aapt resource value: 0x7F090020 - public const int accessibility_custom_action_31 = 2131296288; - - // aapt resource value: 0x7F090021 - public const int accessibility_custom_action_4 = 2131296289; - - // aapt resource value: 0x7F090022 - public const int accessibility_custom_action_5 = 2131296290; - - // aapt resource value: 0x7F090023 - public const int accessibility_custom_action_6 = 2131296291; - - // aapt resource value: 0x7F090024 - public const int accessibility_custom_action_7 = 2131296292; - - // aapt resource value: 0x7F090025 - public const int accessibility_custom_action_8 = 2131296293; - - // aapt resource value: 0x7F090026 - public const int accessibility_custom_action_9 = 2131296294; - - // aapt resource value: 0x7F090027 - public const int action0 = 2131296295; - - // aapt resource value: 0x7F090039 - public const int actions = 2131296313; - - // aapt resource value: 0x7F090028 - public const int action_bar = 2131296296; - - // aapt resource value: 0x7F090029 - public const int action_bar_activity_content = 2131296297; - - // aapt resource value: 0x7F09002A - public const int action_bar_container = 2131296298; - - // aapt resource value: 0x7F09002B - public const int action_bar_root = 2131296299; - - // aapt resource value: 0x7F09002C - public const int action_bar_spinner = 2131296300; - - // aapt resource value: 0x7F09002D - public const int action_bar_subtitle = 2131296301; - - // aapt resource value: 0x7F09002E - public const int action_bar_title = 2131296302; - - // aapt resource value: 0x7F09002F - public const int action_container = 2131296303; - - // aapt resource value: 0x7F090030 - public const int action_context_bar = 2131296304; - - // aapt resource value: 0x7F090031 - public const int action_divider = 2131296305; - - // aapt resource value: 0x7F090032 - public const int action_image = 2131296306; - - // aapt resource value: 0x7F090033 - public const int action_menu_divider = 2131296307; - - // aapt resource value: 0x7F090034 - public const int action_menu_presenter = 2131296308; - - // aapt resource value: 0x7F090035 - public const int action_mode_bar = 2131296309; - - // aapt resource value: 0x7F090036 - public const int action_mode_bar_stub = 2131296310; - - // aapt resource value: 0x7F090037 - public const int action_mode_close_button = 2131296311; - - // aapt resource value: 0x7F090038 - public const int action_text = 2131296312; - - // aapt resource value: 0x7F09003A - public const int activity_chooser_view_content = 2131296314; - - // aapt resource value: 0x7F09003B - public const int add = 2131296315; - - // aapt resource value: 0x7F09003C - public const int adjust_height = 2131296316; - - // aapt resource value: 0x7F09003D - public const int adjust_width = 2131296317; - - // aapt resource value: 0x7F09003E - public const int alertTitle = 2131296318; - - // aapt resource value: 0x7F09003F - public const int all = 2131296319; - - // aapt resource value: 0x7F090000 - public const int ALT = 2131296256; - - // aapt resource value: 0x7F090040 - public const int always = 2131296320; - - // aapt resource value: 0x7F090041 - public const int amu_text = 2131296321; - - // aapt resource value: 0x7F090042 - public const int async = 2131296322; - - // aapt resource value: 0x7F090043 - public const int attribution = 2131296323; - - // aapt resource value: 0x7F090044 - public const int auto = 2131296324; - - // aapt resource value: 0x7F090045 - public const int beginning = 2131296325; - - // aapt resource value: 0x7F090046 - public const int blocking = 2131296326; - - // aapt resource value: 0x7F090047 - public const int bottom = 2131296327; - - // aapt resource value: 0x7F090048 - public const int browser_actions_header_text = 2131296328; - - // aapt resource value: 0x7F09004B - public const int browser_actions_menu_items = 2131296331; - - // aapt resource value: 0x7F090049 - public const int browser_actions_menu_item_icon = 2131296329; - - // aapt resource value: 0x7F09004A - public const int browser_actions_menu_item_text = 2131296330; - - // aapt resource value: 0x7F09004C - public const int browser_actions_menu_view = 2131296332; - - // aapt resource value: 0x7F09004D - public const int buttonPanel = 2131296333; - - // aapt resource value: 0x7F09004E - public const int cancel_action = 2131296334; - - // aapt resource value: 0x7F09004F - public const int center = 2131296335; - - // aapt resource value: 0x7F090050 - public const int center_horizontal = 2131296336; - - // aapt resource value: 0x7F090051 - public const int center_vertical = 2131296337; - - // aapt resource value: 0x7F090052 - public const int checkbox = 2131296338; - - // aapt resource value: 0x7F090053 - public const int checkboxes = 2131296339; - - // aapt resource value: 0x7F090054 - public const int @checked = 2131296340; - - // aapt resource value: 0x7F090055 - public const int chronometer = 2131296341; - - // aapt resource value: 0x7F090056 - public const int clip_horizontal = 2131296342; - - // aapt resource value: 0x7F090057 - public const int clip_vertical = 2131296343; - - // aapt resource value: 0x7F090058 - public const int collapseActionView = 2131296344; - - // aapt resource value: 0x7F090059 - public const int container = 2131296345; - - // aapt resource value: 0x7F09005A - public const int content = 2131296346; - - // aapt resource value: 0x7F09005B - public const int contentPanel = 2131296347; - - // aapt resource value: 0x7F09005C - public const int coordinator = 2131296348; - - // aapt resource value: 0x7F090001 - public const int CTRL = 2131296257; - - // aapt resource value: 0x7F09005D - public const int custom = 2131296349; - - // aapt resource value: 0x7F09005E - public const int customPanel = 2131296350; - - // aapt resource value: 0x7F09005F - public const int dark = 2131296351; - - // aapt resource value: 0x7F090060 - public const int decor_content_parent = 2131296352; - - // aapt resource value: 0x7F090061 - public const int default_activity_button = 2131296353; - - // aapt resource value: 0x7F090062 - public const int design_bottom_sheet = 2131296354; - - // aapt resource value: 0x7F090063 - public const int design_menu_item_action_area = 2131296355; - - // aapt resource value: 0x7F090064 - public const int design_menu_item_action_area_stub = 2131296356; - - // aapt resource value: 0x7F090065 - public const int design_menu_item_text = 2131296357; - - // aapt resource value: 0x7F090066 - public const int design_navigation_view = 2131296358; - - // aapt resource value: 0x7F090067 - public const int dialog_button = 2131296359; - - // aapt resource value: 0x7F090068 - public const int disableHome = 2131296360; - - // aapt resource value: 0x7F090069 - public const int edit_query = 2131296361; - - // aapt resource value: 0x7F09006A - public const int end = 2131296362; - - // aapt resource value: 0x7F09006B - public const int end_padder = 2131296363; - - // aapt resource value: 0x7F09006C - public const int enterAlways = 2131296364; - - // aapt resource value: 0x7F09006D - public const int enterAlwaysCollapsed = 2131296365; - - // aapt resource value: 0x7F09006E - public const int exitUntilCollapsed = 2131296366; - - // aapt resource value: 0x7F090070 - public const int expanded_menu = 2131296368; - - // aapt resource value: 0x7F09006F - public const int expand_activities_button = 2131296367; - - // aapt resource value: 0x7F090071 - public const int fill = 2131296369; - - // aapt resource value: 0x7F090074 - public const int filled = 2131296372; - - // aapt resource value: 0x7F090072 - public const int fill_horizontal = 2131296370; - - // aapt resource value: 0x7F090073 - public const int fill_vertical = 2131296371; - - // aapt resource value: 0x7F090075 - public const int @fixed = 2131296373; - - // aapt resource value: 0x7F090076 - public const int forever = 2131296374; - - // aapt resource value: 0x7F090077 - public const int fragment_container_view_tag = 2131296375; - - // aapt resource value: 0x7F090002 - public const int FUNCTION = 2131296258; - - // aapt resource value: 0x7F090078 - public const int ghost_view = 2131296376; - - // aapt resource value: 0x7F090079 - public const int ghost_view_holder = 2131296377; - - // aapt resource value: 0x7F09007A - public const int group_divider = 2131296378; - - // aapt resource value: 0x7F09007B - public const int home = 2131296379; - - // aapt resource value: 0x7F09007C - public const int homeAsUp = 2131296380; - - // aapt resource value: 0x7F09007D - public const int hybrid = 2131296381; - - // aapt resource value: 0x7F09007E - public const int icon = 2131296382; - - // aapt resource value: 0x7F09007F - public const int icon_group = 2131296383; - - // aapt resource value: 0x7F090080 - public const int icon_only = 2131296384; - - // aapt resource value: 0x7F090081 - public const int ifRoom = 2131296385; - - // aapt resource value: 0x7F090082 - public const int image = 2131296386; - - // aapt resource value: 0x7F090083 - public const int info = 2131296387; - - // aapt resource value: 0x7F090084 - public const int input_text = 2131296388; - - // aapt resource value: 0x7F090085 - public const int italic = 2131296389; - - // aapt resource value: 0x7F090086 - public const int item_touch_helper_previous_elevation = 2131296390; - - // aapt resource value: 0x7F090087 - public const int labeled = 2131296391; - - // aapt resource value: 0x7F090088 - public const int largeLabel = 2131296392; - - // aapt resource value: 0x7F090089 - public const int left = 2131296393; - - // aapt resource value: 0x7F09008A - public const int light = 2131296394; - - // aapt resource value: 0x7F09008B - public const int line1 = 2131296395; - - // aapt resource value: 0x7F09008C - public const int line3 = 2131296396; - - // aapt resource value: 0x7F09008D - public const int list = 2131296397; - - // aapt resource value: 0x7F09008E - public const int listMode = 2131296398; - - // aapt resource value: 0x7F09008F - public const int list_item = 2131296399; - - // aapt resource value: 0x7F090090 - public const int map = 2131296400; - - // aapt resource value: 0x7F090091 - public const int masked = 2131296401; - - // aapt resource value: 0x7F090092 - public const int media_actions = 2131296402; - - // aapt resource value: 0x7F090093 - public const int message = 2131296403; - - // aapt resource value: 0x7F090003 - public const int META = 2131296259; - - // aapt resource value: 0x7F090094 - public const int middle = 2131296404; - - // aapt resource value: 0x7F090095 - public const int mini = 2131296405; - - // aapt resource value: 0x7F090096 - public const int mr_art = 2131296406; - - // aapt resource value: 0x7F090097 - public const int mr_cast_checkbox = 2131296407; - - // aapt resource value: 0x7F090098 - public const int mr_cast_close_button = 2131296408; - - // aapt resource value: 0x7F090099 - public const int mr_cast_divider = 2131296409; - - // aapt resource value: 0x7F09009A - public const int mr_cast_group_icon = 2131296410; - - // aapt resource value: 0x7F09009B - public const int mr_cast_group_name = 2131296411; - - // aapt resource value: 0x7F09009C - public const int mr_cast_group_progress_bar = 2131296412; - - // aapt resource value: 0x7F09009D - public const int mr_cast_header_name = 2131296413; - - // aapt resource value: 0x7F09009E - public const int mr_cast_list = 2131296414; - - // aapt resource value: 0x7F09009F - public const int mr_cast_meta_art = 2131296415; - - // aapt resource value: 0x7F0900A0 - public const int mr_cast_meta_background = 2131296416; - - // aapt resource value: 0x7F0900A1 - public const int mr_cast_meta_black_scrim = 2131296417; - - // aapt resource value: 0x7F0900A2 - public const int mr_cast_meta_subtitle = 2131296418; - - // aapt resource value: 0x7F0900A3 - public const int mr_cast_meta_title = 2131296419; - - // aapt resource value: 0x7F0900A4 - public const int mr_cast_mute_button = 2131296420; - - // aapt resource value: 0x7F0900A5 - public const int mr_cast_route_icon = 2131296421; - - // aapt resource value: 0x7F0900A6 - public const int mr_cast_route_name = 2131296422; - - // aapt resource value: 0x7F0900A7 - public const int mr_cast_route_progress_bar = 2131296423; - - // aapt resource value: 0x7F0900A8 - public const int mr_cast_stop_button = 2131296424; - - // aapt resource value: 0x7F0900A9 - public const int mr_cast_volume_layout = 2131296425; - - // aapt resource value: 0x7F0900AA - public const int mr_cast_volume_slider = 2131296426; - - // aapt resource value: 0x7F0900AB - public const int mr_chooser_list = 2131296427; - - // aapt resource value: 0x7F0900AC - public const int mr_chooser_route_desc = 2131296428; - - // aapt resource value: 0x7F0900AD - public const int mr_chooser_route_icon = 2131296429; - - // aapt resource value: 0x7F0900AE - public const int mr_chooser_route_name = 2131296430; - - // aapt resource value: 0x7F0900AF - public const int mr_chooser_title = 2131296431; - - // aapt resource value: 0x7F0900B0 - public const int mr_close = 2131296432; - - // aapt resource value: 0x7F0900B1 - public const int mr_control_divider = 2131296433; - - // aapt resource value: 0x7F0900B2 - public const int mr_control_playback_ctrl = 2131296434; - - // aapt resource value: 0x7F0900B3 - public const int mr_control_subtitle = 2131296435; - - // aapt resource value: 0x7F0900B4 - public const int mr_control_title = 2131296436; - - // aapt resource value: 0x7F0900B5 - public const int mr_control_title_container = 2131296437; - - // aapt resource value: 0x7F0900B6 - public const int mr_custom_control = 2131296438; - - // aapt resource value: 0x7F0900B7 - public const int mr_default_control = 2131296439; - - // aapt resource value: 0x7F0900B8 - public const int mr_dialog_area = 2131296440; - - // aapt resource value: 0x7F0900B9 - public const int mr_expandable_area = 2131296441; - - // aapt resource value: 0x7F0900BA - public const int mr_group_expand_collapse = 2131296442; - - // aapt resource value: 0x7F0900BB - public const int mr_group_volume_route_name = 2131296443; - - // aapt resource value: 0x7F0900BC - public const int mr_media_main_control = 2131296444; - - // aapt resource value: 0x7F0900BD - public const int mr_name = 2131296445; - - // aapt resource value: 0x7F0900BE - public const int mr_picker_close_button = 2131296446; - - // aapt resource value: 0x7F0900BF - public const int mr_picker_header_name = 2131296447; - - // aapt resource value: 0x7F0900C0 - public const int mr_picker_list = 2131296448; - - // aapt resource value: 0x7F0900C1 - public const int mr_picker_route_icon = 2131296449; - - // aapt resource value: 0x7F0900C2 - public const int mr_picker_route_name = 2131296450; - - // aapt resource value: 0x7F0900C3 - public const int mr_picker_route_progress_bar = 2131296451; - - // aapt resource value: 0x7F0900C4 - public const int mr_playback_control = 2131296452; - - // aapt resource value: 0x7F0900C5 - public const int mr_title_bar = 2131296453; - - // aapt resource value: 0x7F0900C6 - public const int mr_volume_control = 2131296454; - - // aapt resource value: 0x7F0900C7 - public const int mr_volume_group_list = 2131296455; - - // aapt resource value: 0x7F0900C8 - public const int mr_volume_item_icon = 2131296456; - - // aapt resource value: 0x7F0900C9 - public const int mr_volume_slider = 2131296457; - - // aapt resource value: 0x7F0900CA - public const int mtrl_child_content_container = 2131296458; - - // aapt resource value: 0x7F0900CB - public const int mtrl_internal_children_alpha_tag = 2131296459; - - // aapt resource value: 0x7F0900CC - public const int multiply = 2131296460; - - // aapt resource value: 0x7F0900CD - public const int navigation_header_container = 2131296461; - - // aapt resource value: 0x7F0900CE - public const int never = 2131296462; - - // aapt resource value: 0x7F0900CF - public const int none = 2131296463; - - // aapt resource value: 0x7F0900D0 - public const int normal = 2131296464; - - // aapt resource value: 0x7F0900D1 - public const int notification_background = 2131296465; - - // aapt resource value: 0x7F0900D2 - public const int notification_main_column = 2131296466; - - // aapt resource value: 0x7F0900D3 - public const int notification_main_column_container = 2131296467; - - // aapt resource value: 0x7F0900D4 - public const int off = 2131296468; - - // aapt resource value: 0x7F0900D5 - public const int on = 2131296469; - - // aapt resource value: 0x7F0900D6 - public const int outline = 2131296470; - - // aapt resource value: 0x7F0900D7 - public const int parallax = 2131296471; - - // aapt resource value: 0x7F0900D8 - public const int parentPanel = 2131296472; - - // aapt resource value: 0x7F0900D9 - public const int parent_matrix = 2131296473; - - // aapt resource value: 0x7F0900DA - public const int pin = 2131296474; - - // aapt resource value: 0x7F0900DB - public const int progress_bar = 2131296475; - - // aapt resource value: 0x7F0900DC - public const int progress_circular = 2131296476; - - // aapt resource value: 0x7F0900DD - public const int progress_horizontal = 2131296477; - - // aapt resource value: 0x7F0900DE - public const int radio = 2131296478; - - // aapt resource value: 0x7F0900DF - public const int right = 2131296479; - - // aapt resource value: 0x7F0900E0 - public const int right_icon = 2131296480; - - // aapt resource value: 0x7F0900E1 - public const int right_side = 2131296481; - - // aapt resource value: 0x7F0900E2 - public const int satellite = 2131296482; - - // aapt resource value: 0x7F0900E3 - public const int save_non_transition_alpha = 2131296483; - - // aapt resource value: 0x7F0900E4 - public const int save_overlay_view = 2131296484; - - // aapt resource value: 0x7F0900E5 - public const int screen = 2131296485; - - // aapt resource value: 0x7F0900E6 - public const int scroll = 2131296486; - - // aapt resource value: 0x7F0900EA - public const int scrollable = 2131296490; - - // aapt resource value: 0x7F0900E7 - public const int scrollIndicatorDown = 2131296487; - - // aapt resource value: 0x7F0900E8 - public const int scrollIndicatorUp = 2131296488; - - // aapt resource value: 0x7F0900E9 - public const int scrollView = 2131296489; - - // aapt resource value: 0x7F0900EB - public const int search_badge = 2131296491; - - // aapt resource value: 0x7F0900EC - public const int search_bar = 2131296492; - - // aapt resource value: 0x7F0900ED - public const int search_button = 2131296493; - - // aapt resource value: 0x7F0900EE - public const int search_close_btn = 2131296494; - - // aapt resource value: 0x7F0900EF - public const int search_edit_frame = 2131296495; - - // aapt resource value: 0x7F0900F0 - public const int search_go_btn = 2131296496; - - // aapt resource value: 0x7F0900F1 - public const int search_mag_icon = 2131296497; - - // aapt resource value: 0x7F0900F2 - public const int search_plate = 2131296498; - - // aapt resource value: 0x7F0900F3 - public const int search_src_text = 2131296499; - - // aapt resource value: 0x7F0900F4 - public const int search_voice_btn = 2131296500; - - // aapt resource value: 0x7F0900F6 - public const int selected = 2131296502; - - // aapt resource value: 0x7F0900F5 - public const int select_dialog_listview = 2131296501; - - // aapt resource value: 0x7F090004 - public const int SHIFT = 2131296260; - - // aapt resource value: 0x7F0900F7 - public const int shortcut = 2131296503; - - // aapt resource value: 0x7F0900F8 - public const int showCustom = 2131296504; - - // aapt resource value: 0x7F0900F9 - public const int showHome = 2131296505; - - // aapt resource value: 0x7F0900FA - public const int showTitle = 2131296506; - - // aapt resource value: 0x7F0900FB - public const int smallLabel = 2131296507; - - // aapt resource value: 0x7F0900FC - public const int snackbar_action = 2131296508; - - // aapt resource value: 0x7F0900FD - public const int snackbar_text = 2131296509; - - // aapt resource value: 0x7F0900FE - public const int snap = 2131296510; - - // aapt resource value: 0x7F0900FF - public const int snapMargins = 2131296511; - - // aapt resource value: 0x7F090100 - public const int spacer = 2131296512; - - // aapt resource value: 0x7F090101 - public const int spinner = 2131296513; - - // aapt resource value: 0x7F090102 - public const int split_action_bar = 2131296514; - - // aapt resource value: 0x7F090103 - public const int src_atop = 2131296515; - - // aapt resource value: 0x7F090104 - public const int src_in = 2131296516; - - // aapt resource value: 0x7F090105 - public const int src_over = 2131296517; - - // aapt resource value: 0x7F090106 - public const int standard = 2131296518; - - // aapt resource value: 0x7F090107 - public const int start = 2131296519; - - // aapt resource value: 0x7F090108 - public const int status_bar_latest_event_content = 2131296520; - - // aapt resource value: 0x7F090109 - public const int stretch = 2131296521; - - // aapt resource value: 0x7F09010A - public const int submenuarrow = 2131296522; - - // aapt resource value: 0x7F09010B - public const int submit_area = 2131296523; - - // aapt resource value: 0x7F090005 - public const int SYM = 2131296261; - - // aapt resource value: 0x7F09010C - public const int tabMode = 2131296524; - - // aapt resource value: 0x7F09010D - public const int tag_accessibility_actions = 2131296525; - - // aapt resource value: 0x7F09010E - public const int tag_accessibility_clickable_spans = 2131296526; - - // aapt resource value: 0x7F09010F - public const int tag_accessibility_heading = 2131296527; - - // aapt resource value: 0x7F090110 - public const int tag_accessibility_pane_title = 2131296528; - - // aapt resource value: 0x7F090111 - public const int tag_screen_reader_focusable = 2131296529; - - // aapt resource value: 0x7F090112 - public const int tag_transition_group = 2131296530; - - // aapt resource value: 0x7F090113 - public const int tag_unhandled_key_event_manager = 2131296531; - - // aapt resource value: 0x7F090114 - public const int tag_unhandled_key_listeners = 2131296532; - - // aapt resource value: 0x7F090115 - public const int terrain = 2131296533; - - // aapt resource value: 0x7F090116 - public const int text = 2131296534; - - // aapt resource value: 0x7F090117 - public const int text2 = 2131296535; - - // aapt resource value: 0x7F09011E - public const int textinput_counter = 2131296542; - - // aapt resource value: 0x7F09011F - public const int textinput_error = 2131296543; - - // aapt resource value: 0x7F090120 - public const int textinput_helper_text = 2131296544; - - // aapt resource value: 0x7F090118 - public const int textSpacerNoButtons = 2131296536; - - // aapt resource value: 0x7F090119 - public const int textSpacerNoTitle = 2131296537; - - // aapt resource value: 0x7F09011A - public const int textStart = 2131296538; - - // aapt resource value: 0x7F09011B - public const int textView = 2131296539; - - // aapt resource value: 0x7F09011C - public const int textViewTitle = 2131296540; - - // aapt resource value: 0x7F09011D - public const int text_input_password_toggle = 2131296541; - - // aapt resource value: 0x7F090121 - public const int time = 2131296545; - - // aapt resource value: 0x7F090122 - public const int title = 2131296546; - - // aapt resource value: 0x7F090123 - public const int titleDividerNoCustom = 2131296547; - - // aapt resource value: 0x7F090124 - public const int title_template = 2131296548; - - // aapt resource value: 0x7F090125 - public const int top = 2131296549; - - // aapt resource value: 0x7F090126 - public const int topPanel = 2131296550; - - // aapt resource value: 0x7F090127 - public const int touch_outside = 2131296551; - - // aapt resource value: 0x7F090128 - public const int transition_current_scene = 2131296552; - - // aapt resource value: 0x7F090129 - public const int transition_layout_save = 2131296553; - - // aapt resource value: 0x7F09012A - public const int transition_position = 2131296554; - - // aapt resource value: 0x7F09012B - public const int transition_scene_layoutid_cache = 2131296555; - - // aapt resource value: 0x7F09012C - public const int transition_transform = 2131296556; - - // aapt resource value: 0x7F09012D - public const int @unchecked = 2131296557; - - // aapt resource value: 0x7F09012E - public const int uniform = 2131296558; - - // aapt resource value: 0x7F09012F - public const int unlabeled = 2131296559; - - // aapt resource value: 0x7F090130 - public const int up = 2131296560; - - // aapt resource value: 0x7F090131 - public const int useLogo = 2131296561; - - // aapt resource value: 0x7F090132 - public const int view_offset_helper = 2131296562; - - // aapt resource value: 0x7F090133 - public const int visible = 2131296563; - - // aapt resource value: 0x7F090134 - public const int visible_removing_fragment_view_tag = 2131296564; - - // aapt resource value: 0x7F090135 - public const int volume_item_container = 2131296565; - - // aapt resource value: 0x7F090136 - public const int webview = 2131296566; - - // aapt resource value: 0x7F090137 - public const int wide = 2131296567; - - // aapt resource value: 0x7F090138 - public const int window = 2131296568; - - // aapt resource value: 0x7F090139 - public const int withText = 2131296569; - - // aapt resource value: 0x7F09013A - public const int wrap_content = 2131296570; - - static Id() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Id() - { - } - } - - public partial class Integer - { - - // aapt resource value: 0x7F0A0000 - public const int abc_config_activityDefaultDur = 2131361792; - - // aapt resource value: 0x7F0A0001 - public const int abc_config_activityShortDur = 2131361793; - - // aapt resource value: 0x7F0A0002 - public const int app_bar_elevation_anim_duration = 2131361794; - - // aapt resource value: 0x7F0A0003 - public const int bottom_sheet_slide_duration = 2131361795; - - // aapt resource value: 0x7F0A0004 - public const int cancel_button_image_alpha = 2131361796; - - // aapt resource value: 0x7F0A0005 - public const int config_tooltipAnimTime = 2131361797; - - // aapt resource value: 0x7F0A0006 - public const int design_snackbar_text_max_lines = 2131361798; - - // aapt resource value: 0x7F0A0007 - public const int design_tab_indicator_anim_duration_ms = 2131361799; - - // aapt resource value: 0x7F0A0008 - public const int google_play_services_version = 2131361800; - - // aapt resource value: 0x7F0A0009 - public const int hide_password_duration = 2131361801; - - // aapt resource value: 0x7F0A000A - public const int mr_cast_volume_slider_layout_animation_duration_ms = 2131361802; - - // aapt resource value: 0x7F0A000B - public const int mr_controller_volume_group_list_animation_duration_ms = 2131361803; - - // aapt resource value: 0x7F0A000C - public const int mr_controller_volume_group_list_fade_in_duration_ms = 2131361804; - - // aapt resource value: 0x7F0A000D - public const int mr_controller_volume_group_list_fade_out_duration_ms = 2131361805; - - // aapt resource value: 0x7F0A000E - public const int mr_update_routes_delay_ms = 2131361806; - - // aapt resource value: 0x7F0A000F - public const int mtrl_btn_anim_delay_ms = 2131361807; - - // aapt resource value: 0x7F0A0010 - public const int mtrl_btn_anim_duration_ms = 2131361808; - - // aapt resource value: 0x7F0A0011 - public const int mtrl_chip_anim_duration = 2131361809; - - // aapt resource value: 0x7F0A0012 - public const int mtrl_tab_indicator_anim_duration_ms = 2131361810; - - // aapt resource value: 0x7F0A0013 - public const int show_password_duration = 2131361811; - - // aapt resource value: 0x7F0A0014 - public const int status_bar_notification_info_maxnum = 2131361812; - - static Integer() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Integer() - { - } - } - - public partial class Interpolator - { - - // aapt resource value: 0x7F0B0000 - public const int btn_checkbox_checked_mtrl_animation_interpolator_0 = 2131427328; - - // aapt resource value: 0x7F0B0001 - public const int btn_checkbox_checked_mtrl_animation_interpolator_1 = 2131427329; - - // aapt resource value: 0x7F0B0002 - public const int btn_checkbox_unchecked_mtrl_animation_interpolator_0 = 2131427330; - - // aapt resource value: 0x7F0B0003 - public const int btn_checkbox_unchecked_mtrl_animation_interpolator_1 = 2131427331; - - // aapt resource value: 0x7F0B0004 - public const int btn_radio_to_off_mtrl_animation_interpolator_0 = 2131427332; - - // aapt resource value: 0x7F0B0005 - public const int btn_radio_to_on_mtrl_animation_interpolator_0 = 2131427333; - - // aapt resource value: 0x7F0B0006 - public const int fast_out_slow_in = 2131427334; - - // aapt resource value: 0x7F0B0007 - public const int mr_fast_out_slow_in = 2131427335; - - // aapt resource value: 0x7F0B0008 - public const int mr_linear_out_slow_in = 2131427336; - - // aapt resource value: 0x7F0B0009 - public const int mtrl_fast_out_linear_in = 2131427337; - - // aapt resource value: 0x7F0B000A - public const int mtrl_fast_out_slow_in = 2131427338; - - // aapt resource value: 0x7F0B000B - public const int mtrl_linear = 2131427339; - - // aapt resource value: 0x7F0B000C - public const int mtrl_linear_out_slow_in = 2131427340; - - static Interpolator() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Interpolator() - { - } - } - - public partial class Layout - { - - // aapt resource value: 0x7F0C0000 - public const int abc_action_bar_title_item = 2131492864; - - // aapt resource value: 0x7F0C0001 - public const int abc_action_bar_up_container = 2131492865; - - // aapt resource value: 0x7F0C0002 - public const int abc_action_menu_item_layout = 2131492866; - - // aapt resource value: 0x7F0C0003 - public const int abc_action_menu_layout = 2131492867; - - // aapt resource value: 0x7F0C0004 - public const int abc_action_mode_bar = 2131492868; - - // aapt resource value: 0x7F0C0005 - public const int abc_action_mode_close_item_material = 2131492869; - - // aapt resource value: 0x7F0C0006 - public const int abc_activity_chooser_view = 2131492870; - - // aapt resource value: 0x7F0C0007 - public const int abc_activity_chooser_view_list_item = 2131492871; - - // aapt resource value: 0x7F0C0008 - public const int abc_alert_dialog_button_bar_material = 2131492872; - - // aapt resource value: 0x7F0C0009 - public const int abc_alert_dialog_material = 2131492873; - - // aapt resource value: 0x7F0C000A - public const int abc_alert_dialog_title_material = 2131492874; - - // aapt resource value: 0x7F0C000B - public const int abc_cascading_menu_item_layout = 2131492875; - - // aapt resource value: 0x7F0C000C - public const int abc_dialog_title_material = 2131492876; - - // aapt resource value: 0x7F0C000D - public const int abc_expanded_menu_layout = 2131492877; - - // aapt resource value: 0x7F0C000E - public const int abc_list_menu_item_checkbox = 2131492878; - - // aapt resource value: 0x7F0C000F - public const int abc_list_menu_item_icon = 2131492879; - - // aapt resource value: 0x7F0C0010 - public const int abc_list_menu_item_layout = 2131492880; - - // aapt resource value: 0x7F0C0011 - public const int abc_list_menu_item_radio = 2131492881; - - // aapt resource value: 0x7F0C0012 - public const int abc_popup_menu_header_item_layout = 2131492882; - - // aapt resource value: 0x7F0C0013 - public const int abc_popup_menu_item_layout = 2131492883; - - // aapt resource value: 0x7F0C0014 - public const int abc_screen_content_include = 2131492884; - - // aapt resource value: 0x7F0C0015 - public const int abc_screen_simple = 2131492885; - - // aapt resource value: 0x7F0C0016 - public const int abc_screen_simple_overlay_action_mode = 2131492886; - - // aapt resource value: 0x7F0C0017 - public const int abc_screen_toolbar = 2131492887; - - // aapt resource value: 0x7F0C0018 - public const int abc_search_dropdown_item_icons_2line = 2131492888; - - // aapt resource value: 0x7F0C0019 - public const int abc_search_view = 2131492889; - - // aapt resource value: 0x7F0C001A - public const int abc_select_dialog_material = 2131492890; - - // aapt resource value: 0x7F0C001B - public const int abc_tooltip = 2131492891; - - // aapt resource value: 0x7F0C001C - public const int amu_info_window = 2131492892; - - // aapt resource value: 0x7F0C001D - public const int amu_text_bubble = 2131492893; - - // aapt resource value: 0x7F0C001E - public const int amu_webview = 2131492894; - - // aapt resource value: 0x7F0C001F - public const int browser_actions_context_menu_page = 2131492895; - - // aapt resource value: 0x7F0C0020 - public const int browser_actions_context_menu_row = 2131492896; - - // aapt resource value: 0x7F0C0021 - public const int custom_dialog = 2131492897; - - // aapt resource value: 0x7F0C0022 - public const int custom_info_window = 2131492898; - - // aapt resource value: 0x7F0C0023 - public const int design_bottom_navigation_item = 2131492899; - - // aapt resource value: 0x7F0C0024 - public const int design_bottom_sheet_dialog = 2131492900; - - // aapt resource value: 0x7F0C0025 - public const int design_layout_snackbar = 2131492901; - - // aapt resource value: 0x7F0C0026 - public const int design_layout_snackbar_include = 2131492902; - - // aapt resource value: 0x7F0C0027 - public const int design_layout_tab_icon = 2131492903; - - // aapt resource value: 0x7F0C0028 - public const int design_layout_tab_text = 2131492904; - - // aapt resource value: 0x7F0C0029 - public const int design_menu_item_action_area = 2131492905; - - // aapt resource value: 0x7F0C002A - public const int design_navigation_item = 2131492906; - - // aapt resource value: 0x7F0C002B - public const int design_navigation_item_header = 2131492907; - - // aapt resource value: 0x7F0C002C - public const int design_navigation_item_separator = 2131492908; - - // aapt resource value: 0x7F0C002D - public const int design_navigation_item_subheader = 2131492909; - - // aapt resource value: 0x7F0C002E - public const int design_navigation_menu = 2131492910; - - // aapt resource value: 0x7F0C002F - public const int design_navigation_menu_item = 2131492911; - - // aapt resource value: 0x7F0C0030 - public const int design_text_input_password_icon = 2131492912; - - // aapt resource value: 0x7F0C0031 - public const int distance_demo = 2131492913; - - // aapt resource value: 0x7F0C0032 - public const int geojson_demo = 2131492914; - - // aapt resource value: 0x7F0C0033 - public const int heatmaps_demo = 2131492915; - - // aapt resource value: 0x7F0C0034 - public const int kml_demo = 2131492916; - - // aapt resource value: 0x7F0C0035 - public const int main = 2131492917; - - // aapt resource value: 0x7F0C0036 - public const int map = 2131492918; - - // aapt resource value: 0x7F0C0037 - public const int mr_cast_dialog = 2131492919; - - // aapt resource value: 0x7F0C0038 - public const int mr_cast_group_item = 2131492920; - - // aapt resource value: 0x7F0C0039 - public const int mr_cast_group_volume_item = 2131492921; - - // aapt resource value: 0x7F0C003A - public const int mr_cast_header_item = 2131492922; - - // aapt resource value: 0x7F0C003B - public const int mr_cast_media_metadata = 2131492923; - - // aapt resource value: 0x7F0C003C - public const int mr_cast_route_item = 2131492924; - - // aapt resource value: 0x7F0C003D - public const int mr_chooser_dialog = 2131492925; - - // aapt resource value: 0x7F0C003E - public const int mr_chooser_list_item = 2131492926; - - // aapt resource value: 0x7F0C003F - public const int mr_controller_material_dialog_b = 2131492927; - - // aapt resource value: 0x7F0C0040 - public const int mr_controller_volume_item = 2131492928; - - // aapt resource value: 0x7F0C0041 - public const int mr_picker_dialog = 2131492929; - - // aapt resource value: 0x7F0C0042 - public const int mr_picker_header_item = 2131492930; - - // aapt resource value: 0x7F0C0043 - public const int mr_picker_route_item = 2131492931; - - // aapt resource value: 0x7F0C0044 - public const int mr_playback_control = 2131492932; - - // aapt resource value: 0x7F0C0045 - public const int mr_volume_control = 2131492933; - - // aapt resource value: 0x7F0C0046 - public const int mtrl_layout_snackbar = 2131492934; - - // aapt resource value: 0x7F0C0047 - public const int mtrl_layout_snackbar_include = 2131492935; - - // aapt resource value: 0x7F0C0048 - public const int multi_profile = 2131492936; - - // aapt resource value: 0x7F0C0049 - public const int notification_action = 2131492937; - - // aapt resource value: 0x7F0C004A - public const int notification_action_tombstone = 2131492938; - - // aapt resource value: 0x7F0C004B - public const int notification_media_action = 2131492939; - - // aapt resource value: 0x7F0C004C - public const int notification_media_cancel_action = 2131492940; - - // aapt resource value: 0x7F0C004D - public const int notification_template_big_media = 2131492941; - - // aapt resource value: 0x7F0C004E - public const int notification_template_big_media_custom = 2131492942; - - // aapt resource value: 0x7F0C004F - public const int notification_template_big_media_narrow = 2131492943; - - // aapt resource value: 0x7F0C0050 - public const int notification_template_big_media_narrow_custom = 2131492944; - - // aapt resource value: 0x7F0C0051 - public const int notification_template_custom_big = 2131492945; - - // aapt resource value: 0x7F0C0052 - public const int notification_template_icon_group = 2131492946; - - // aapt resource value: 0x7F0C0053 - public const int notification_template_lines_media = 2131492947; - - // aapt resource value: 0x7F0C0054 - public const int notification_template_media = 2131492948; - - // aapt resource value: 0x7F0C0055 - public const int notification_template_media_custom = 2131492949; - - // aapt resource value: 0x7F0C0056 - public const int notification_template_part_chronometer = 2131492950; - - // aapt resource value: 0x7F0C0057 - public const int notification_template_part_time = 2131492951; - - // aapt resource value: 0x7F0C0058 - public const int places_demo = 2131492952; - - // aapt resource value: 0x7F0C0059 - public const int select_dialog_item_material = 2131492953; - - // aapt resource value: 0x7F0C005A - public const int select_dialog_multichoice_material = 2131492954; - - // aapt resource value: 0x7F0C005B - public const int select_dialog_singlechoice_material = 2131492955; - - // aapt resource value: 0x7F0C005C - public const int support_simple_spinner_dropdown_item = 2131492956; - - static Layout() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Layout() - { - } - } - - public partial class Mipmap - { - - // aapt resource value: 0x7F0D0000 - public const int ic_launcher = 2131558400; - - // aapt resource value: 0x7F0D0001 - public const int ic_launcher_foreground = 2131558401; - - // aapt resource value: 0x7F0D0002 - public const int ic_launcher_round = 2131558402; - - static Mipmap() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Mipmap() - { - } - } - - public partial class Raw - { - - // aapt resource value: 0x7F0E0000 - public const int amu_ballon_gx_prefix = 2131623936; - - // aapt resource value: 0x7F0E0001 - public const int amu_basic_folder = 2131623937; - - // aapt resource value: 0x7F0E0002 - public const int amu_basic_placemark = 2131623938; - - // aapt resource value: 0x7F0E0003 - public const int amu_cdata = 2131623939; - - // aapt resource value: 0x7F0E0004 - public const int amu_default_balloon = 2131623940; - - // aapt resource value: 0x7F0E0005 - public const int amu_document_nest = 2131623941; - - // aapt resource value: 0x7F0E0006 - public const int amu_draw_order_ground_overlay = 2131623942; - - // aapt resource value: 0x7F0E0007 - public const int amu_extended_data = 2131623943; - - // aapt resource value: 0x7F0E0008 - public const int amu_ground_overlay = 2131623944; - - // aapt resource value: 0x7F0E0009 - public const int amu_ground_overlay_color = 2131623945; - - // aapt resource value: 0x7F0E000A - public const int amu_inline_style = 2131623946; - - // aapt resource value: 0x7F0E000B - public const int amu_multigeometry_placemarks = 2131623947; - - // aapt resource value: 0x7F0E000C - public const int amu_multiple_placemarks = 2131623948; - - // aapt resource value: 0x7F0E000D - public const int amu_nested_folders = 2131623949; - - // aapt resource value: 0x7F0E000E - public const int amu_nested_multigeometry = 2131623950; - - // aapt resource value: 0x7F0E000F - public const int amu_poly_style_boolean_alpha = 2131623951; - - // aapt resource value: 0x7F0E0010 - public const int amu_poly_style_boolean_numeric = 2131623952; - - // aapt resource value: 0x7F0E0011 - public const int amu_unknwown_folder = 2131623953; - - // aapt resource value: 0x7F0E0012 - public const int amu_unsupported = 2131623954; - - // aapt resource value: 0x7F0E0013 - public const int amu_visibility_ground_overlay = 2131623955; - - // aapt resource value: 0x7F0E0014 - public const int campus = 2131623956; - - // aapt resource value: 0x7F0E0015 - public const int earthquakes = 2131623957; - - // aapt resource value: 0x7F0E0016 - public const int earthquakes_with_usa = 2131623958; - - // aapt resource value: 0x7F0E0017 - public const int kmlgeometrytest = 2131623959; - - // aapt resource value: 0x7F0E0018 - public const int medicare = 2131623960; - - // aapt resource value: 0x7F0E0019 - public const int police = 2131623961; - - // aapt resource value: 0x7F0E001A - public const int radar_search = 2131623962; - - // aapt resource value: 0x7F0E001B - public const int south_london_line_geojson = 2131623963; - - // aapt resource value: 0x7F0E001C - public const int south_london_line_kml = 2131623964; - - // aapt resource value: 0x7F0E001D - public const int south_london_square_geojson = 2131623965; - - // aapt resource value: 0x7F0E001E - public const int south_london_square_kml = 2131623966; - - // aapt resource value: 0x7F0E001F - public const int usa = 2131623967; - - static Raw() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Raw() - { - } - } - - public partial class String - { - - // aapt resource value: 0x7F0F0000 - public const int abc_action_bar_home_description = 2131689472; - - // aapt resource value: 0x7F0F0001 - public const int abc_action_bar_up_description = 2131689473; - - // aapt resource value: 0x7F0F0002 - public const int abc_action_menu_overflow_description = 2131689474; - - // aapt resource value: 0x7F0F0003 - public const int abc_action_mode_done = 2131689475; - - // aapt resource value: 0x7F0F0005 - public const int abc_activitychooserview_choose_application = 2131689477; - - // aapt resource value: 0x7F0F0004 - public const int abc_activity_chooser_view_see_all = 2131689476; - - // aapt resource value: 0x7F0F0006 - public const int abc_capital_off = 2131689478; - - // aapt resource value: 0x7F0F0007 - public const int abc_capital_on = 2131689479; - - // aapt resource value: 0x7F0F0008 - public const int abc_menu_alt_shortcut_label = 2131689480; - - // aapt resource value: 0x7F0F0009 - public const int abc_menu_ctrl_shortcut_label = 2131689481; - - // aapt resource value: 0x7F0F000A - public const int abc_menu_delete_shortcut_label = 2131689482; - - // aapt resource value: 0x7F0F000B - public const int abc_menu_enter_shortcut_label = 2131689483; - - // aapt resource value: 0x7F0F000C - public const int abc_menu_function_shortcut_label = 2131689484; - - // aapt resource value: 0x7F0F000D - public const int abc_menu_meta_shortcut_label = 2131689485; - - // aapt resource value: 0x7F0F000E - public const int abc_menu_shift_shortcut_label = 2131689486; - - // aapt resource value: 0x7F0F000F - public const int abc_menu_space_shortcut_label = 2131689487; - - // aapt resource value: 0x7F0F0010 - public const int abc_menu_sym_shortcut_label = 2131689488; - - // aapt resource value: 0x7F0F0011 - public const int abc_prepend_shortcut_label = 2131689489; - - // aapt resource value: 0x7F0F0013 - public const int abc_searchview_description_clear = 2131689491; - - // aapt resource value: 0x7F0F0014 - public const int abc_searchview_description_query = 2131689492; - - // aapt resource value: 0x7F0F0015 - public const int abc_searchview_description_search = 2131689493; - - // aapt resource value: 0x7F0F0016 - public const int abc_searchview_description_submit = 2131689494; - - // aapt resource value: 0x7F0F0017 - public const int abc_searchview_description_voice = 2131689495; - - // aapt resource value: 0x7F0F0012 - public const int abc_search_hint = 2131689490; - - // aapt resource value: 0x7F0F0018 - public const int abc_shareactionprovider_share_with = 2131689496; - - // aapt resource value: 0x7F0F0019 - public const int abc_shareactionprovider_share_with_application = 2131689497; - - // aapt resource value: 0x7F0F001A - public const int abc_toolbar_collapse_description = 2131689498; - - // aapt resource value: 0x7F0F001B - public const int action_settings = 2131689499; - - // aapt resource value: 0x7F0F001D - public const int appbar_scrolling_view_behavior = 2131689501; - - // aapt resource value: 0x7F0F001C - public const int app_name = 2131689500; - - // aapt resource value: 0x7F0F001E - public const int attrib_format = 2131689502; - - // aapt resource value: 0x7F0F001F - public const int bottom_sheet_behavior = 2131689503; - - // aapt resource value: 0x7F0F0020 - public const int button_gradient = 2131689504; - - // aapt resource value: 0x7F0F0021 - public const int button_opacity = 2131689505; - - // aapt resource value: 0x7F0F0022 - public const int button_radius = 2131689506; - - // aapt resource value: 0x7F0F0023 - public const int button_send = 2131689507; - - // aapt resource value: 0x7F0F0024 - public const int character_counter_content_description = 2131689508; - - // aapt resource value: 0x7F0F0025 - public const int character_counter_pattern = 2131689509; - - // aapt resource value: 0x7F0F0026 - public const int common_google_play_services_enable_button = 2131689510; - - // aapt resource value: 0x7F0F0027 - public const int common_google_play_services_enable_text = 2131689511; - - // aapt resource value: 0x7F0F0028 - public const int common_google_play_services_enable_title = 2131689512; - - // aapt resource value: 0x7F0F0029 - public const int common_google_play_services_install_button = 2131689513; - - // aapt resource value: 0x7F0F002A - public const int common_google_play_services_install_text = 2131689514; - - // aapt resource value: 0x7F0F002B - public const int common_google_play_services_install_title = 2131689515; - - // aapt resource value: 0x7F0F002C - public const int common_google_play_services_notification_channel_name = 2131689516; - - // aapt resource value: 0x7F0F002D - public const int common_google_play_services_notification_ticker = 2131689517; - - // aapt resource value: 0x7F0F002E - public const int common_google_play_services_unknown_issue = 2131689518; - - // aapt resource value: 0x7F0F002F - public const int common_google_play_services_unsupported_text = 2131689519; - - // aapt resource value: 0x7F0F0030 - public const int common_google_play_services_update_button = 2131689520; - - // aapt resource value: 0x7F0F0031 - public const int common_google_play_services_update_text = 2131689521; - - // aapt resource value: 0x7F0F0032 - public const int common_google_play_services_update_title = 2131689522; - - // aapt resource value: 0x7F0F0033 - public const int common_google_play_services_updating_text = 2131689523; - - // aapt resource value: 0x7F0F0034 - public const int common_google_play_services_wear_update_text = 2131689524; - - // aapt resource value: 0x7F0F0035 - public const int common_open_on_phone = 2131689525; - - // aapt resource value: 0x7F0F0036 - public const int common_signin_button_text = 2131689526; - - // aapt resource value: 0x7F0F0037 - public const int common_signin_button_text_long = 2131689527; - - // aapt resource value: 0x7F0F0038 - public const int copy_toast_msg = 2131689528; - - // aapt resource value: 0x7F0F0039 - public const int fab_transformation_scrim_behavior = 2131689529; - - // aapt resource value: 0x7F0F003A - public const int fab_transformation_sheet_behavior = 2131689530; - - // aapt resource value: 0x7F0F003B - public const int fallback_menu_item_copy_link = 2131689531; - - // aapt resource value: 0x7F0F003C - public const int fallback_menu_item_open_in_browser = 2131689532; - - // aapt resource value: 0x7F0F003D - public const int fallback_menu_item_share_link = 2131689533; - - // aapt resource value: 0x7F0F003E - public const int geojson_url = 2131689534; - - // aapt resource value: 0x7F0F003F - public const int hide_bottom_view_on_scroll_behavior = 2131689535; - - // aapt resource value: 0x7F0F0040 - public const int input_text = 2131689536; - - // aapt resource value: 0x7F0F0041 - public const int kml_url = 2131689537; - - // aapt resource value: 0x7F0F0042 - public const int maps_api_key = 2131689538; - - // aapt resource value: 0x7F0F0043 - public const int medicare = 2131689539; - - // aapt resource value: 0x7F0F0044 - public const int medicare_url = 2131689540; - - // aapt resource value: 0x7F0F0045 - public const int mr_button_content_description = 2131689541; - - // aapt resource value: 0x7F0F0046 - public const int mr_cast_button_connected = 2131689542; - - // aapt resource value: 0x7F0F0047 - public const int mr_cast_button_connecting = 2131689543; - - // aapt resource value: 0x7F0F0048 - public const int mr_cast_button_disconnected = 2131689544; - - // aapt resource value: 0x7F0F0049 - public const int mr_cast_dialog_title_view_placeholder = 2131689545; - - // aapt resource value: 0x7F0F004A - public const int mr_chooser_searching = 2131689546; - - // aapt resource value: 0x7F0F004B - public const int mr_chooser_title = 2131689547; - - // aapt resource value: 0x7F0F004C - public const int mr_controller_album_art = 2131689548; - - // aapt resource value: 0x7F0F004D - public const int mr_controller_casting_screen = 2131689549; - - // aapt resource value: 0x7F0F004E - public const int mr_controller_close_description = 2131689550; - - // aapt resource value: 0x7F0F004F - public const int mr_controller_collapse_group = 2131689551; - - // aapt resource value: 0x7F0F0050 - public const int mr_controller_disconnect = 2131689552; - - // aapt resource value: 0x7F0F0051 - public const int mr_controller_expand_group = 2131689553; - - // aapt resource value: 0x7F0F0052 - public const int mr_controller_no_info_available = 2131689554; - - // aapt resource value: 0x7F0F0053 - public const int mr_controller_no_media_selected = 2131689555; - - // aapt resource value: 0x7F0F0054 - public const int mr_controller_pause = 2131689556; - - // aapt resource value: 0x7F0F0055 - public const int mr_controller_play = 2131689557; - - // aapt resource value: 0x7F0F0056 - public const int mr_controller_stop = 2131689558; - - // aapt resource value: 0x7F0F0057 - public const int mr_controller_stop_casting = 2131689559; - - // aapt resource value: 0x7F0F0058 - public const int mr_controller_volume_slider = 2131689560; - - // aapt resource value: 0x7F0F0059 - public const int mr_dialog_groupable_header = 2131689561; - - // aapt resource value: 0x7F0F005A - public const int mr_dialog_transferable_header = 2131689562; - - // aapt resource value: 0x7F0F005B - public const int mr_system_route_name = 2131689563; - - // aapt resource value: 0x7F0F005C - public const int mr_user_route_category_name = 2131689564; - - // aapt resource value: 0x7F0F005D - public const int mtrl_chip_close_icon_content_description = 2131689565; - - // aapt resource value: 0x7F0F005E - public const int password_toggle_content_description = 2131689566; - - // aapt resource value: 0x7F0F005F - public const int path_password_eye = 2131689567; - - // aapt resource value: 0x7F0F0060 - public const int path_password_eye_mask_strike_through = 2131689568; - - // aapt resource value: 0x7F0F0061 - public const int path_password_eye_mask_visible = 2131689569; - - // aapt resource value: 0x7F0F0062 - public const int path_password_strike_through = 2131689570; - - // aapt resource value: 0x7F0F0063 - public const int police_stations = 2131689571; - - // aapt resource value: 0x7F0F0064 - public const int police_stations_url = 2131689572; - - // aapt resource value: 0x7F0F0065 - public const int search_menu_title = 2131689573; - - // aapt resource value: 0x7F0F0066 - public const int status_bar_notification_info_overflow = 2131689574; - - static String() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private String() - { - } - } - - public partial class Style - { - - // aapt resource value: 0x7F100000 - public const int AlertDialog_AppCompat = 2131755008; - - // aapt resource value: 0x7F100001 - public const int AlertDialog_AppCompat_Light = 2131755009; - - // aapt resource value: 0x7F10020A - public const int amu_Bubble_TextAppearance_Dark = 2131755530; - - // aapt resource value: 0x7F10020B - public const int amu_Bubble_TextAppearance_Light = 2131755531; - - // aapt resource value: 0x7F10020C - public const int amu_ClusterIcon_TextAppearance = 2131755532; - - // aapt resource value: 0x7F100002 - public const int Animation_AppCompat_Dialog = 2131755010; - - // aapt resource value: 0x7F100003 - public const int Animation_AppCompat_DropDownUp = 2131755011; - - // aapt resource value: 0x7F100004 - public const int Animation_AppCompat_Tooltip = 2131755012; - - // aapt resource value: 0x7F100005 - public const int Animation_Design_BottomSheetDialog = 2131755013; - - // aapt resource value: 0x7F100006 - public const int AppTheme = 2131755014; - - // aapt resource value: 0x7F100007 - public const int Base_AlertDialog_AppCompat = 2131755015; - - // aapt resource value: 0x7F100008 - public const int Base_AlertDialog_AppCompat_Light = 2131755016; - - // aapt resource value: 0x7F100009 - public const int Base_Animation_AppCompat_Dialog = 2131755017; - - // aapt resource value: 0x7F10000A - public const int Base_Animation_AppCompat_DropDownUp = 2131755018; - - // aapt resource value: 0x7F10000B - public const int Base_Animation_AppCompat_Tooltip = 2131755019; - - // aapt resource value: 0x7F10000C - public const int Base_CardView = 2131755020; - - // aapt resource value: 0x7F10000E - public const int Base_DialogWindowTitleBackground_AppCompat = 2131755022; - - // aapt resource value: 0x7F10000D - public const int Base_DialogWindowTitle_AppCompat = 2131755021; - - // aapt resource value: 0x7F10000F - public const int Base_TextAppearance_AppCompat = 2131755023; - - // aapt resource value: 0x7F100010 - public const int Base_TextAppearance_AppCompat_Body1 = 2131755024; - - // aapt resource value: 0x7F100011 - public const int Base_TextAppearance_AppCompat_Body2 = 2131755025; - - // aapt resource value: 0x7F100012 - public const int Base_TextAppearance_AppCompat_Button = 2131755026; - - // aapt resource value: 0x7F100013 - public const int Base_TextAppearance_AppCompat_Caption = 2131755027; - - // aapt resource value: 0x7F100014 - public const int Base_TextAppearance_AppCompat_Display1 = 2131755028; - - // aapt resource value: 0x7F100015 - public const int Base_TextAppearance_AppCompat_Display2 = 2131755029; - - // aapt resource value: 0x7F100016 - public const int Base_TextAppearance_AppCompat_Display3 = 2131755030; - - // aapt resource value: 0x7F100017 - public const int Base_TextAppearance_AppCompat_Display4 = 2131755031; - - // aapt resource value: 0x7F100018 - public const int Base_TextAppearance_AppCompat_Headline = 2131755032; - - // aapt resource value: 0x7F100019 - public const int Base_TextAppearance_AppCompat_Inverse = 2131755033; - - // aapt resource value: 0x7F10001A - public const int Base_TextAppearance_AppCompat_Large = 2131755034; - - // aapt resource value: 0x7F10001B - public const int Base_TextAppearance_AppCompat_Large_Inverse = 2131755035; - - // aapt resource value: 0x7F10001C - public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131755036; - - // aapt resource value: 0x7F10001D - public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131755037; - - // aapt resource value: 0x7F10001E - public const int Base_TextAppearance_AppCompat_Medium = 2131755038; - - // aapt resource value: 0x7F10001F - public const int Base_TextAppearance_AppCompat_Medium_Inverse = 2131755039; - - // aapt resource value: 0x7F100020 - public const int Base_TextAppearance_AppCompat_Menu = 2131755040; - - // aapt resource value: 0x7F100021 - public const int Base_TextAppearance_AppCompat_SearchResult = 2131755041; - - // aapt resource value: 0x7F100022 - public const int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 2131755042; - - // aapt resource value: 0x7F100023 - public const int Base_TextAppearance_AppCompat_SearchResult_Title = 2131755043; - - // aapt resource value: 0x7F100024 - public const int Base_TextAppearance_AppCompat_Small = 2131755044; - - // aapt resource value: 0x7F100025 - public const int Base_TextAppearance_AppCompat_Small_Inverse = 2131755045; - - // aapt resource value: 0x7F100026 - public const int Base_TextAppearance_AppCompat_Subhead = 2131755046; - - // aapt resource value: 0x7F100027 - public const int Base_TextAppearance_AppCompat_Subhead_Inverse = 2131755047; - - // aapt resource value: 0x7F100028 - public const int Base_TextAppearance_AppCompat_Title = 2131755048; - - // aapt resource value: 0x7F100029 - public const int Base_TextAppearance_AppCompat_Title_Inverse = 2131755049; - - // aapt resource value: 0x7F10002A - public const int Base_TextAppearance_AppCompat_Tooltip = 2131755050; - - // aapt resource value: 0x7F10002B - public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131755051; - - // aapt resource value: 0x7F10002C - public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131755052; - - // aapt resource value: 0x7F10002D - public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131755053; - - // aapt resource value: 0x7F10002E - public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 2131755054; - - // aapt resource value: 0x7F10002F - public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131755055; - - // aapt resource value: 0x7F100030 - public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131755056; - - // aapt resource value: 0x7F100031 - public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 2131755057; - - // aapt resource value: 0x7F100032 - public const int Base_TextAppearance_AppCompat_Widget_Button = 2131755058; - - // aapt resource value: 0x7F100033 - public const int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131755059; - - // aapt resource value: 0x7F100034 - public const int Base_TextAppearance_AppCompat_Widget_Button_Colored = 2131755060; - - // aapt resource value: 0x7F100035 - public const int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 2131755061; - - // aapt resource value: 0x7F100036 - public const int Base_TextAppearance_AppCompat_Widget_DropDownItem = 2131755062; - - // aapt resource value: 0x7F100037 - public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131755063; - - // aapt resource value: 0x7F100038 - public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131755064; - - // aapt resource value: 0x7F100039 - public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131755065; - - // aapt resource value: 0x7F10003A - public const int Base_TextAppearance_AppCompat_Widget_Switch = 2131755066; - - // aapt resource value: 0x7F10003B - public const int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131755067; - - // aapt resource value: 0x7F10003C - public const int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131755068; - - // aapt resource value: 0x7F10003D - public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131755069; - - // aapt resource value: 0x7F10003E - public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 2131755070; - - // aapt resource value: 0x7F10005E - public const int Base_ThemeOverlay_AppCompat = 2131755102; - - // aapt resource value: 0x7F10005F - public const int Base_ThemeOverlay_AppCompat_ActionBar = 2131755103; - - // aapt resource value: 0x7F100060 - public const int Base_ThemeOverlay_AppCompat_Dark = 2131755104; - - // aapt resource value: 0x7F100061 - public const int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 2131755105; - - // aapt resource value: 0x7F100062 - public const int Base_ThemeOverlay_AppCompat_Dialog = 2131755106; - - // aapt resource value: 0x7F100063 - public const int Base_ThemeOverlay_AppCompat_Dialog_Alert = 2131755107; - - // aapt resource value: 0x7F100064 - public const int Base_ThemeOverlay_AppCompat_Light = 2131755108; - - // aapt resource value: 0x7F100065 - public const int Base_ThemeOverlay_MaterialComponents_Dialog = 2131755109; - - // aapt resource value: 0x7F100066 - public const int Base_ThemeOverlay_MaterialComponents_Dialog_Alert = 2131755110; - - // aapt resource value: 0x7F10003F - public const int Base_Theme_AppCompat = 2131755071; - - // aapt resource value: 0x7F100040 - public const int Base_Theme_AppCompat_CompactMenu = 2131755072; - - // aapt resource value: 0x7F100041 - public const int Base_Theme_AppCompat_Dialog = 2131755073; - - // aapt resource value: 0x7F100045 - public const int Base_Theme_AppCompat_DialogWhenLarge = 2131755077; - - // aapt resource value: 0x7F100042 - public const int Base_Theme_AppCompat_Dialog_Alert = 2131755074; - - // aapt resource value: 0x7F100043 - public const int Base_Theme_AppCompat_Dialog_FixedSize = 2131755075; - - // aapt resource value: 0x7F100044 - public const int Base_Theme_AppCompat_Dialog_MinWidth = 2131755076; - - // aapt resource value: 0x7F100046 - public const int Base_Theme_AppCompat_Light = 2131755078; - - // aapt resource value: 0x7F100047 - public const int Base_Theme_AppCompat_Light_DarkActionBar = 2131755079; - - // aapt resource value: 0x7F100048 - public const int Base_Theme_AppCompat_Light_Dialog = 2131755080; - - // aapt resource value: 0x7F10004C - public const int Base_Theme_AppCompat_Light_DialogWhenLarge = 2131755084; - - // aapt resource value: 0x7F100049 - public const int Base_Theme_AppCompat_Light_Dialog_Alert = 2131755081; - - // aapt resource value: 0x7F10004A - public const int Base_Theme_AppCompat_Light_Dialog_FixedSize = 2131755082; - - // aapt resource value: 0x7F10004B - public const int Base_Theme_AppCompat_Light_Dialog_MinWidth = 2131755083; - - // aapt resource value: 0x7F10004D - public const int Base_Theme_MaterialComponents = 2131755085; - - // aapt resource value: 0x7F10004E - public const int Base_Theme_MaterialComponents_Bridge = 2131755086; - - // aapt resource value: 0x7F10004F - public const int Base_Theme_MaterialComponents_CompactMenu = 2131755087; - - // aapt resource value: 0x7F100050 - public const int Base_Theme_MaterialComponents_Dialog = 2131755088; - - // aapt resource value: 0x7F100054 - public const int Base_Theme_MaterialComponents_DialogWhenLarge = 2131755092; - - // aapt resource value: 0x7F100051 - public const int Base_Theme_MaterialComponents_Dialog_Alert = 2131755089; - - // aapt resource value: 0x7F100052 - public const int Base_Theme_MaterialComponents_Dialog_FixedSize = 2131755090; - - // aapt resource value: 0x7F100053 - public const int Base_Theme_MaterialComponents_Dialog_MinWidth = 2131755091; - - // aapt resource value: 0x7F100055 - public const int Base_Theme_MaterialComponents_Light = 2131755093; - - // aapt resource value: 0x7F100056 - public const int Base_Theme_MaterialComponents_Light_Bridge = 2131755094; - - // aapt resource value: 0x7F100057 - public const int Base_Theme_MaterialComponents_Light_DarkActionBar = 2131755095; - - // aapt resource value: 0x7F100058 - public const int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge = 2131755096; - - // aapt resource value: 0x7F100059 - public const int Base_Theme_MaterialComponents_Light_Dialog = 2131755097; - - // aapt resource value: 0x7F10005D - public const int Base_Theme_MaterialComponents_Light_DialogWhenLarge = 2131755101; - - // aapt resource value: 0x7F10005A - public const int Base_Theme_MaterialComponents_Light_Dialog_Alert = 2131755098; - - // aapt resource value: 0x7F10005B - public const int Base_Theme_MaterialComponents_Light_Dialog_FixedSize = 2131755099; - - // aapt resource value: 0x7F10005C - public const int Base_Theme_MaterialComponents_Light_Dialog_MinWidth = 2131755100; - - // aapt resource value: 0x7F10006E - public const int Base_V14_ThemeOverlay_MaterialComponents_Dialog = 2131755118; - - // aapt resource value: 0x7F10006F - public const int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert = 2131755119; - - // aapt resource value: 0x7F100067 - public const int Base_V14_Theme_MaterialComponents = 2131755111; - - // aapt resource value: 0x7F100068 - public const int Base_V14_Theme_MaterialComponents_Bridge = 2131755112; - - // aapt resource value: 0x7F100069 - public const int Base_V14_Theme_MaterialComponents_Dialog = 2131755113; - - // aapt resource value: 0x7F10006A - public const int Base_V14_Theme_MaterialComponents_Light = 2131755114; - - // aapt resource value: 0x7F10006B - public const int Base_V14_Theme_MaterialComponents_Light_Bridge = 2131755115; - - // aapt resource value: 0x7F10006C - public const int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge = 2131755116; - - // aapt resource value: 0x7F10006D - public const int Base_V14_Theme_MaterialComponents_Light_Dialog = 2131755117; - - // aapt resource value: 0x7F100074 - public const int Base_V21_ThemeOverlay_AppCompat_Dialog = 2131755124; - - // aapt resource value: 0x7F100070 - public const int Base_V21_Theme_AppCompat = 2131755120; - - // aapt resource value: 0x7F100071 - public const int Base_V21_Theme_AppCompat_Dialog = 2131755121; - - // aapt resource value: 0x7F100072 - public const int Base_V21_Theme_AppCompat_Light = 2131755122; - - // aapt resource value: 0x7F100073 - public const int Base_V21_Theme_AppCompat_Light_Dialog = 2131755123; - - // aapt resource value: 0x7F100075 - public const int Base_V22_Theme_AppCompat = 2131755125; - - // aapt resource value: 0x7F100076 - public const int Base_V22_Theme_AppCompat_Light = 2131755126; - - // aapt resource value: 0x7F100077 - public const int Base_V23_Theme_AppCompat = 2131755127; - - // aapt resource value: 0x7F100078 - public const int Base_V23_Theme_AppCompat_Light = 2131755128; - - // aapt resource value: 0x7F100079 - public const int Base_V26_Theme_AppCompat = 2131755129; - - // aapt resource value: 0x7F10007A - public const int Base_V26_Theme_AppCompat_Light = 2131755130; - - // aapt resource value: 0x7F10007B - public const int Base_V26_Widget_AppCompat_Toolbar = 2131755131; - - // aapt resource value: 0x7F10007C - public const int Base_V28_Theme_AppCompat = 2131755132; - - // aapt resource value: 0x7F10007D - public const int Base_V28_Theme_AppCompat_Light = 2131755133; - - // aapt resource value: 0x7F100082 - public const int Base_V7_ThemeOverlay_AppCompat_Dialog = 2131755138; - - // aapt resource value: 0x7F10007E - public const int Base_V7_Theme_AppCompat = 2131755134; - - // aapt resource value: 0x7F10007F - public const int Base_V7_Theme_AppCompat_Dialog = 2131755135; - - // aapt resource value: 0x7F100080 - public const int Base_V7_Theme_AppCompat_Light = 2131755136; - - // aapt resource value: 0x7F100081 - public const int Base_V7_Theme_AppCompat_Light_Dialog = 2131755137; - - // aapt resource value: 0x7F100083 - public const int Base_V7_Widget_AppCompat_AutoCompleteTextView = 2131755139; - - // aapt resource value: 0x7F100084 - public const int Base_V7_Widget_AppCompat_EditText = 2131755140; - - // aapt resource value: 0x7F100085 - public const int Base_V7_Widget_AppCompat_Toolbar = 2131755141; - - // aapt resource value: 0x7F100086 - public const int Base_Widget_AppCompat_ActionBar = 2131755142; - - // aapt resource value: 0x7F100087 - public const int Base_Widget_AppCompat_ActionBar_Solid = 2131755143; - - // aapt resource value: 0x7F100088 - public const int Base_Widget_AppCompat_ActionBar_TabBar = 2131755144; - - // aapt resource value: 0x7F100089 - public const int Base_Widget_AppCompat_ActionBar_TabText = 2131755145; - - // aapt resource value: 0x7F10008A - public const int Base_Widget_AppCompat_ActionBar_TabView = 2131755146; - - // aapt resource value: 0x7F10008B - public const int Base_Widget_AppCompat_ActionButton = 2131755147; - - // aapt resource value: 0x7F10008C - public const int Base_Widget_AppCompat_ActionButton_CloseMode = 2131755148; - - // aapt resource value: 0x7F10008D - public const int Base_Widget_AppCompat_ActionButton_Overflow = 2131755149; - - // aapt resource value: 0x7F10008E - public const int Base_Widget_AppCompat_ActionMode = 2131755150; - - // aapt resource value: 0x7F10008F - public const int Base_Widget_AppCompat_ActivityChooserView = 2131755151; - - // aapt resource value: 0x7F100090 - public const int Base_Widget_AppCompat_AutoCompleteTextView = 2131755152; - - // aapt resource value: 0x7F100091 - public const int Base_Widget_AppCompat_Button = 2131755153; - - // aapt resource value: 0x7F100097 - public const int Base_Widget_AppCompat_ButtonBar = 2131755159; - - // aapt resource value: 0x7F100098 - public const int Base_Widget_AppCompat_ButtonBar_AlertDialog = 2131755160; - - // aapt resource value: 0x7F100092 - public const int Base_Widget_AppCompat_Button_Borderless = 2131755154; - - // aapt resource value: 0x7F100093 - public const int Base_Widget_AppCompat_Button_Borderless_Colored = 2131755155; - - // aapt resource value: 0x7F100094 - public const int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131755156; - - // aapt resource value: 0x7F100095 - public const int Base_Widget_AppCompat_Button_Colored = 2131755157; - - // aapt resource value: 0x7F100096 - public const int Base_Widget_AppCompat_Button_Small = 2131755158; - - // aapt resource value: 0x7F100099 - public const int Base_Widget_AppCompat_CompoundButton_CheckBox = 2131755161; - - // aapt resource value: 0x7F10009A - public const int Base_Widget_AppCompat_CompoundButton_RadioButton = 2131755162; - - // aapt resource value: 0x7F10009B - public const int Base_Widget_AppCompat_CompoundButton_Switch = 2131755163; - - // aapt resource value: 0x7F10009C - public const int Base_Widget_AppCompat_DrawerArrowToggle = 2131755164; - - // aapt resource value: 0x7F10009D - public const int Base_Widget_AppCompat_DrawerArrowToggle_Common = 2131755165; - - // aapt resource value: 0x7F10009E - public const int Base_Widget_AppCompat_DropDownItem_Spinner = 2131755166; - - // aapt resource value: 0x7F10009F - public const int Base_Widget_AppCompat_EditText = 2131755167; - - // aapt resource value: 0x7F1000A0 - public const int Base_Widget_AppCompat_ImageButton = 2131755168; - - // aapt resource value: 0x7F1000A1 - public const int Base_Widget_AppCompat_Light_ActionBar = 2131755169; - - // aapt resource value: 0x7F1000A2 - public const int Base_Widget_AppCompat_Light_ActionBar_Solid = 2131755170; - - // aapt resource value: 0x7F1000A3 - public const int Base_Widget_AppCompat_Light_ActionBar_TabBar = 2131755171; - - // aapt resource value: 0x7F1000A4 - public const int Base_Widget_AppCompat_Light_ActionBar_TabText = 2131755172; - - // aapt resource value: 0x7F1000A5 - public const int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131755173; - - // aapt resource value: 0x7F1000A6 - public const int Base_Widget_AppCompat_Light_ActionBar_TabView = 2131755174; - - // aapt resource value: 0x7F1000A7 - public const int Base_Widget_AppCompat_Light_PopupMenu = 2131755175; - - // aapt resource value: 0x7F1000A8 - public const int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 2131755176; - - // aapt resource value: 0x7F1000A9 - public const int Base_Widget_AppCompat_ListMenuView = 2131755177; - - // aapt resource value: 0x7F1000AA - public const int Base_Widget_AppCompat_ListPopupWindow = 2131755178; - - // aapt resource value: 0x7F1000AB - public const int Base_Widget_AppCompat_ListView = 2131755179; - - // aapt resource value: 0x7F1000AC - public const int Base_Widget_AppCompat_ListView_DropDown = 2131755180; - - // aapt resource value: 0x7F1000AD - public const int Base_Widget_AppCompat_ListView_Menu = 2131755181; - - // aapt resource value: 0x7F1000AE - public const int Base_Widget_AppCompat_PopupMenu = 2131755182; - - // aapt resource value: 0x7F1000AF - public const int Base_Widget_AppCompat_PopupMenu_Overflow = 2131755183; - - // aapt resource value: 0x7F1000B0 - public const int Base_Widget_AppCompat_PopupWindow = 2131755184; - - // aapt resource value: 0x7F1000B1 - public const int Base_Widget_AppCompat_ProgressBar = 2131755185; - - // aapt resource value: 0x7F1000B2 - public const int Base_Widget_AppCompat_ProgressBar_Horizontal = 2131755186; - - // aapt resource value: 0x7F1000B3 - public const int Base_Widget_AppCompat_RatingBar = 2131755187; - - // aapt resource value: 0x7F1000B4 - public const int Base_Widget_AppCompat_RatingBar_Indicator = 2131755188; - - // aapt resource value: 0x7F1000B5 - public const int Base_Widget_AppCompat_RatingBar_Small = 2131755189; - - // aapt resource value: 0x7F1000B6 - public const int Base_Widget_AppCompat_SearchView = 2131755190; - - // aapt resource value: 0x7F1000B7 - public const int Base_Widget_AppCompat_SearchView_ActionBar = 2131755191; - - // aapt resource value: 0x7F1000B8 - public const int Base_Widget_AppCompat_SeekBar = 2131755192; - - // aapt resource value: 0x7F1000B9 - public const int Base_Widget_AppCompat_SeekBar_Discrete = 2131755193; - - // aapt resource value: 0x7F1000BA - public const int Base_Widget_AppCompat_Spinner = 2131755194; - - // aapt resource value: 0x7F1000BB - public const int Base_Widget_AppCompat_Spinner_Underlined = 2131755195; - - // aapt resource value: 0x7F1000BC - public const int Base_Widget_AppCompat_TextView = 2131755196; - - // aapt resource value: 0x7F1000BD - public const int Base_Widget_AppCompat_TextView_SpinnerItem = 2131755197; - - // aapt resource value: 0x7F1000BE - public const int Base_Widget_AppCompat_Toolbar = 2131755198; - - // aapt resource value: 0x7F1000BF - public const int Base_Widget_AppCompat_Toolbar_Button_Navigation = 2131755199; - - // aapt resource value: 0x7F1000C0 - public const int Base_Widget_Design_TabLayout = 2131755200; - - // aapt resource value: 0x7F1000C1 - public const int Base_Widget_MaterialComponents_Chip = 2131755201; - - // aapt resource value: 0x7F1000C2 - public const int Base_Widget_MaterialComponents_TextInputEditText = 2131755202; - - // aapt resource value: 0x7F1000C3 - public const int Base_Widget_MaterialComponents_TextInputLayout = 2131755203; - - // aapt resource value: 0x7F1000C4 - public const int CardView = 2131755204; - - // aapt resource value: 0x7F1000C5 - public const int CardView_Dark = 2131755205; - - // aapt resource value: 0x7F1000C6 - public const int CardView_Light = 2131755206; - - // aapt resource value: 0x7F1000C7 - public const int Platform_AppCompat = 2131755207; - - // aapt resource value: 0x7F1000C8 - public const int Platform_AppCompat_Light = 2131755208; - - // aapt resource value: 0x7F1000C9 - public const int Platform_MaterialComponents = 2131755209; - - // aapt resource value: 0x7F1000CA - public const int Platform_MaterialComponents_Dialog = 2131755210; - - // aapt resource value: 0x7F1000CB - public const int Platform_MaterialComponents_Light = 2131755211; - - // aapt resource value: 0x7F1000CC - public const int Platform_MaterialComponents_Light_Dialog = 2131755212; - - // aapt resource value: 0x7F1000CD - public const int Platform_ThemeOverlay_AppCompat = 2131755213; - - // aapt resource value: 0x7F1000CE - public const int Platform_ThemeOverlay_AppCompat_Dark = 2131755214; - - // aapt resource value: 0x7F1000CF - public const int Platform_ThemeOverlay_AppCompat_Light = 2131755215; - - // aapt resource value: 0x7F1000D0 - public const int Platform_V21_AppCompat = 2131755216; - - // aapt resource value: 0x7F1000D1 - public const int Platform_V21_AppCompat_Light = 2131755217; - - // aapt resource value: 0x7F1000D2 - public const int Platform_V25_AppCompat = 2131755218; - - // aapt resource value: 0x7F1000D3 - public const int Platform_V25_AppCompat_Light = 2131755219; - - // aapt resource value: 0x7F1000D4 - public const int Platform_Widget_AppCompat_Spinner = 2131755220; - - // aapt resource value: 0x7F1000D5 - public const int RtlOverlay_DialogWindowTitle_AppCompat = 2131755221; - - // aapt resource value: 0x7F1000D6 - public const int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 2131755222; - - // aapt resource value: 0x7F1000D7 - public const int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 2131755223; - - // aapt resource value: 0x7F1000D8 - public const int RtlOverlay_Widget_AppCompat_PopupMenuItem = 2131755224; - - // aapt resource value: 0x7F1000D9 - public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 2131755225; - - // aapt resource value: 0x7F1000DA - public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 2131755226; - - // aapt resource value: 0x7F1000DB - public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 2131755227; - - // aapt resource value: 0x7F1000DC - public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 2131755228; - - // aapt resource value: 0x7F1000DD - public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 2131755229; - - // aapt resource value: 0x7F1000E3 - public const int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 2131755235; - - // aapt resource value: 0x7F1000DE - public const int RtlOverlay_Widget_AppCompat_Search_DropDown = 2131755230; - - // aapt resource value: 0x7F1000DF - public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 2131755231; - - // aapt resource value: 0x7F1000E0 - public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 2131755232; - - // aapt resource value: 0x7F1000E1 - public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 2131755233; - - // aapt resource value: 0x7F1000E2 - public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 2131755234; - - // aapt resource value: 0x7F1000E4 - public const int RtlUnderlay_Widget_AppCompat_ActionButton = 2131755236; - - // aapt resource value: 0x7F1000E5 - public const int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 2131755237; - - // aapt resource value: 0x7F1000E6 - public const int TextAppearance_AppCompat = 2131755238; - - // aapt resource value: 0x7F1000E7 - public const int TextAppearance_AppCompat_Body1 = 2131755239; - - // aapt resource value: 0x7F1000E8 - public const int TextAppearance_AppCompat_Body2 = 2131755240; - - // aapt resource value: 0x7F1000E9 - public const int TextAppearance_AppCompat_Button = 2131755241; - - // aapt resource value: 0x7F1000EA - public const int TextAppearance_AppCompat_Caption = 2131755242; - - // aapt resource value: 0x7F1000EB - public const int TextAppearance_AppCompat_Display1 = 2131755243; - - // aapt resource value: 0x7F1000EC - public const int TextAppearance_AppCompat_Display2 = 2131755244; - - // aapt resource value: 0x7F1000ED - public const int TextAppearance_AppCompat_Display3 = 2131755245; - - // aapt resource value: 0x7F1000EE - public const int TextAppearance_AppCompat_Display4 = 2131755246; - - // aapt resource value: 0x7F1000EF - public const int TextAppearance_AppCompat_Headline = 2131755247; - - // aapt resource value: 0x7F1000F0 - public const int TextAppearance_AppCompat_Inverse = 2131755248; - - // aapt resource value: 0x7F1000F1 - public const int TextAppearance_AppCompat_Large = 2131755249; - - // aapt resource value: 0x7F1000F2 - public const int TextAppearance_AppCompat_Large_Inverse = 2131755250; - - // aapt resource value: 0x7F1000F3 - public const int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 2131755251; - - // aapt resource value: 0x7F1000F4 - public const int TextAppearance_AppCompat_Light_SearchResult_Title = 2131755252; - - // aapt resource value: 0x7F1000F5 - public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131755253; - - // aapt resource value: 0x7F1000F6 - public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131755254; - - // aapt resource value: 0x7F1000F7 - public const int TextAppearance_AppCompat_Medium = 2131755255; - - // aapt resource value: 0x7F1000F8 - public const int TextAppearance_AppCompat_Medium_Inverse = 2131755256; - - // aapt resource value: 0x7F1000F9 - public const int TextAppearance_AppCompat_Menu = 2131755257; - - // aapt resource value: 0x7F1000FA - public const int TextAppearance_AppCompat_SearchResult_Subtitle = 2131755258; - - // aapt resource value: 0x7F1000FB - public const int TextAppearance_AppCompat_SearchResult_Title = 2131755259; - - // aapt resource value: 0x7F1000FC - public const int TextAppearance_AppCompat_Small = 2131755260; - - // aapt resource value: 0x7F1000FD - public const int TextAppearance_AppCompat_Small_Inverse = 2131755261; - - // aapt resource value: 0x7F1000FE - public const int TextAppearance_AppCompat_Subhead = 2131755262; - - // aapt resource value: 0x7F1000FF - public const int TextAppearance_AppCompat_Subhead_Inverse = 2131755263; - - // aapt resource value: 0x7F100100 - public const int TextAppearance_AppCompat_Title = 2131755264; - - // aapt resource value: 0x7F100101 - public const int TextAppearance_AppCompat_Title_Inverse = 2131755265; - - // aapt resource value: 0x7F100102 - public const int TextAppearance_AppCompat_Tooltip = 2131755266; - - // aapt resource value: 0x7F100103 - public const int TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131755267; - - // aapt resource value: 0x7F100104 - public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131755268; - - // aapt resource value: 0x7F100105 - public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131755269; - - // aapt resource value: 0x7F100106 - public const int TextAppearance_AppCompat_Widget_ActionBar_Title = 2131755270; - - // aapt resource value: 0x7F100107 - public const int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131755271; - - // aapt resource value: 0x7F100108 - public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131755272; - - // aapt resource value: 0x7F100109 - public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 2131755273; - - // aapt resource value: 0x7F10010A - public const int TextAppearance_AppCompat_Widget_ActionMode_Title = 2131755274; - - // aapt resource value: 0x7F10010B - public const int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 2131755275; - - // aapt resource value: 0x7F10010C - public const int TextAppearance_AppCompat_Widget_Button = 2131755276; - - // aapt resource value: 0x7F10010D - public const int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131755277; - - // aapt resource value: 0x7F10010E - public const int TextAppearance_AppCompat_Widget_Button_Colored = 2131755278; - - // aapt resource value: 0x7F10010F - public const int TextAppearance_AppCompat_Widget_Button_Inverse = 2131755279; - - // aapt resource value: 0x7F100110 - public const int TextAppearance_AppCompat_Widget_DropDownItem = 2131755280; - - // aapt resource value: 0x7F100111 - public const int TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131755281; - - // aapt resource value: 0x7F100112 - public const int TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131755282; - - // aapt resource value: 0x7F100113 - public const int TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131755283; - - // aapt resource value: 0x7F100114 - public const int TextAppearance_AppCompat_Widget_Switch = 2131755284; - - // aapt resource value: 0x7F100115 - public const int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131755285; - - // aapt resource value: 0x7F100116 - public const int TextAppearance_Compat_Notification = 2131755286; - - // aapt resource value: 0x7F100117 - public const int TextAppearance_Compat_Notification_Info = 2131755287; - - // aapt resource value: 0x7F100118 - public const int TextAppearance_Compat_Notification_Info_Media = 2131755288; - - // aapt resource value: 0x7F100119 - public const int TextAppearance_Compat_Notification_Line2 = 2131755289; - - // aapt resource value: 0x7F10011A - public const int TextAppearance_Compat_Notification_Line2_Media = 2131755290; - - // aapt resource value: 0x7F10011B - public const int TextAppearance_Compat_Notification_Media = 2131755291; - - // aapt resource value: 0x7F10011C - public const int TextAppearance_Compat_Notification_Time = 2131755292; - - // aapt resource value: 0x7F10011D - public const int TextAppearance_Compat_Notification_Time_Media = 2131755293; - - // aapt resource value: 0x7F10011E - public const int TextAppearance_Compat_Notification_Title = 2131755294; - - // aapt resource value: 0x7F10011F - public const int TextAppearance_Compat_Notification_Title_Media = 2131755295; - - // aapt resource value: 0x7F100120 - public const int TextAppearance_Design_CollapsingToolbar_Expanded = 2131755296; - - // aapt resource value: 0x7F100121 - public const int TextAppearance_Design_Counter = 2131755297; - - // aapt resource value: 0x7F100122 - public const int TextAppearance_Design_Counter_Overflow = 2131755298; - - // aapt resource value: 0x7F100123 - public const int TextAppearance_Design_Error = 2131755299; - - // aapt resource value: 0x7F100124 - public const int TextAppearance_Design_HelperText = 2131755300; - - // aapt resource value: 0x7F100125 - public const int TextAppearance_Design_Hint = 2131755301; - - // aapt resource value: 0x7F100126 - public const int TextAppearance_Design_Snackbar_Message = 2131755302; - - // aapt resource value: 0x7F100127 - public const int TextAppearance_Design_Tab = 2131755303; - - // aapt resource value: 0x7F100128 - public const int TextAppearance_MaterialComponents_Body1 = 2131755304; - - // aapt resource value: 0x7F100129 - public const int TextAppearance_MaterialComponents_Body2 = 2131755305; - - // aapt resource value: 0x7F10012A - public const int TextAppearance_MaterialComponents_Button = 2131755306; - - // aapt resource value: 0x7F10012B - public const int TextAppearance_MaterialComponents_Caption = 2131755307; - - // aapt resource value: 0x7F10012C - public const int TextAppearance_MaterialComponents_Chip = 2131755308; - - // aapt resource value: 0x7F10012D - public const int TextAppearance_MaterialComponents_Headline1 = 2131755309; - - // aapt resource value: 0x7F10012E - public const int TextAppearance_MaterialComponents_Headline2 = 2131755310; - - // aapt resource value: 0x7F10012F - public const int TextAppearance_MaterialComponents_Headline3 = 2131755311; - - // aapt resource value: 0x7F100130 - public const int TextAppearance_MaterialComponents_Headline4 = 2131755312; - - // aapt resource value: 0x7F100131 - public const int TextAppearance_MaterialComponents_Headline5 = 2131755313; - - // aapt resource value: 0x7F100132 - public const int TextAppearance_MaterialComponents_Headline6 = 2131755314; - - // aapt resource value: 0x7F100133 - public const int TextAppearance_MaterialComponents_Overline = 2131755315; - - // aapt resource value: 0x7F100134 - public const int TextAppearance_MaterialComponents_Subtitle1 = 2131755316; - - // aapt resource value: 0x7F100135 - public const int TextAppearance_MaterialComponents_Subtitle2 = 2131755317; - - // aapt resource value: 0x7F100136 - public const int TextAppearance_MaterialComponents_Tab = 2131755318; - - // aapt resource value: 0x7F100137 - public const int TextAppearance_MediaRouter_Dynamic_Body = 2131755319; - - // aapt resource value: 0x7F100138 - public const int TextAppearance_MediaRouter_Dynamic_Body_Light = 2131755320; - - // aapt resource value: 0x7F100139 - public const int TextAppearance_MediaRouter_Dynamic_Header = 2131755321; - - // aapt resource value: 0x7F10013A - public const int TextAppearance_MediaRouter_Dynamic_Header_Light = 2131755322; - - // aapt resource value: 0x7F10013B - public const int TextAppearance_MediaRouter_Dynamic_Metadata_PrimaryText = 2131755323; - - // aapt resource value: 0x7F10013C - public const int TextAppearance_MediaRouter_Dynamic_Metadata_SecondaryText = 2131755324; - - // aapt resource value: 0x7F10013D - public const int TextAppearance_MediaRouter_PrimaryText = 2131755325; - - // aapt resource value: 0x7F10013E - public const int TextAppearance_MediaRouter_SecondaryText = 2131755326; - - // aapt resource value: 0x7F10013F - public const int TextAppearance_MediaRouter_Title = 2131755327; - - // aapt resource value: 0x7F100140 - public const int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131755328; - - // aapt resource value: 0x7F100141 - public const int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131755329; - - // aapt resource value: 0x7F100142 - public const int TextAppearance_Widget_AppCompat_Toolbar_Title = 2131755330; - - // aapt resource value: 0x7F100177 - public const int ThemeOverlay_AppCompat = 2131755383; - - // aapt resource value: 0x7F100178 - public const int ThemeOverlay_AppCompat_ActionBar = 2131755384; - - // aapt resource value: 0x7F100179 - public const int ThemeOverlay_AppCompat_Dark = 2131755385; - - // aapt resource value: 0x7F10017A - public const int ThemeOverlay_AppCompat_Dark_ActionBar = 2131755386; - - // aapt resource value: 0x7F10017B - public const int ThemeOverlay_AppCompat_DayNight = 2131755387; - - // aapt resource value: 0x7F10017C - public const int ThemeOverlay_AppCompat_DayNight_ActionBar = 2131755388; - - // aapt resource value: 0x7F10017D - public const int ThemeOverlay_AppCompat_Dialog = 2131755389; - - // aapt resource value: 0x7F10017E - public const int ThemeOverlay_AppCompat_Dialog_Alert = 2131755390; - - // aapt resource value: 0x7F10017F - public const int ThemeOverlay_AppCompat_Light = 2131755391; - - // aapt resource value: 0x7F100180 - public const int ThemeOverlay_MaterialComponents = 2131755392; - - // aapt resource value: 0x7F100181 - public const int ThemeOverlay_MaterialComponents_ActionBar = 2131755393; - - // aapt resource value: 0x7F100182 - public const int ThemeOverlay_MaterialComponents_Dark = 2131755394; - - // aapt resource value: 0x7F100183 - public const int ThemeOverlay_MaterialComponents_Dark_ActionBar = 2131755395; - - // aapt resource value: 0x7F100184 - public const int ThemeOverlay_MaterialComponents_Dialog = 2131755396; - - // aapt resource value: 0x7F100185 - public const int ThemeOverlay_MaterialComponents_Dialog_Alert = 2131755397; - - // aapt resource value: 0x7F100186 - public const int ThemeOverlay_MaterialComponents_Light = 2131755398; - - // aapt resource value: 0x7F100187 - public const int ThemeOverlay_MaterialComponents_TextInputEditText = 2131755399; - - // aapt resource value: 0x7F100188 - public const int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox = 2131755400; - - // aapt resource value: 0x7F100189 - public const int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense = 2131755401; - - // aapt resource value: 0x7F10018A - public const int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox = 2131755402; - - // aapt resource value: 0x7F10018B - public const int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense = 2131755403; - - // aapt resource value: 0x7F10018C - public const int ThemeOverlay_MediaRouter_Dark = 2131755404; - - // aapt resource value: 0x7F10018D - public const int ThemeOverlay_MediaRouter_Light = 2131755405; - - // aapt resource value: 0x7F100143 - public const int Theme_AppCompat = 2131755331; - - // aapt resource value: 0x7F100144 - public const int Theme_AppCompat_CompactMenu = 2131755332; - - // aapt resource value: 0x7F100145 - public const int Theme_AppCompat_DayNight = 2131755333; - - // aapt resource value: 0x7F100146 - public const int Theme_AppCompat_DayNight_DarkActionBar = 2131755334; - - // aapt resource value: 0x7F100147 - public const int Theme_AppCompat_DayNight_Dialog = 2131755335; - - // aapt resource value: 0x7F10014A - public const int Theme_AppCompat_DayNight_DialogWhenLarge = 2131755338; - - // aapt resource value: 0x7F100148 - public const int Theme_AppCompat_DayNight_Dialog_Alert = 2131755336; - - // aapt resource value: 0x7F100149 - public const int Theme_AppCompat_DayNight_Dialog_MinWidth = 2131755337; - - // aapt resource value: 0x7F10014B - public const int Theme_AppCompat_DayNight_NoActionBar = 2131755339; - - // aapt resource value: 0x7F10014C - public const int Theme_AppCompat_Dialog = 2131755340; - - // aapt resource value: 0x7F10014F - public const int Theme_AppCompat_DialogWhenLarge = 2131755343; - - // aapt resource value: 0x7F10014D - public const int Theme_AppCompat_Dialog_Alert = 2131755341; - - // aapt resource value: 0x7F10014E - public const int Theme_AppCompat_Dialog_MinWidth = 2131755342; - - // aapt resource value: 0x7F100150 - public const int Theme_AppCompat_Light = 2131755344; - - // aapt resource value: 0x7F100151 - public const int Theme_AppCompat_Light_DarkActionBar = 2131755345; - - // aapt resource value: 0x7F100152 - public const int Theme_AppCompat_Light_Dialog = 2131755346; - - // aapt resource value: 0x7F100155 - public const int Theme_AppCompat_Light_DialogWhenLarge = 2131755349; - - // aapt resource value: 0x7F100153 - public const int Theme_AppCompat_Light_Dialog_Alert = 2131755347; - - // aapt resource value: 0x7F100154 - public const int Theme_AppCompat_Light_Dialog_MinWidth = 2131755348; - - // aapt resource value: 0x7F100156 - public const int Theme_AppCompat_Light_NoActionBar = 2131755350; - - // aapt resource value: 0x7F100157 - public const int Theme_AppCompat_NoActionBar = 2131755351; - - // aapt resource value: 0x7F100158 - public const int Theme_Design = 2131755352; - - // aapt resource value: 0x7F100159 - public const int Theme_Design_BottomSheetDialog = 2131755353; - - // aapt resource value: 0x7F10015A - public const int Theme_Design_Light = 2131755354; - - // aapt resource value: 0x7F10015B - public const int Theme_Design_Light_BottomSheetDialog = 2131755355; - - // aapt resource value: 0x7F10015C - public const int Theme_Design_Light_NoActionBar = 2131755356; - - // aapt resource value: 0x7F10015D - public const int Theme_Design_NoActionBar = 2131755357; - - // aapt resource value: 0x7F10015E - public const int Theme_MaterialComponents = 2131755358; - - // aapt resource value: 0x7F10015F - public const int Theme_MaterialComponents_BottomSheetDialog = 2131755359; - - // aapt resource value: 0x7F100160 - public const int Theme_MaterialComponents_Bridge = 2131755360; - - // aapt resource value: 0x7F100161 - public const int Theme_MaterialComponents_CompactMenu = 2131755361; - - // aapt resource value: 0x7F100162 - public const int Theme_MaterialComponents_Dialog = 2131755362; - - // aapt resource value: 0x7F100165 - public const int Theme_MaterialComponents_DialogWhenLarge = 2131755365; - - // aapt resource value: 0x7F100163 - public const int Theme_MaterialComponents_Dialog_Alert = 2131755363; - - // aapt resource value: 0x7F100164 - public const int Theme_MaterialComponents_Dialog_MinWidth = 2131755364; - - // aapt resource value: 0x7F100166 - public const int Theme_MaterialComponents_Light = 2131755366; - - // aapt resource value: 0x7F100167 - public const int Theme_MaterialComponents_Light_BottomSheetDialog = 2131755367; - - // aapt resource value: 0x7F100168 - public const int Theme_MaterialComponents_Light_Bridge = 2131755368; - - // aapt resource value: 0x7F100169 - public const int Theme_MaterialComponents_Light_DarkActionBar = 2131755369; - - // aapt resource value: 0x7F10016A - public const int Theme_MaterialComponents_Light_DarkActionBar_Bridge = 2131755370; - - // aapt resource value: 0x7F10016B - public const int Theme_MaterialComponents_Light_Dialog = 2131755371; - - // aapt resource value: 0x7F10016E - public const int Theme_MaterialComponents_Light_DialogWhenLarge = 2131755374; - - // aapt resource value: 0x7F10016C - public const int Theme_MaterialComponents_Light_Dialog_Alert = 2131755372; - - // aapt resource value: 0x7F10016D - public const int Theme_MaterialComponents_Light_Dialog_MinWidth = 2131755373; - - // aapt resource value: 0x7F10016F - public const int Theme_MaterialComponents_Light_NoActionBar = 2131755375; - - // aapt resource value: 0x7F100170 - public const int Theme_MaterialComponents_Light_NoActionBar_Bridge = 2131755376; - - // aapt resource value: 0x7F100171 - public const int Theme_MaterialComponents_NoActionBar = 2131755377; - - // aapt resource value: 0x7F100172 - public const int Theme_MaterialComponents_NoActionBar_Bridge = 2131755378; - - // aapt resource value: 0x7F100173 - public const int Theme_MediaRouter = 2131755379; - - // aapt resource value: 0x7F100174 - public const int Theme_MediaRouter_Light = 2131755380; - - // aapt resource value: 0x7F100176 - public const int Theme_MediaRouter_LightControlPanel = 2131755382; - - // aapt resource value: 0x7F100175 - public const int Theme_MediaRouter_Light_DarkControlPanel = 2131755381; - - // aapt resource value: 0x7F10018E - public const int Widget_AppCompat_ActionBar = 2131755406; - - // aapt resource value: 0x7F10018F - public const int Widget_AppCompat_ActionBar_Solid = 2131755407; - - // aapt resource value: 0x7F100190 - public const int Widget_AppCompat_ActionBar_TabBar = 2131755408; - - // aapt resource value: 0x7F100191 - public const int Widget_AppCompat_ActionBar_TabText = 2131755409; - - // aapt resource value: 0x7F100192 - public const int Widget_AppCompat_ActionBar_TabView = 2131755410; - - // aapt resource value: 0x7F100193 - public const int Widget_AppCompat_ActionButton = 2131755411; - - // aapt resource value: 0x7F100194 - public const int Widget_AppCompat_ActionButton_CloseMode = 2131755412; - - // aapt resource value: 0x7F100195 - public const int Widget_AppCompat_ActionButton_Overflow = 2131755413; - - // aapt resource value: 0x7F100196 - public const int Widget_AppCompat_ActionMode = 2131755414; - - // aapt resource value: 0x7F100197 - public const int Widget_AppCompat_ActivityChooserView = 2131755415; - - // aapt resource value: 0x7F100198 - public const int Widget_AppCompat_AutoCompleteTextView = 2131755416; - - // aapt resource value: 0x7F100199 - public const int Widget_AppCompat_Button = 2131755417; - - // aapt resource value: 0x7F10019F - public const int Widget_AppCompat_ButtonBar = 2131755423; - - // aapt resource value: 0x7F1001A0 - public const int Widget_AppCompat_ButtonBar_AlertDialog = 2131755424; - - // aapt resource value: 0x7F10019A - public const int Widget_AppCompat_Button_Borderless = 2131755418; - - // aapt resource value: 0x7F10019B - public const int Widget_AppCompat_Button_Borderless_Colored = 2131755419; - - // aapt resource value: 0x7F10019C - public const int Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131755420; - - // aapt resource value: 0x7F10019D - public const int Widget_AppCompat_Button_Colored = 2131755421; - - // aapt resource value: 0x7F10019E - public const int Widget_AppCompat_Button_Small = 2131755422; - - // aapt resource value: 0x7F1001A1 - public const int Widget_AppCompat_CompoundButton_CheckBox = 2131755425; - - // aapt resource value: 0x7F1001A2 - public const int Widget_AppCompat_CompoundButton_RadioButton = 2131755426; - - // aapt resource value: 0x7F1001A3 - public const int Widget_AppCompat_CompoundButton_Switch = 2131755427; - - // aapt resource value: 0x7F1001A4 - public const int Widget_AppCompat_DrawerArrowToggle = 2131755428; - - // aapt resource value: 0x7F1001A5 - public const int Widget_AppCompat_DropDownItem_Spinner = 2131755429; - - // aapt resource value: 0x7F1001A6 - public const int Widget_AppCompat_EditText = 2131755430; - - // aapt resource value: 0x7F1001A7 - public const int Widget_AppCompat_ImageButton = 2131755431; - - // aapt resource value: 0x7F1001A8 - public const int Widget_AppCompat_Light_ActionBar = 2131755432; - - // aapt resource value: 0x7F1001A9 - public const int Widget_AppCompat_Light_ActionBar_Solid = 2131755433; - - // aapt resource value: 0x7F1001AA - public const int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 2131755434; - - // aapt resource value: 0x7F1001AB - public const int Widget_AppCompat_Light_ActionBar_TabBar = 2131755435; - - // aapt resource value: 0x7F1001AC - public const int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 2131755436; - - // aapt resource value: 0x7F1001AD - public const int Widget_AppCompat_Light_ActionBar_TabText = 2131755437; - - // aapt resource value: 0x7F1001AE - public const int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131755438; - - // aapt resource value: 0x7F1001AF - public const int Widget_AppCompat_Light_ActionBar_TabView = 2131755439; - - // aapt resource value: 0x7F1001B0 - public const int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 2131755440; - - // aapt resource value: 0x7F1001B1 - public const int Widget_AppCompat_Light_ActionButton = 2131755441; - - // aapt resource value: 0x7F1001B2 - public const int Widget_AppCompat_Light_ActionButton_CloseMode = 2131755442; - - // aapt resource value: 0x7F1001B3 - public const int Widget_AppCompat_Light_ActionButton_Overflow = 2131755443; - - // aapt resource value: 0x7F1001B4 - public const int Widget_AppCompat_Light_ActionMode_Inverse = 2131755444; - - // aapt resource value: 0x7F1001B5 - public const int Widget_AppCompat_Light_ActivityChooserView = 2131755445; - - // aapt resource value: 0x7F1001B6 - public const int Widget_AppCompat_Light_AutoCompleteTextView = 2131755446; - - // aapt resource value: 0x7F1001B7 - public const int Widget_AppCompat_Light_DropDownItem_Spinner = 2131755447; - - // aapt resource value: 0x7F1001B8 - public const int Widget_AppCompat_Light_ListPopupWindow = 2131755448; - - // aapt resource value: 0x7F1001B9 - public const int Widget_AppCompat_Light_ListView_DropDown = 2131755449; - - // aapt resource value: 0x7F1001BA - public const int Widget_AppCompat_Light_PopupMenu = 2131755450; - - // aapt resource value: 0x7F1001BB - public const int Widget_AppCompat_Light_PopupMenu_Overflow = 2131755451; - - // aapt resource value: 0x7F1001BC - public const int Widget_AppCompat_Light_SearchView = 2131755452; - - // aapt resource value: 0x7F1001BD - public const int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 2131755453; - - // aapt resource value: 0x7F1001BE - public const int Widget_AppCompat_ListMenuView = 2131755454; - - // aapt resource value: 0x7F1001BF - public const int Widget_AppCompat_ListPopupWindow = 2131755455; - - // aapt resource value: 0x7F1001C0 - public const int Widget_AppCompat_ListView = 2131755456; - - // aapt resource value: 0x7F1001C1 - public const int Widget_AppCompat_ListView_DropDown = 2131755457; - - // aapt resource value: 0x7F1001C2 - public const int Widget_AppCompat_ListView_Menu = 2131755458; - - // aapt resource value: 0x7F1001C3 - public const int Widget_AppCompat_PopupMenu = 2131755459; - - // aapt resource value: 0x7F1001C4 - public const int Widget_AppCompat_PopupMenu_Overflow = 2131755460; - - // aapt resource value: 0x7F1001C5 - public const int Widget_AppCompat_PopupWindow = 2131755461; - - // aapt resource value: 0x7F1001C6 - public const int Widget_AppCompat_ProgressBar = 2131755462; - - // aapt resource value: 0x7F1001C7 - public const int Widget_AppCompat_ProgressBar_Horizontal = 2131755463; - - // aapt resource value: 0x7F1001C8 - public const int Widget_AppCompat_RatingBar = 2131755464; - - // aapt resource value: 0x7F1001C9 - public const int Widget_AppCompat_RatingBar_Indicator = 2131755465; - - // aapt resource value: 0x7F1001CA - public const int Widget_AppCompat_RatingBar_Small = 2131755466; - - // aapt resource value: 0x7F1001CB - public const int Widget_AppCompat_SearchView = 2131755467; - - // aapt resource value: 0x7F1001CC - public const int Widget_AppCompat_SearchView_ActionBar = 2131755468; - - // aapt resource value: 0x7F1001CD - public const int Widget_AppCompat_SeekBar = 2131755469; - - // aapt resource value: 0x7F1001CE - public const int Widget_AppCompat_SeekBar_Discrete = 2131755470; - - // aapt resource value: 0x7F1001CF - public const int Widget_AppCompat_Spinner = 2131755471; - - // aapt resource value: 0x7F1001D0 - public const int Widget_AppCompat_Spinner_DropDown = 2131755472; - - // aapt resource value: 0x7F1001D1 - public const int Widget_AppCompat_Spinner_DropDown_ActionBar = 2131755473; - - // aapt resource value: 0x7F1001D2 - public const int Widget_AppCompat_Spinner_Underlined = 2131755474; - - // aapt resource value: 0x7F1001D3 - public const int Widget_AppCompat_TextView = 2131755475; - - // aapt resource value: 0x7F1001D4 - public const int Widget_AppCompat_TextView_SpinnerItem = 2131755476; - - // aapt resource value: 0x7F1001D5 - public const int Widget_AppCompat_Toolbar = 2131755477; - - // aapt resource value: 0x7F1001D6 - public const int Widget_AppCompat_Toolbar_Button_Navigation = 2131755478; - - // aapt resource value: 0x7F1001D7 - public const int Widget_Compat_NotificationActionContainer = 2131755479; - - // aapt resource value: 0x7F1001D8 - public const int Widget_Compat_NotificationActionText = 2131755480; - - // aapt resource value: 0x7F1001D9 - public const int Widget_Design_AppBarLayout = 2131755481; - - // aapt resource value: 0x7F1001DA - public const int Widget_Design_BottomNavigationView = 2131755482; - - // aapt resource value: 0x7F1001DB - public const int Widget_Design_BottomSheet_Modal = 2131755483; - - // aapt resource value: 0x7F1001DC - public const int Widget_Design_CollapsingToolbar = 2131755484; - - // aapt resource value: 0x7F1001DD - public const int Widget_Design_FloatingActionButton = 2131755485; - - // aapt resource value: 0x7F1001DE - public const int Widget_Design_NavigationView = 2131755486; - - // aapt resource value: 0x7F1001DF - public const int Widget_Design_ScrimInsetsFrameLayout = 2131755487; - - // aapt resource value: 0x7F1001E0 - public const int Widget_Design_Snackbar = 2131755488; - - // aapt resource value: 0x7F1001E1 - public const int Widget_Design_TabLayout = 2131755489; - - // aapt resource value: 0x7F1001E2 - public const int Widget_Design_TextInputLayout = 2131755490; - - // aapt resource value: 0x7F1001E3 - public const int Widget_MaterialComponents_BottomAppBar = 2131755491; - - // aapt resource value: 0x7F1001E4 - public const int Widget_MaterialComponents_BottomAppBar_Colored = 2131755492; - - // aapt resource value: 0x7F1001E5 - public const int Widget_MaterialComponents_BottomNavigationView = 2131755493; - - // aapt resource value: 0x7F1001E6 - public const int Widget_MaterialComponents_BottomNavigationView_Colored = 2131755494; - - // aapt resource value: 0x7F1001E7 - public const int Widget_MaterialComponents_BottomSheet_Modal = 2131755495; - - // aapt resource value: 0x7F1001E8 - public const int Widget_MaterialComponents_Button = 2131755496; - - // aapt resource value: 0x7F1001E9 - public const int Widget_MaterialComponents_Button_Icon = 2131755497; - - // aapt resource value: 0x7F1001EA - public const int Widget_MaterialComponents_Button_OutlinedButton = 2131755498; - - // aapt resource value: 0x7F1001EB - public const int Widget_MaterialComponents_Button_OutlinedButton_Icon = 2131755499; - - // aapt resource value: 0x7F1001EC - public const int Widget_MaterialComponents_Button_TextButton = 2131755500; - - // aapt resource value: 0x7F1001ED - public const int Widget_MaterialComponents_Button_TextButton_Dialog = 2131755501; - - // aapt resource value: 0x7F1001EE - public const int Widget_MaterialComponents_Button_TextButton_Dialog_Icon = 2131755502; - - // aapt resource value: 0x7F1001EF - public const int Widget_MaterialComponents_Button_TextButton_Icon = 2131755503; - - // aapt resource value: 0x7F1001F0 - public const int Widget_MaterialComponents_Button_UnelevatedButton = 2131755504; - - // aapt resource value: 0x7F1001F1 - public const int Widget_MaterialComponents_Button_UnelevatedButton_Icon = 2131755505; - - // aapt resource value: 0x7F1001F2 - public const int Widget_MaterialComponents_CardView = 2131755506; - - // aapt resource value: 0x7F1001F7 - public const int Widget_MaterialComponents_ChipGroup = 2131755511; - - // aapt resource value: 0x7F1001F3 - public const int Widget_MaterialComponents_Chip_Action = 2131755507; - - // aapt resource value: 0x7F1001F4 - public const int Widget_MaterialComponents_Chip_Choice = 2131755508; - - // aapt resource value: 0x7F1001F5 - public const int Widget_MaterialComponents_Chip_Entry = 2131755509; - - // aapt resource value: 0x7F1001F6 - public const int Widget_MaterialComponents_Chip_Filter = 2131755510; - - // aapt resource value: 0x7F1001F8 - public const int Widget_MaterialComponents_FloatingActionButton = 2131755512; - - // aapt resource value: 0x7F1001F9 - public const int Widget_MaterialComponents_NavigationView = 2131755513; - - // aapt resource value: 0x7F1001FA - public const int Widget_MaterialComponents_Snackbar = 2131755514; - - // aapt resource value: 0x7F1001FB - public const int Widget_MaterialComponents_Snackbar_FullWidth = 2131755515; - - // aapt resource value: 0x7F1001FC - public const int Widget_MaterialComponents_TabLayout = 2131755516; - - // aapt resource value: 0x7F1001FD - public const int Widget_MaterialComponents_TabLayout_Colored = 2131755517; - - // aapt resource value: 0x7F1001FE - public const int Widget_MaterialComponents_TextInputEditText_FilledBox = 2131755518; - - // aapt resource value: 0x7F1001FF - public const int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense = 2131755519; - - // aapt resource value: 0x7F100200 - public const int Widget_MaterialComponents_TextInputEditText_OutlinedBox = 2131755520; - - // aapt resource value: 0x7F100201 - public const int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense = 2131755521; - - // aapt resource value: 0x7F100202 - public const int Widget_MaterialComponents_TextInputLayout_FilledBox = 2131755522; - - // aapt resource value: 0x7F100203 - public const int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense = 2131755523; - - // aapt resource value: 0x7F100204 - public const int Widget_MaterialComponents_TextInputLayout_OutlinedBox = 2131755524; - - // aapt resource value: 0x7F100205 - public const int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense = 2131755525; - - // aapt resource value: 0x7F100206 - public const int Widget_MaterialComponents_Toolbar = 2131755526; - - // aapt resource value: 0x7F100207 - public const int Widget_MediaRouter_Light_MediaRouteButton = 2131755527; - - // aapt resource value: 0x7F100208 - public const int Widget_MediaRouter_MediaRouteButton = 2131755528; - - // aapt resource value: 0x7F100209 - public const int Widget_Support_CoordinatorLayout = 2131755529; - - static Style() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Style() - { - } - } - - public partial class Styleable - { - - // aapt resource value: { 0x7F040032,0x7F040033,0x7F040034,0x7F04009D,0x7F04009E,0x7F04009F,0x7F0400A0,0x7F0400A1,0x7F0400A2,0x7F0400B0,0x7F0400B5,0x7F0400B6,0x7F0400C9,0x7F0400F5,0x7F0400FA,0x7F0400FF,0x7F040100,0x7F040102,0x7F04010E,0x7F040118,0x7F040144,0x7F040161,0x7F040172,0x7F040176,0x7F040177,0x7F0401A7,0x7F0401AA,0x7F0401F0,0x7F0401FA } - public static int[] ActionBar = new int[] { - 2130968626, - 2130968627, - 2130968628, - 2130968733, - 2130968734, - 2130968735, - 2130968736, - 2130968737, - 2130968738, - 2130968752, - 2130968757, - 2130968758, - 2130968777, - 2130968821, - 2130968826, - 2130968831, - 2130968832, - 2130968834, - 2130968846, - 2130968856, - 2130968900, - 2130968929, - 2130968946, - 2130968950, - 2130968951, - 2130968999, - 2130969002, - 2130969072, - 2130969082}; - - // aapt resource value: { 0x10100B3 } - public static int[] ActionBarLayout = new int[] { - 16842931}; - - // aapt resource value: 0 - public const int ActionBarLayout_android_layout_gravity = 0; - - // aapt resource value: 0 - public const int ActionBar_background = 0; - - // aapt resource value: 1 - public const int ActionBar_backgroundSplit = 1; - - // aapt resource value: 2 - public const int ActionBar_backgroundStacked = 2; - - // aapt resource value: 3 - public const int ActionBar_contentInsetEnd = 3; - - // aapt resource value: 4 - public const int ActionBar_contentInsetEndWithActions = 4; - - // aapt resource value: 5 - public const int ActionBar_contentInsetLeft = 5; - - // aapt resource value: 6 - public const int ActionBar_contentInsetRight = 6; - - // aapt resource value: 7 - public const int ActionBar_contentInsetStart = 7; - - // aapt resource value: 8 - public const int ActionBar_contentInsetStartWithNavigation = 8; - - // aapt resource value: 9 - public const int ActionBar_customNavigationLayout = 9; - - // aapt resource value: 10 - public const int ActionBar_displayOptions = 10; - - // aapt resource value: 11 - public const int ActionBar_divider = 11; - - // aapt resource value: 12 - public const int ActionBar_elevation = 12; - - // aapt resource value: 13 - public const int ActionBar_height = 13; - - // aapt resource value: 14 - public const int ActionBar_hideOnContentScroll = 14; - - // aapt resource value: 15 - public const int ActionBar_homeAsUpIndicator = 15; - - // aapt resource value: 16 - public const int ActionBar_homeLayout = 16; - - // aapt resource value: 17 - public const int ActionBar_icon = 17; - - // aapt resource value: 18 - public const int ActionBar_indeterminateProgressStyle = 18; - - // aapt resource value: 19 - public const int ActionBar_itemPadding = 19; - - // aapt resource value: 20 - public const int ActionBar_logo = 20; - - // aapt resource value: 21 - public const int ActionBar_navigationMode = 21; - - // aapt resource value: 22 - public const int ActionBar_popupTheme = 22; - - // aapt resource value: 23 - public const int ActionBar_progressBarPadding = 23; - - // aapt resource value: 24 - public const int ActionBar_progressBarStyle = 24; - - // aapt resource value: 25 - public const int ActionBar_subtitle = 25; - - // aapt resource value: 26 - public const int ActionBar_subtitleTextStyle = 26; - - // aapt resource value: 27 - public const int ActionBar_title = 27; - - // aapt resource value: 28 - public const int ActionBar_titleTextStyle = 28; - - // aapt resource value: { 0x101013F } - public static int[] ActionMenuItemView = new int[] { - 16843071}; - - // aapt resource value: 0 - public const int ActionMenuItemView_android_minWidth = 0; - - // aapt resource value: { 0xFFFFFFFF } - public static int[] ActionMenuView = new int[] { - -1}; - - // aapt resource value: { 0x7F040032,0x7F040033,0x7F040089,0x7F0400F5,0x7F0401AA,0x7F0401FA } - public static int[] ActionMode = new int[] { - 2130968626, - 2130968627, - 2130968713, - 2130968821, - 2130969002, - 2130969082}; - - // aapt resource value: 0 - public const int ActionMode_background = 0; - - // aapt resource value: 1 - public const int ActionMode_backgroundSplit = 1; - - // aapt resource value: 2 - public const int ActionMode_closeItemLayout = 2; - - // aapt resource value: 3 - public const int ActionMode_height = 3; - - // aapt resource value: 4 - public const int ActionMode_subtitleTextStyle = 4; - - // aapt resource value: 5 - public const int ActionMode_titleTextStyle = 5; - - // aapt resource value: { 0x7F0400CE,0x7F04010F } - public static int[] ActivityChooserView = new int[] { - 2130968782, - 2130968847}; - - // aapt resource value: 0 - public const int ActivityChooserView_expandActivityOverflowButtonDrawable = 0; - - // aapt resource value: 1 - public const int ActivityChooserView_initialActivityCount = 1; - - // aapt resource value: { 0x10100F2,0x7F040054,0x7F040055,0x7F040138,0x7F040139,0x7F04015E,0x7F04018F,0x7F040190 } - public static int[] AlertDialog = new int[] { - 16842994, - 2130968660, - 2130968661, - 2130968888, - 2130968889, - 2130968926, - 2130968975, - 2130968976}; - - // aapt resource value: 0 - public const int AlertDialog_android_layout = 0; - - // aapt resource value: 1 - public const int AlertDialog_buttonIconDimen = 1; - - // aapt resource value: 2 - public const int AlertDialog_buttonPanelSideLayout = 2; - - // aapt resource value: 3 - public const int AlertDialog_listItemLayout = 3; - - // aapt resource value: 4 - public const int AlertDialog_listLayout = 4; - - // aapt resource value: 5 - public const int AlertDialog_multiChoiceItemLayout = 5; - - // aapt resource value: 6 - public const int AlertDialog_showTitle = 6; - - // aapt resource value: 7 - public const int AlertDialog_singleChoiceItemLayout = 7; - - // aapt resource value: { 0x101011C,0x1010194,0x1010195,0x1010196,0x101030C,0x101030D } - public static int[] AnimatedStateListDrawableCompat = new int[] { - 16843036, - 16843156, - 16843157, - 16843158, - 16843532, - 16843533}; - - // aapt resource value: 3 - public const int AnimatedStateListDrawableCompat_android_constantSize = 3; - - // aapt resource value: 0 - public const int AnimatedStateListDrawableCompat_android_dither = 0; - - // aapt resource value: 4 - public const int AnimatedStateListDrawableCompat_android_enterFadeDuration = 4; - - // aapt resource value: 5 - public const int AnimatedStateListDrawableCompat_android_exitFadeDuration = 5; - - // aapt resource value: 2 - public const int AnimatedStateListDrawableCompat_android_variablePadding = 2; - - // aapt resource value: 1 - public const int AnimatedStateListDrawableCompat_android_visible = 1; - - // aapt resource value: { 0x10100D0,0x1010199 } - public static int[] AnimatedStateListDrawableItem = new int[] { - 16842960, - 16843161}; - - // aapt resource value: 1 - public const int AnimatedStateListDrawableItem_android_drawable = 1; - - // aapt resource value: 0 - public const int AnimatedStateListDrawableItem_android_id = 0; - - // aapt resource value: { 0x1010199,0x1010449,0x101044A,0x101044B } - public static int[] AnimatedStateListDrawableTransition = new int[] { - 16843161, - 16843849, - 16843850, - 16843851}; - - // aapt resource value: 0 - public const int AnimatedStateListDrawableTransition_android_drawable = 0; - - // aapt resource value: 2 - public const int AnimatedStateListDrawableTransition_android_fromId = 2; - - // aapt resource value: 3 - public const int AnimatedStateListDrawableTransition_android_reversible = 3; - - // aapt resource value: 1 - public const int AnimatedStateListDrawableTransition_android_toId = 1; - - // aapt resource value: { 0x10100D4,0x101048F,0x1010540,0x7F0400C9,0x7F0400CF,0x7F040131 } - public static int[] AppBarLayout = new int[] { - 16842964, - 16843919, - 16844096, - 2130968777, - 2130968783, - 2130968881}; - - // aapt resource value: { 0x7F04019D,0x7F04019E,0x7F04019F,0x7F0401A0 } - public static int[] AppBarLayoutStates = new int[] { - 2130968989, - 2130968990, - 2130968991, - 2130968992}; - - // aapt resource value: 0 - public const int AppBarLayoutStates_state_collapsed = 0; - - // aapt resource value: 1 - public const int AppBarLayoutStates_state_collapsible = 1; - - // aapt resource value: 2 - public const int AppBarLayoutStates_state_liftable = 2; - - // aapt resource value: 3 - public const int AppBarLayoutStates_state_lifted = 3; - - // aapt resource value: 0 - public const int AppBarLayout_android_background = 0; - - // aapt resource value: 2 - public const int AppBarLayout_android_keyboardNavigationCluster = 2; - - // aapt resource value: 1 - public const int AppBarLayout_android_touchscreenBlocksFocus = 1; - - // aapt resource value: 3 - public const int AppBarLayout_elevation = 3; - - // aapt resource value: 4 - public const int AppBarLayout_expanded = 4; - - // aapt resource value: { 0x7F04012F,0x7F040130 } - public static int[] AppBarLayout_Layout = new int[] { - 2130968879, - 2130968880}; - - // aapt resource value: 0 - public const int AppBarLayout_Layout_layout_scrollFlags = 0; - - // aapt resource value: 1 - public const int AppBarLayout_Layout_layout_scrollInterpolator = 1; - - // aapt resource value: 5 - public const int AppBarLayout_liftOnScroll = 5; - - // aapt resource value: { 0x1010119,0x7F04019A,0x7F0401EE,0x7F0401EF } - public static int[] AppCompatImageView = new int[] { - 16843033, - 2130968986, - 2130969070, - 2130969071}; - - // aapt resource value: 0 - public const int AppCompatImageView_android_src = 0; - - // aapt resource value: 1 - public const int AppCompatImageView_srcCompat = 1; - - // aapt resource value: 2 - public const int AppCompatImageView_tint = 2; - - // aapt resource value: 3 - public const int AppCompatImageView_tintMode = 3; - - // aapt resource value: { 0x1010142,0x7F0401EB,0x7F0401EC,0x7F0401ED } - public static int[] AppCompatSeekBar = new int[] { - 16843074, - 2130969067, - 2130969068, - 2130969069}; - - // aapt resource value: 0 - public const int AppCompatSeekBar_android_thumb = 0; - - // aapt resource value: 1 - public const int AppCompatSeekBar_tickMark = 1; - - // aapt resource value: 2 - public const int AppCompatSeekBar_tickMarkTint = 2; - - // aapt resource value: 3 - public const int AppCompatSeekBar_tickMarkTintMode = 3; - - // aapt resource value: { 0x1010034,0x101016D,0x101016E,0x101016F,0x1010170,0x1010392,0x1010393 } - public static int[] AppCompatTextHelper = new int[] { - 16842804, - 16843117, - 16843118, - 16843119, - 16843120, - 16843666, - 16843667}; - - // aapt resource value: 2 - public const int AppCompatTextHelper_android_drawableBottom = 2; - - // aapt resource value: 6 - public const int AppCompatTextHelper_android_drawableEnd = 6; - - // aapt resource value: 3 - public const int AppCompatTextHelper_android_drawableLeft = 3; - - // aapt resource value: 4 - public const int AppCompatTextHelper_android_drawableRight = 4; - - // aapt resource value: 5 - public const int AppCompatTextHelper_android_drawableStart = 5; - - // aapt resource value: 1 - public const int AppCompatTextHelper_android_drawableTop = 1; - - // aapt resource value: 0 - public const int AppCompatTextHelper_android_textAppearance = 0; - - // aapt resource value: { 0x1010034,0x7F04002D,0x7F04002E,0x7F04002F,0x7F040030,0x7F040031,0x7F0400BA,0x7F0400BB,0x7F0400BC,0x7F0400BD,0x7F0400BF,0x7F0400C0,0x7F0400C1,0x7F0400C2,0x7F0400E4,0x7F0400E7,0x7F0400EF,0x7F040120,0x7F040132,0x7F0401CA,0x7F0401E4 } - public static int[] AppCompatTextView = new int[] { - 16842804, - 2130968621, - 2130968622, - 2130968623, - 2130968624, - 2130968625, - 2130968762, - 2130968763, - 2130968764, - 2130968765, - 2130968767, - 2130968768, - 2130968769, - 2130968770, - 2130968804, - 2130968807, - 2130968815, - 2130968864, - 2130968882, - 2130969034, - 2130969060}; - - // aapt resource value: 0 - public const int AppCompatTextView_android_textAppearance = 0; - - // aapt resource value: 1 - public const int AppCompatTextView_autoSizeMaxTextSize = 1; - - // aapt resource value: 2 - public const int AppCompatTextView_autoSizeMinTextSize = 2; - - // aapt resource value: 3 - public const int AppCompatTextView_autoSizePresetSizes = 3; - - // aapt resource value: 4 - public const int AppCompatTextView_autoSizeStepGranularity = 4; - - // aapt resource value: 5 - public const int AppCompatTextView_autoSizeTextType = 5; - - // aapt resource value: 6 - public const int AppCompatTextView_drawableBottomCompat = 6; - - // aapt resource value: 7 - public const int AppCompatTextView_drawableEndCompat = 7; - - // aapt resource value: 8 - public const int AppCompatTextView_drawableLeftCompat = 8; - - // aapt resource value: 9 - public const int AppCompatTextView_drawableRightCompat = 9; - - // aapt resource value: 10 - public const int AppCompatTextView_drawableStartCompat = 10; - - // aapt resource value: 11 - public const int AppCompatTextView_drawableTint = 11; - - // aapt resource value: 12 - public const int AppCompatTextView_drawableTintMode = 12; - - // aapt resource value: 13 - public const int AppCompatTextView_drawableTopCompat = 13; - - // aapt resource value: 14 - public const int AppCompatTextView_firstBaselineToTopHeight = 14; - - // aapt resource value: 15 - public const int AppCompatTextView_fontFamily = 15; - - // aapt resource value: 16 - public const int AppCompatTextView_fontVariationSettings = 16; - - // aapt resource value: 17 - public const int AppCompatTextView_lastBaselineToBottomHeight = 17; - - // aapt resource value: 18 - public const int AppCompatTextView_lineHeight = 18; - - // aapt resource value: 19 - public const int AppCompatTextView_textAllCaps = 19; - - // aapt resource value: 20 - public const int AppCompatTextView_textLocale = 20; - - // aapt resource value: { 0x1010057,0x10100AE,0x7F040000,0x7F040001,0x7F040002,0x7F040003,0x7F040004,0x7F040005,0x7F040006,0x7F040007,0x7F040008,0x7F040009,0x7F04000A,0x7F04000B,0x7F04000C,0x7F04000E,0x7F04000F,0x7F040010,0x7F040011,0x7F040012,0x7F040013,0x7F040014,0x7F040015,0x7F040016,0x7F040017,0x7F040018,0x7F040019,0x7F04001A,0x7F04001B,0x7F04001C,0x7F04001D,0x7F04001E,0x7F040021,0x7F040022,0x7F040023,0x7F040024,0x7F040025,0x7F04002C,0x7F04003F,0x7F04004D,0x7F04004E,0x7F04004F,0x7F040050,0x7F040051,0x7F040057,0x7F040058,0x7F040069,0x7F04006E,0x7F04008F,0x7F040090,0x7F040091,0x7F040092,0x7F040093,0x7F040094,0x7F040095,0x7F040096,0x7F040097,0x7F04009A,0x7F0400A9,0x7F0400B2,0x7F0400B3,0x7F0400B4,0x7F0400B7,0x7F0400B9,0x7F0400C4,0x7F0400C5,0x7F0400C6,0x7F0400C7,0x7F0400C8,0x7F0400FF,0x7F04010D,0x7F040134,0x7F040135,0x7F040136,0x7F040137,0x7F04013A,0x7F04013B,0x7F04013C,0x7F04013D,0x7F04013E,0x7F04013F,0x7F040140,0x7F040141,0x7F040142,0x7F040169,0x7F04016A,0x7F04016B,0x7F040171,0x7F040173,0x7F04017A,0x7F04017B,0x7F04017C,0x7F04017D,0x7F040187,0x7F040188,0x7F040189,0x7F04018A,0x7F040197,0x7F040198,0x7F0401AE,0x7F0401D5,0x7F0401D6,0x7F0401D7,0x7F0401D8,0x7F0401DA,0x7F0401DB,0x7F0401DC,0x7F0401DD,0x7F0401E0,0x7F0401E1,0x7F0401FC,0x7F0401FD,0x7F0401FE,0x7F0401FF,0x7F04020F,0x7F040211,0x7F040212,0x7F040213,0x7F040214,0x7F040215,0x7F040216,0x7F040217,0x7F040218,0x7F040219,0x7F04021A } - public static int[] AppCompatTheme = new int[] { - 16842839, - 16842926, - 2130968576, - 2130968577, - 2130968578, - 2130968579, - 2130968580, - 2130968581, - 2130968582, - 2130968583, - 2130968584, - 2130968585, - 2130968586, - 2130968587, - 2130968588, - 2130968590, - 2130968591, - 2130968592, - 2130968593, - 2130968594, - 2130968595, - 2130968596, - 2130968597, - 2130968598, - 2130968599, - 2130968600, - 2130968601, - 2130968602, - 2130968603, - 2130968604, - 2130968605, - 2130968606, - 2130968609, - 2130968610, - 2130968611, - 2130968612, - 2130968613, - 2130968620, - 2130968639, - 2130968653, - 2130968654, - 2130968655, - 2130968656, - 2130968657, - 2130968663, - 2130968664, - 2130968681, - 2130968686, - 2130968719, - 2130968720, - 2130968721, - 2130968722, - 2130968723, - 2130968724, - 2130968725, - 2130968726, - 2130968727, - 2130968730, - 2130968745, - 2130968754, - 2130968755, - 2130968756, - 2130968759, - 2130968761, - 2130968772, - 2130968773, - 2130968774, - 2130968775, - 2130968776, - 2130968831, - 2130968845, - 2130968884, - 2130968885, - 2130968886, - 2130968887, - 2130968890, - 2130968891, - 2130968892, - 2130968893, - 2130968894, - 2130968895, - 2130968896, - 2130968897, - 2130968898, - 2130968937, - 2130968938, - 2130968939, - 2130968945, - 2130968947, - 2130968954, - 2130968955, - 2130968956, - 2130968957, - 2130968967, - 2130968968, - 2130968969, - 2130968970, - 2130968983, - 2130968984, - 2130969006, - 2130969045, - 2130969046, - 2130969047, - 2130969048, - 2130969050, - 2130969051, - 2130969052, - 2130969053, - 2130969056, - 2130969057, - 2130969084, - 2130969085, - 2130969086, - 2130969087, - 2130969103, - 2130969105, - 2130969106, - 2130969107, - 2130969108, - 2130969109, - 2130969110, - 2130969111, - 2130969112, - 2130969113, - 2130969114}; - - // aapt resource value: 2 - public const int AppCompatTheme_actionBarDivider = 2; - - // aapt resource value: 3 - public const int AppCompatTheme_actionBarItemBackground = 3; - - // aapt resource value: 4 - public const int AppCompatTheme_actionBarPopupTheme = 4; - - // aapt resource value: 5 - public const int AppCompatTheme_actionBarSize = 5; - - // aapt resource value: 6 - public const int AppCompatTheme_actionBarSplitStyle = 6; - - // aapt resource value: 7 - public const int AppCompatTheme_actionBarStyle = 7; - - // aapt resource value: 8 - public const int AppCompatTheme_actionBarTabBarStyle = 8; - - // aapt resource value: 9 - public const int AppCompatTheme_actionBarTabStyle = 9; - - // aapt resource value: 10 - public const int AppCompatTheme_actionBarTabTextStyle = 10; - - // aapt resource value: 11 - public const int AppCompatTheme_actionBarTheme = 11; - - // aapt resource value: 12 - public const int AppCompatTheme_actionBarWidgetTheme = 12; - - // aapt resource value: 13 - public const int AppCompatTheme_actionButtonStyle = 13; - - // aapt resource value: 14 - public const int AppCompatTheme_actionDropDownStyle = 14; - - // aapt resource value: 15 - public const int AppCompatTheme_actionMenuTextAppearance = 15; - - // aapt resource value: 16 - public const int AppCompatTheme_actionMenuTextColor = 16; - - // aapt resource value: 17 - public const int AppCompatTheme_actionModeBackground = 17; - - // aapt resource value: 18 - public const int AppCompatTheme_actionModeCloseButtonStyle = 18; - - // aapt resource value: 19 - public const int AppCompatTheme_actionModeCloseDrawable = 19; - - // aapt resource value: 20 - public const int AppCompatTheme_actionModeCopyDrawable = 20; - - // aapt resource value: 21 - public const int AppCompatTheme_actionModeCutDrawable = 21; - - // aapt resource value: 22 - public const int AppCompatTheme_actionModeFindDrawable = 22; - - // aapt resource value: 23 - public const int AppCompatTheme_actionModePasteDrawable = 23; - - // aapt resource value: 24 - public const int AppCompatTheme_actionModePopupWindowStyle = 24; - - // aapt resource value: 25 - public const int AppCompatTheme_actionModeSelectAllDrawable = 25; - - // aapt resource value: 26 - public const int AppCompatTheme_actionModeShareDrawable = 26; - - // aapt resource value: 27 - public const int AppCompatTheme_actionModeSplitBackground = 27; - - // aapt resource value: 28 - public const int AppCompatTheme_actionModeStyle = 28; - - // aapt resource value: 29 - public const int AppCompatTheme_actionModeWebSearchDrawable = 29; - - // aapt resource value: 30 - public const int AppCompatTheme_actionOverflowButtonStyle = 30; - - // aapt resource value: 31 - public const int AppCompatTheme_actionOverflowMenuStyle = 31; - - // aapt resource value: 32 - public const int AppCompatTheme_activityChooserViewStyle = 32; - - // aapt resource value: 33 - public const int AppCompatTheme_alertDialogButtonGroupStyle = 33; - - // aapt resource value: 34 - public const int AppCompatTheme_alertDialogCenterButtons = 34; - - // aapt resource value: 35 - public const int AppCompatTheme_alertDialogStyle = 35; - - // aapt resource value: 36 - public const int AppCompatTheme_alertDialogTheme = 36; - - // aapt resource value: 1 - public const int AppCompatTheme_android_windowAnimationStyle = 1; - - // aapt resource value: 0 - public const int AppCompatTheme_android_windowIsFloating = 0; - - // aapt resource value: 37 - public const int AppCompatTheme_autoCompleteTextViewStyle = 37; - - // aapt resource value: 38 - public const int AppCompatTheme_borderlessButtonStyle = 38; - - // aapt resource value: 39 - public const int AppCompatTheme_buttonBarButtonStyle = 39; - - // aapt resource value: 40 - public const int AppCompatTheme_buttonBarNegativeButtonStyle = 40; - - // aapt resource value: 41 - public const int AppCompatTheme_buttonBarNeutralButtonStyle = 41; - - // aapt resource value: 42 - public const int AppCompatTheme_buttonBarPositiveButtonStyle = 42; - - // aapt resource value: 43 - public const int AppCompatTheme_buttonBarStyle = 43; - - // aapt resource value: 44 - public const int AppCompatTheme_buttonStyle = 44; - - // aapt resource value: 45 - public const int AppCompatTheme_buttonStyleSmall = 45; - - // aapt resource value: 46 - public const int AppCompatTheme_checkboxStyle = 46; - - // aapt resource value: 47 - public const int AppCompatTheme_checkedTextViewStyle = 47; - - // aapt resource value: 48 - public const int AppCompatTheme_colorAccent = 48; - - // aapt resource value: 49 - public const int AppCompatTheme_colorBackgroundFloating = 49; - - // aapt resource value: 50 - public const int AppCompatTheme_colorButtonNormal = 50; - - // aapt resource value: 51 - public const int AppCompatTheme_colorControlActivated = 51; - - // aapt resource value: 52 - public const int AppCompatTheme_colorControlHighlight = 52; - - // aapt resource value: 53 - public const int AppCompatTheme_colorControlNormal = 53; - - // aapt resource value: 54 - public const int AppCompatTheme_colorError = 54; - - // aapt resource value: 55 - public const int AppCompatTheme_colorPrimary = 55; - - // aapt resource value: 56 - public const int AppCompatTheme_colorPrimaryDark = 56; - - // aapt resource value: 57 - public const int AppCompatTheme_colorSwitchThumbNormal = 57; - - // aapt resource value: 58 - public const int AppCompatTheme_controlBackground = 58; - - // aapt resource value: 59 - public const int AppCompatTheme_dialogCornerRadius = 59; - - // aapt resource value: 60 - public const int AppCompatTheme_dialogPreferredPadding = 60; - - // aapt resource value: 61 - public const int AppCompatTheme_dialogTheme = 61; - - // aapt resource value: 62 - public const int AppCompatTheme_dividerHorizontal = 62; - - // aapt resource value: 63 - public const int AppCompatTheme_dividerVertical = 63; - - // aapt resource value: 65 - public const int AppCompatTheme_dropdownListPreferredItemHeight = 65; - - // aapt resource value: 64 - public const int AppCompatTheme_dropDownListViewStyle = 64; - - // aapt resource value: 66 - public const int AppCompatTheme_editTextBackground = 66; - - // aapt resource value: 67 - public const int AppCompatTheme_editTextColor = 67; - - // aapt resource value: 68 - public const int AppCompatTheme_editTextStyle = 68; - - // aapt resource value: 69 - public const int AppCompatTheme_homeAsUpIndicator = 69; - - // aapt resource value: 70 - public const int AppCompatTheme_imageButtonStyle = 70; - - // aapt resource value: 71 - public const int AppCompatTheme_listChoiceBackgroundIndicator = 71; - - // aapt resource value: 72 - public const int AppCompatTheme_listChoiceIndicatorMultipleAnimated = 72; - - // aapt resource value: 73 - public const int AppCompatTheme_listChoiceIndicatorSingleAnimated = 73; - - // aapt resource value: 74 - public const int AppCompatTheme_listDividerAlertDialog = 74; - - // aapt resource value: 75 - public const int AppCompatTheme_listMenuViewStyle = 75; - - // aapt resource value: 76 - public const int AppCompatTheme_listPopupWindowStyle = 76; - - // aapt resource value: 77 - public const int AppCompatTheme_listPreferredItemHeight = 77; - - // aapt resource value: 78 - public const int AppCompatTheme_listPreferredItemHeightLarge = 78; - - // aapt resource value: 79 - public const int AppCompatTheme_listPreferredItemHeightSmall = 79; - - // aapt resource value: 80 - public const int AppCompatTheme_listPreferredItemPaddingEnd = 80; - - // aapt resource value: 81 - public const int AppCompatTheme_listPreferredItemPaddingLeft = 81; - - // aapt resource value: 82 - public const int AppCompatTheme_listPreferredItemPaddingRight = 82; - - // aapt resource value: 83 - public const int AppCompatTheme_listPreferredItemPaddingStart = 83; - - // aapt resource value: 84 - public const int AppCompatTheme_panelBackground = 84; - - // aapt resource value: 85 - public const int AppCompatTheme_panelMenuListTheme = 85; - - // aapt resource value: 86 - public const int AppCompatTheme_panelMenuListWidth = 86; - - // aapt resource value: 87 - public const int AppCompatTheme_popupMenuStyle = 87; - - // aapt resource value: 88 - public const int AppCompatTheme_popupWindowStyle = 88; - - // aapt resource value: 89 - public const int AppCompatTheme_radioButtonStyle = 89; - - // aapt resource value: 90 - public const int AppCompatTheme_ratingBarStyle = 90; - - // aapt resource value: 91 - public const int AppCompatTheme_ratingBarStyleIndicator = 91; - - // aapt resource value: 92 - public const int AppCompatTheme_ratingBarStyleSmall = 92; - - // aapt resource value: 93 - public const int AppCompatTheme_searchViewStyle = 93; - - // aapt resource value: 94 - public const int AppCompatTheme_seekBarStyle = 94; - - // aapt resource value: 95 - public const int AppCompatTheme_selectableItemBackground = 95; - - // aapt resource value: 96 - public const int AppCompatTheme_selectableItemBackgroundBorderless = 96; - - // aapt resource value: 97 - public const int AppCompatTheme_spinnerDropDownItemStyle = 97; - - // aapt resource value: 98 - public const int AppCompatTheme_spinnerStyle = 98; - - // aapt resource value: 99 - public const int AppCompatTheme_switchStyle = 99; - - // aapt resource value: 100 - public const int AppCompatTheme_textAppearanceLargePopupMenu = 100; - - // aapt resource value: 101 - public const int AppCompatTheme_textAppearanceListItem = 101; - - // aapt resource value: 102 - public const int AppCompatTheme_textAppearanceListItemSecondary = 102; - - // aapt resource value: 103 - public const int AppCompatTheme_textAppearanceListItemSmall = 103; - - // aapt resource value: 104 - public const int AppCompatTheme_textAppearancePopupMenuHeader = 104; - - // aapt resource value: 105 - public const int AppCompatTheme_textAppearanceSearchResultSubtitle = 105; - - // aapt resource value: 106 - public const int AppCompatTheme_textAppearanceSearchResultTitle = 106; - - // aapt resource value: 107 - public const int AppCompatTheme_textAppearanceSmallPopupMenu = 107; - - // aapt resource value: 108 - public const int AppCompatTheme_textColorAlertDialogListItem = 108; - - // aapt resource value: 109 - public const int AppCompatTheme_textColorSearchUrl = 109; - - // aapt resource value: 110 - public const int AppCompatTheme_toolbarNavigationButtonStyle = 110; - - // aapt resource value: 111 - public const int AppCompatTheme_toolbarStyle = 111; - - // aapt resource value: 112 - public const int AppCompatTheme_tooltipForegroundColor = 112; - - // aapt resource value: 113 - public const int AppCompatTheme_tooltipFrameBackground = 113; - - // aapt resource value: 114 - public const int AppCompatTheme_viewInflaterClass = 114; - - // aapt resource value: 115 - public const int AppCompatTheme_windowActionBar = 115; - - // aapt resource value: 116 - public const int AppCompatTheme_windowActionBarOverlay = 116; - - // aapt resource value: 117 - public const int AppCompatTheme_windowActionModeOverlay = 117; - - // aapt resource value: 118 - public const int AppCompatTheme_windowFixedHeightMajor = 118; - - // aapt resource value: 119 - public const int AppCompatTheme_windowFixedHeightMinor = 119; - - // aapt resource value: 120 - public const int AppCompatTheme_windowFixedWidthMajor = 120; - - // aapt resource value: 121 - public const int AppCompatTheme_windowFixedWidthMinor = 121; - - // aapt resource value: 122 - public const int AppCompatTheme_windowMinWidthMajor = 122; - - // aapt resource value: 123 - public const int AppCompatTheme_windowMinWidthMinor = 123; - - // aapt resource value: 124 - public const int AppCompatTheme_windowNoTitle = 124; - - // aapt resource value: { 0x7F040035,0x7F0400D9,0x7F0400DA,0x7F0400DB,0x7F0400DC,0x7F0400FB } - public static int[] BottomAppBar = new int[] { - 2130968629, - 2130968793, - 2130968794, - 2130968795, - 2130968796, - 2130968827}; - - // aapt resource value: 0 - public const int BottomAppBar_backgroundTint = 0; - - // aapt resource value: 1 - public const int BottomAppBar_fabAlignmentMode = 1; - - // aapt resource value: 2 - public const int BottomAppBar_fabCradleMargin = 2; - - // aapt resource value: 3 - public const int BottomAppBar_fabCradleRoundedCornerRadius = 3; - - // aapt resource value: 4 - public const int BottomAppBar_fabCradleVerticalOffset = 4; - - // aapt resource value: 5 - public const int BottomAppBar_hideOnScroll = 5; - - // aapt resource value: { 0x7F0400C9,0x7F040112,0x7F040114,0x7F040116,0x7F040117,0x7F04011B,0x7F04011C,0x7F04011D,0x7F04011F,0x7F04015D } - public static int[] BottomNavigationView = new int[] { - 2130968777, - 2130968850, - 2130968852, - 2130968854, - 2130968855, - 2130968859, - 2130968860, - 2130968861, - 2130968863, - 2130968925}; - - // aapt resource value: 0 - public const int BottomNavigationView_elevation = 0; - - // aapt resource value: 1 - public const int BottomNavigationView_itemBackground = 1; - - // aapt resource value: 2 - public const int BottomNavigationView_itemHorizontalTranslationEnabled = 2; - - // aapt resource value: 3 - public const int BottomNavigationView_itemIconSize = 3; - - // aapt resource value: 4 - public const int BottomNavigationView_itemIconTint = 4; - - // aapt resource value: 5 - public const int BottomNavigationView_itemTextAppearanceActive = 5; - - // aapt resource value: 6 - public const int BottomNavigationView_itemTextAppearanceInactive = 6; - - // aapt resource value: 7 - public const int BottomNavigationView_itemTextColor = 7; - - // aapt resource value: 8 - public const int BottomNavigationView_labelVisibilityMode = 8; - - // aapt resource value: 9 - public const int BottomNavigationView_menu = 9; - - // aapt resource value: { 0x7F040039,0x7F04003A,0x7F04003C,0x7F04003D } - public static int[] BottomSheetBehavior_Layout = new int[] { - 2130968633, - 2130968634, - 2130968636, - 2130968637}; - - // aapt resource value: 0 - public const int BottomSheetBehavior_Layout_behavior_fitToContents = 0; - - // aapt resource value: 1 - public const int BottomSheetBehavior_Layout_behavior_hideable = 1; - - // aapt resource value: 2 - public const int BottomSheetBehavior_Layout_behavior_peekHeight = 2; - - // aapt resource value: 3 - public const int BottomSheetBehavior_Layout_behavior_skipCollapsed = 3; - - // aapt resource value: { 0x7F040026 } - public static int[] ButtonBarLayout = new int[] { - 2130968614}; - - // aapt resource value: 0 - public const int ButtonBarLayout_allowStacking = 0; - - // aapt resource value: { 0x101013F,0x1010140,0x7F040062,0x7F040063,0x7F040064,0x7F040065,0x7F040066,0x7F040067,0x7F0400A3,0x7F0400A4,0x7F0400A5,0x7F0400A6,0x7F0400A7 } - public static int[] CardView = new int[] { - 16843071, - 16843072, - 2130968674, - 2130968675, - 2130968676, - 2130968677, - 2130968678, - 2130968679, - 2130968739, - 2130968740, - 2130968741, - 2130968742, - 2130968743}; - - // aapt resource value: 1 - public const int CardView_android_minHeight = 1; - - // aapt resource value: 0 - public const int CardView_android_minWidth = 0; - - // aapt resource value: 2 - public const int CardView_cardBackgroundColor = 2; - - // aapt resource value: 3 - public const int CardView_cardCornerRadius = 3; - - // aapt resource value: 4 - public const int CardView_cardElevation = 4; - - // aapt resource value: 5 - public const int CardView_cardMaxElevation = 5; - - // aapt resource value: 6 - public const int CardView_cardPreventCornerOverlap = 6; - - // aapt resource value: 7 - public const int CardView_cardUseCompatPadding = 7; - - // aapt resource value: 8 - public const int CardView_contentPadding = 8; - - // aapt resource value: 9 - public const int CardView_contentPaddingBottom = 9; - - // aapt resource value: 10 - public const int CardView_contentPaddingLeft = 10; - - // aapt resource value: 11 - public const int CardView_contentPaddingRight = 11; - - // aapt resource value: 12 - public const int CardView_contentPaddingTop = 12; - - // aapt resource value: { 0x1010034,0x10100AB,0x101011F,0x101014F,0x10101E5,0x7F04006B,0x7F04006C,0x7F04006D,0x7F04006F,0x7F040070,0x7F040071,0x7F040073,0x7F040074,0x7F040075,0x7F040076,0x7F040077,0x7F040078,0x7F04007D,0x7F04007E,0x7F04007F,0x7F040082,0x7F040083,0x7F040084,0x7F040085,0x7F040086,0x7F040087,0x7F040088,0x7F0400F9,0x7F040103,0x7F040107,0x7F040180,0x7F04018D,0x7F0401E2,0x7F0401E5 } - public static int[] Chip = new int[] { - 16842804, - 16842923, - 16843039, - 16843087, - 16843237, - 2130968683, - 2130968684, - 2130968685, - 2130968687, - 2130968688, - 2130968689, - 2130968691, - 2130968692, - 2130968693, - 2130968694, - 2130968695, - 2130968696, - 2130968701, - 2130968702, - 2130968703, - 2130968706, - 2130968707, - 2130968708, - 2130968709, - 2130968710, - 2130968711, - 2130968712, - 2130968825, - 2130968835, - 2130968839, - 2130968960, - 2130968973, - 2130969058, - 2130969061}; - - // aapt resource value: { 0x7F04006A,0x7F040079,0x7F04007A,0x7F04007B,0x7F040191,0x7F040192 } - public static int[] ChipGroup = new int[] { - 2130968682, - 2130968697, - 2130968698, - 2130968699, - 2130968977, - 2130968978}; - - // aapt resource value: 0 - public const int ChipGroup_checkedChip = 0; - - // aapt resource value: 1 - public const int ChipGroup_chipSpacing = 1; - - // aapt resource value: 2 - public const int ChipGroup_chipSpacingHorizontal = 2; - - // aapt resource value: 3 - public const int ChipGroup_chipSpacingVertical = 3; - - // aapt resource value: 4 - public const int ChipGroup_singleLine = 4; - - // aapt resource value: 5 - public const int ChipGroup_singleSelection = 5; - - // aapt resource value: 4 - public const int Chip_android_checkable = 4; - - // aapt resource value: 1 - public const int Chip_android_ellipsize = 1; - - // aapt resource value: 2 - public const int Chip_android_maxWidth = 2; - - // aapt resource value: 3 - public const int Chip_android_text = 3; - - // aapt resource value: 0 - public const int Chip_android_textAppearance = 0; - - // aapt resource value: 5 - public const int Chip_checkedIcon = 5; - - // aapt resource value: 6 - public const int Chip_checkedIconEnabled = 6; - - // aapt resource value: 7 - public const int Chip_checkedIconVisible = 7; - - // aapt resource value: 8 - public const int Chip_chipBackgroundColor = 8; - - // aapt resource value: 9 - public const int Chip_chipCornerRadius = 9; - - // aapt resource value: 10 - public const int Chip_chipEndPadding = 10; - - // aapt resource value: 11 - public const int Chip_chipIcon = 11; - - // aapt resource value: 12 - public const int Chip_chipIconEnabled = 12; - - // aapt resource value: 13 - public const int Chip_chipIconSize = 13; - - // aapt resource value: 14 - public const int Chip_chipIconTint = 14; - - // aapt resource value: 15 - public const int Chip_chipIconVisible = 15; - - // aapt resource value: 16 - public const int Chip_chipMinHeight = 16; - - // aapt resource value: 17 - public const int Chip_chipStartPadding = 17; - - // aapt resource value: 18 - public const int Chip_chipStrokeColor = 18; - - // aapt resource value: 19 - public const int Chip_chipStrokeWidth = 19; - - // aapt resource value: 20 - public const int Chip_closeIcon = 20; - - // aapt resource value: 21 - public const int Chip_closeIconEnabled = 21; - - // aapt resource value: 22 - public const int Chip_closeIconEndPadding = 22; - - // aapt resource value: 23 - public const int Chip_closeIconSize = 23; - - // aapt resource value: 24 - public const int Chip_closeIconStartPadding = 24; - - // aapt resource value: 25 - public const int Chip_closeIconTint = 25; - - // aapt resource value: 26 - public const int Chip_closeIconVisible = 26; - - // aapt resource value: 27 - public const int Chip_hideMotionSpec = 27; - - // aapt resource value: 28 - public const int Chip_iconEndPadding = 28; - - // aapt resource value: 29 - public const int Chip_iconStartPadding = 29; - - // aapt resource value: 30 - public const int Chip_rippleColor = 30; - - // aapt resource value: 31 - public const int Chip_showMotionSpec = 31; - - // aapt resource value: 32 - public const int Chip_textEndPadding = 32; - - // aapt resource value: 33 - public const int Chip_textStartPadding = 33; - - // aapt resource value: { 0x7F04008C,0x7F04008D,0x7F0400A8,0x7F0400D0,0x7F0400D1,0x7F0400D2,0x7F0400D3,0x7F0400D4,0x7F0400D5,0x7F0400D6,0x7F040182,0x7F040184,0x7F0401A2,0x7F0401F0,0x7F0401F1,0x7F0401FB } - public static int[] CollapsingToolbarLayout = new int[] { - 2130968716, - 2130968717, - 2130968744, - 2130968784, - 2130968785, - 2130968786, - 2130968787, - 2130968788, - 2130968789, - 2130968790, - 2130968962, - 2130968964, - 2130968994, - 2130969072, - 2130969073, - 2130969083}; - - // aapt resource value: 0 - public const int CollapsingToolbarLayout_collapsedTitleGravity = 0; - - // aapt resource value: 1 - public const int CollapsingToolbarLayout_collapsedTitleTextAppearance = 1; - - // aapt resource value: 2 - public const int CollapsingToolbarLayout_contentScrim = 2; - - // aapt resource value: 3 - public const int CollapsingToolbarLayout_expandedTitleGravity = 3; - - // aapt resource value: 4 - public const int CollapsingToolbarLayout_expandedTitleMargin = 4; - - // aapt resource value: 5 - public const int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; - - // aapt resource value: 6 - public const int CollapsingToolbarLayout_expandedTitleMarginEnd = 6; - - // aapt resource value: 7 - public const int CollapsingToolbarLayout_expandedTitleMarginStart = 7; - - // aapt resource value: 8 - public const int CollapsingToolbarLayout_expandedTitleMarginTop = 8; - - // aapt resource value: 9 - public const int CollapsingToolbarLayout_expandedTitleTextAppearance = 9; - - // aapt resource value: { 0x7F04012A,0x7F04012B } - public static int[] CollapsingToolbarLayout_Layout = new int[] { - 2130968874, - 2130968875}; - - // aapt resource value: 0 - public const int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; - - // aapt resource value: 1 - public const int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; - - // aapt resource value: 10 - public const int CollapsingToolbarLayout_scrimAnimationDuration = 10; - - // aapt resource value: 11 - public const int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 11; - - // aapt resource value: 12 - public const int CollapsingToolbarLayout_statusBarScrim = 12; - - // aapt resource value: 13 - public const int CollapsingToolbarLayout_title = 13; - - // aapt resource value: 14 - public const int CollapsingToolbarLayout_titleEnabled = 14; - - // aapt resource value: 15 - public const int CollapsingToolbarLayout_toolbarId = 15; - - // aapt resource value: { 0x10101A5,0x101031F,0x7F040027 } - public static int[] ColorStateListItem = new int[] { - 16843173, - 16843551, - 2130968615}; - - // aapt resource value: 2 - public const int ColorStateListItem_alpha = 2; - - // aapt resource value: 1 - public const int ColorStateListItem_android_alpha = 1; - - // aapt resource value: 0 - public const int ColorStateListItem_android_color = 0; - - // aapt resource value: { 0x1010107,0x7F040052,0x7F040059,0x7F04005A } - public static int[] CompoundButton = new int[] { - 16843015, - 2130968658, - 2130968665, - 2130968666}; - - // aapt resource value: 0 - public const int CompoundButton_android_button = 0; - - // aapt resource value: 1 - public const int CompoundButton_buttonCompat = 1; - - // aapt resource value: 2 - public const int CompoundButton_buttonTint = 2; - - // aapt resource value: 3 - public const int CompoundButton_buttonTintMode = 3; - - // aapt resource value: { 0x7F04011E,0x7F0401A1 } - public static int[] CoordinatorLayout = new int[] { - 2130968862, - 2130968993}; - - // aapt resource value: 0 - public const int CoordinatorLayout_keylines = 0; - - // aapt resource value: { 0x10100B3,0x7F040127,0x7F040128,0x7F040129,0x7F04012C,0x7F04012D,0x7F04012E } - public static int[] CoordinatorLayout_Layout = new int[] { - 16842931, - 2130968871, - 2130968872, - 2130968873, - 2130968876, - 2130968877, - 2130968878}; - - // aapt resource value: 0 - public const int CoordinatorLayout_Layout_android_layout_gravity = 0; - - // aapt resource value: 1 - public const int CoordinatorLayout_Layout_layout_anchor = 1; - - // aapt resource value: 2 - public const int CoordinatorLayout_Layout_layout_anchorGravity = 2; - - // aapt resource value: 3 - public const int CoordinatorLayout_Layout_layout_behavior = 3; - - // aapt resource value: 4 - public const int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; - - // aapt resource value: 5 - public const int CoordinatorLayout_Layout_layout_insetEdge = 5; - - // aapt resource value: 6 - public const int CoordinatorLayout_Layout_layout_keyline = 6; - - // aapt resource value: 1 - public const int CoordinatorLayout_statusBarBackground = 1; - - // aapt resource value: { 0x7F040042,0x7F040043 } - public static int[] DesignTheme = new int[] { - 2130968642, - 2130968643}; - - // aapt resource value: 0 - public const int DesignTheme_bottomSheetDialogTheme = 0; - - // aapt resource value: 1 - public const int DesignTheme_bottomSheetStyle = 1; - - // aapt resource value: { 0x7F04002A,0x7F04002B,0x7F040037,0x7F04008E,0x7F0400BE,0x7F0400F2,0x7F040196,0x7F0401E7 } - public static int[] DrawerArrowToggle = new int[] { - 2130968618, - 2130968619, - 2130968631, - 2130968718, - 2130968766, - 2130968818, - 2130968982, - 2130969063}; - - // aapt resource value: 0 - public const int DrawerArrowToggle_arrowHeadLength = 0; - - // aapt resource value: 1 - public const int DrawerArrowToggle_arrowShaftLength = 1; - - // aapt resource value: 2 - public const int DrawerArrowToggle_barLength = 2; - - // aapt resource value: 3 - public const int DrawerArrowToggle_color = 3; - - // aapt resource value: 4 - public const int DrawerArrowToggle_drawableSize = 4; - - // aapt resource value: 5 - public const int DrawerArrowToggle_gapBetweenBars = 5; - - // aapt resource value: 6 - public const int DrawerArrowToggle_spinBars = 6; - - // aapt resource value: 7 - public const int DrawerArrowToggle_thickness = 7; - - // aapt resource value: { 0x7F040035,0x7F040036,0x7F04003E,0x7F0400C9,0x7F0400DD,0x7F0400DE,0x7F0400F9,0x7F040101,0x7F04014B,0x7F040175,0x7F040180,0x7F04018D,0x7F04020D } - public static int[] FloatingActionButton = new int[] { - 2130968629, - 2130968630, - 2130968638, - 2130968777, - 2130968797, - 2130968798, - 2130968825, - 2130968833, - 2130968907, - 2130968949, - 2130968960, - 2130968973, - 2130969101}; - - // aapt resource value: 0 - public const int FloatingActionButton_backgroundTint = 0; - - // aapt resource value: 1 - public const int FloatingActionButton_backgroundTintMode = 1; - - // aapt resource value: { 0x7F040038 } - public static int[] FloatingActionButton_Behavior_Layout = new int[] { - 2130968632}; - - // aapt resource value: 0 - public const int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; - - // aapt resource value: 2 - public const int FloatingActionButton_borderWidth = 2; - - // aapt resource value: 3 - public const int FloatingActionButton_elevation = 3; - - // aapt resource value: 4 - public const int FloatingActionButton_fabCustomSize = 4; - - // aapt resource value: 5 - public const int FloatingActionButton_fabSize = 5; - - // aapt resource value: 6 - public const int FloatingActionButton_hideMotionSpec = 6; - - // aapt resource value: 7 - public const int FloatingActionButton_hoveredFocusedTranslationZ = 7; - - // aapt resource value: 8 - public const int FloatingActionButton_maxImageSize = 8; - - // aapt resource value: 9 - public const int FloatingActionButton_pressedTranslationZ = 9; - - // aapt resource value: 10 - public const int FloatingActionButton_rippleColor = 10; - - // aapt resource value: 11 - public const int FloatingActionButton_showMotionSpec = 11; - - // aapt resource value: 12 - public const int FloatingActionButton_useCompatPadding = 12; - - // aapt resource value: { 0x7F040119,0x7F040133 } - public static int[] FlowLayout = new int[] { - 2130968857, - 2130968883}; - - // aapt resource value: 0 - public const int FlowLayout_itemSpacing = 0; - - // aapt resource value: 1 - public const int FlowLayout_lineSpacing = 1; - - // aapt resource value: { 0x7F0400E8,0x7F0400E9,0x7F0400EA,0x7F0400EB,0x7F0400EC,0x7F0400ED } - public static int[] FontFamily = new int[] { - 2130968808, - 2130968809, - 2130968810, - 2130968811, - 2130968812, - 2130968813}; - - // aapt resource value: { 0x1010532,0x1010533,0x101053F,0x101056F,0x1010570,0x7F0400E6,0x7F0400EE,0x7F0400EF,0x7F0400F0,0x7F040204 } - public static int[] FontFamilyFont = new int[] { - 16844082, - 16844083, - 16844095, - 16844143, - 16844144, - 2130968806, - 2130968814, - 2130968815, - 2130968816, - 2130969092}; - - // aapt resource value: 0 - public const int FontFamilyFont_android_font = 0; - - // aapt resource value: 2 - public const int FontFamilyFont_android_fontStyle = 2; - - // aapt resource value: 4 - public const int FontFamilyFont_android_fontVariationSettings = 4; - - // aapt resource value: 1 - public const int FontFamilyFont_android_fontWeight = 1; - - // aapt resource value: 3 - public const int FontFamilyFont_android_ttcIndex = 3; - - // aapt resource value: 5 - public const int FontFamilyFont_font = 5; - - // aapt resource value: 6 - public const int FontFamilyFont_fontStyle = 6; - - // aapt resource value: 7 - public const int FontFamilyFont_fontVariationSettings = 7; - - // aapt resource value: 8 - public const int FontFamilyFont_fontWeight = 8; - - // aapt resource value: 9 - public const int FontFamilyFont_ttcIndex = 9; - - // aapt resource value: 0 - public const int FontFamily_fontProviderAuthority = 0; - - // aapt resource value: 1 - public const int FontFamily_fontProviderCerts = 1; - - // aapt resource value: 2 - public const int FontFamily_fontProviderFetchStrategy = 2; - - // aapt resource value: 3 - public const int FontFamily_fontProviderFetchTimeout = 3; - - // aapt resource value: 4 - public const int FontFamily_fontProviderPackage = 4; - - // aapt resource value: 5 - public const int FontFamily_fontProviderQuery = 5; - - // aapt resource value: { 0x1010109,0x1010200,0x7F0400F1 } - public static int[] ForegroundLinearLayout = new int[] { - 16843017, - 16843264, - 2130968817}; - - // aapt resource value: 0 - public const int ForegroundLinearLayout_android_foreground = 0; - - // aapt resource value: 1 - public const int ForegroundLinearLayout_android_foregroundGravity = 1; - - // aapt resource value: 2 - public const int ForegroundLinearLayout_foregroundInsidePadding = 2; - - // aapt resource value: { 0x1010003,0x10100D0,0x10100D1 } - public static int[] Fragment = new int[] { - 16842755, - 16842960, - 16842961}; - - // aapt resource value: { 0x1010003,0x10100D1 } - public static int[] FragmentContainerView = new int[] { - 16842755, - 16842961}; - - // aapt resource value: 0 - public const int FragmentContainerView_android_name = 0; - - // aapt resource value: 1 - public const int FragmentContainerView_android_tag = 1; - - // aapt resource value: 1 - public const int Fragment_android_id = 1; - - // aapt resource value: 0 - public const int Fragment_android_name = 0; - - // aapt resource value: 2 - public const int Fragment_android_tag = 2; - - // aapt resource value: { 0x101019D,0x101019E,0x10101A1,0x10101A2,0x10101A3,0x10101A4,0x1010201,0x101020B,0x1010510,0x1010511,0x1010512,0x1010513 } - public static int[] GradientColor = new int[] { - 16843165, - 16843166, - 16843169, - 16843170, - 16843171, - 16843172, - 16843265, - 16843275, - 16844048, - 16844049, - 16844050, - 16844051}; - - // aapt resource value: { 0x10101A5,0x1010514 } - public static int[] GradientColorItem = new int[] { - 16843173, - 16844052}; - - // aapt resource value: 0 - public const int GradientColorItem_android_color = 0; - - // aapt resource value: 1 - public const int GradientColorItem_android_offset = 1; - - // aapt resource value: 7 - public const int GradientColor_android_centerColor = 7; - - // aapt resource value: 3 - public const int GradientColor_android_centerX = 3; - - // aapt resource value: 4 - public const int GradientColor_android_centerY = 4; - - // aapt resource value: 1 - public const int GradientColor_android_endColor = 1; - - // aapt resource value: 10 - public const int GradientColor_android_endX = 10; - - // aapt resource value: 11 - public const int GradientColor_android_endY = 11; - - // aapt resource value: 5 - public const int GradientColor_android_gradientRadius = 5; - - // aapt resource value: 0 - public const int GradientColor_android_startColor = 0; - - // aapt resource value: 8 - public const int GradientColor_android_startX = 8; - - // aapt resource value: 9 - public const int GradientColor_android_startY = 9; - - // aapt resource value: 6 - public const int GradientColor_android_tileMode = 6; - - // aapt resource value: 2 - public const int GradientColor_android_type = 2; - - // aapt resource value: { 0x10100AF,0x10100C4,0x1010126,0x1010127,0x1010128,0x7F0400B6,0x7F0400B8,0x7F04014C,0x7F04018C } - public static int[] LinearLayoutCompat = new int[] { - 16842927, - 16842948, - 16843046, - 16843047, - 16843048, - 2130968758, - 2130968760, - 2130968908, - 2130968972}; - - // aapt resource value: 2 - public const int LinearLayoutCompat_android_baselineAligned = 2; - - // aapt resource value: 3 - public const int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; - - // aapt resource value: 0 - public const int LinearLayoutCompat_android_gravity = 0; - - // aapt resource value: 1 - public const int LinearLayoutCompat_android_orientation = 1; - - // aapt resource value: 4 - public const int LinearLayoutCompat_android_weightSum = 4; - - // aapt resource value: 5 - public const int LinearLayoutCompat_divider = 5; - - // aapt resource value: 6 - public const int LinearLayoutCompat_dividerPadding = 6; - - // aapt resource value: { 0x10100B3,0x10100F4,0x10100F5,0x1010181 } - public static int[] LinearLayoutCompat_Layout = new int[] { - 16842931, - 16842996, - 16842997, - 16843137}; - - // aapt resource value: 0 - public const int LinearLayoutCompat_Layout_android_layout_gravity = 0; - - // aapt resource value: 2 - public const int LinearLayoutCompat_Layout_android_layout_height = 2; - - // aapt resource value: 3 - public const int LinearLayoutCompat_Layout_android_layout_weight = 3; - - // aapt resource value: 1 - public const int LinearLayoutCompat_Layout_android_layout_width = 1; - - // aapt resource value: 7 - public const int LinearLayoutCompat_measureWithLargestChild = 7; - - // aapt resource value: 8 - public const int LinearLayoutCompat_showDividers = 8; - - // aapt resource value: { 0x10102AC,0x10102AD } - public static int[] ListPopupWindow = new int[] { - 16843436, - 16843437}; - - // aapt resource value: 0 - public const int ListPopupWindow_android_dropDownHorizontalOffset = 0; - - // aapt resource value: 1 - public const int ListPopupWindow_android_dropDownVerticalOffset = 1; - - // aapt resource value: { 0x7F040081,0x7F04010B,0x7F04010C } - public static int[] LoadingImageView = new int[] { - 2130968705, - 2130968843, - 2130968844}; - - // aapt resource value: 0 - public const int LoadingImageView_circleCrop = 0; - - // aapt resource value: 1 - public const int LoadingImageView_imageAspectRatio = 1; - - // aapt resource value: 2 - public const int LoadingImageView_imageAspectRatioAdjust = 2; - - // aapt resource value: { 0x7F040029,0x7F04005B,0x7F04005C,0x7F04005D,0x7F04005E,0x7F04005F,0x7F040060,0x7F040061,0x7F040121,0x7F040122,0x7F040123,0x7F040124,0x7F040143,0x7F040146,0x7F040205,0x7F040206,0x7F040207,0x7F040208,0x7F040209,0x7F04020A,0x7F04020B,0x7F04020C,0x7F04020E,0x7F04021B } - public static int[] MapAttrs = new int[] { - 2130968617, - 2130968667, - 2130968668, - 2130968669, - 2130968670, - 2130968671, - 2130968672, - 2130968673, - 2130968865, - 2130968866, - 2130968867, - 2130968868, - 2130968899, - 2130968902, - 2130969093, - 2130969094, - 2130969095, - 2130969096, - 2130969097, - 2130969098, - 2130969099, - 2130969100, - 2130969102, - 2130969115}; - - // aapt resource value: 0 - public const int MapAttrs_ambientEnabled = 0; - - // aapt resource value: 1 - public const int MapAttrs_cameraBearing = 1; - - // aapt resource value: 2 - public const int MapAttrs_cameraMaxZoomPreference = 2; - - // aapt resource value: 3 - public const int MapAttrs_cameraMinZoomPreference = 3; - - // aapt resource value: 4 - public const int MapAttrs_cameraTargetLat = 4; - - // aapt resource value: 5 - public const int MapAttrs_cameraTargetLng = 5; - - // aapt resource value: 6 - public const int MapAttrs_cameraTilt = 6; - - // aapt resource value: 7 - public const int MapAttrs_cameraZoom = 7; - - // aapt resource value: 8 - public const int MapAttrs_latLngBoundsNorthEastLatitude = 8; - - // aapt resource value: 9 - public const int MapAttrs_latLngBoundsNorthEastLongitude = 9; - - // aapt resource value: 10 - public const int MapAttrs_latLngBoundsSouthWestLatitude = 10; - - // aapt resource value: 11 - public const int MapAttrs_latLngBoundsSouthWestLongitude = 11; - - // aapt resource value: 12 - public const int MapAttrs_liteMode = 12; - - // aapt resource value: 13 - public const int MapAttrs_mapType = 13; - - // aapt resource value: 14 - public const int MapAttrs_uiCompass = 14; - - // aapt resource value: 15 - public const int MapAttrs_uiMapToolbar = 15; - - // aapt resource value: 16 - public const int MapAttrs_uiRotateGestures = 16; - - // aapt resource value: 17 - public const int MapAttrs_uiScrollGestures = 17; - - // aapt resource value: 18 - public const int MapAttrs_uiScrollGesturesDuringRotateOrZoom = 18; - - // aapt resource value: 19 - public const int MapAttrs_uiTiltGestures = 19; - - // aapt resource value: 20 - public const int MapAttrs_uiZoomControls = 20; - - // aapt resource value: 21 - public const int MapAttrs_uiZoomGestures = 21; - - // aapt resource value: 22 - public const int MapAttrs_useViewLifecycle = 22; - - // aapt resource value: 23 - public const int MapAttrs_zOrderOnTop = 23; - - // aapt resource value: { 0x10101B7,0x10101B8,0x10101B9,0x10101BA,0x7F040035,0x7F040036,0x7F0400AB,0x7F040102,0x7F040104,0x7F040105,0x7F040106,0x7F040108,0x7F040109,0x7F040180,0x7F0401A3,0x7F0401A4 } - public static int[] MaterialButton = new int[] { - 16843191, - 16843192, - 16843193, - 16843194, - 2130968629, - 2130968630, - 2130968747, - 2130968834, - 2130968836, - 2130968837, - 2130968838, - 2130968840, - 2130968841, - 2130968960, - 2130968995, - 2130968996}; - - // aapt resource value: 3 - public const int MaterialButton_android_insetBottom = 3; - - // aapt resource value: 0 - public const int MaterialButton_android_insetLeft = 0; - - // aapt resource value: 1 - public const int MaterialButton_android_insetRight = 1; - - // aapt resource value: 2 - public const int MaterialButton_android_insetTop = 2; - - // aapt resource value: 4 - public const int MaterialButton_backgroundTint = 4; - - // aapt resource value: 5 - public const int MaterialButton_backgroundTintMode = 5; - - // aapt resource value: 6 - public const int MaterialButton_cornerRadius = 6; - - // aapt resource value: 7 - public const int MaterialButton_icon = 7; - - // aapt resource value: 8 - public const int MaterialButton_iconGravity = 8; - - // aapt resource value: 9 - public const int MaterialButton_iconPadding = 9; - - // aapt resource value: 10 - public const int MaterialButton_iconSize = 10; - - // aapt resource value: 11 - public const int MaterialButton_iconTint = 11; - - // aapt resource value: 12 - public const int MaterialButton_iconTintMode = 12; - - // aapt resource value: 13 - public const int MaterialButton_rippleColor = 13; - - // aapt resource value: 14 - public const int MaterialButton_strokeColor = 14; - - // aapt resource value: 15 - public const int MaterialButton_strokeWidth = 15; - - // aapt resource value: { 0x7F0401A3,0x7F0401A4 } - public static int[] MaterialCardView = new int[] { - 2130968995, - 2130968996}; - - // aapt resource value: 0 - public const int MaterialCardView_strokeColor = 0; - - // aapt resource value: 1 - public const int MaterialCardView_strokeWidth = 1; - - // aapt resource value: { 0x7F040042,0x7F040043,0x7F040072,0x7F04007C,0x7F040080,0x7F04008F,0x7F040090,0x7F040096,0x7F040097,0x7F040099,0x7F0400C8,0x7F0400E5,0x7F040147,0x7F040148,0x7F040162,0x7F040183,0x7F040193,0x7F0401C6,0x7F0401CB,0x7F0401CC,0x7F0401CD,0x7F0401CE,0x7F0401CF,0x7F0401D0,0x7F0401D1,0x7F0401D2,0x7F0401D3,0x7F0401D4,0x7F0401D9,0x7F0401DE,0x7F0401DF,0x7F0401E3 } - public static int[] MaterialComponentsTheme = new int[] { - 2130968642, - 2130968643, - 2130968690, - 2130968700, - 2130968704, - 2130968719, - 2130968720, - 2130968726, - 2130968727, - 2130968729, - 2130968776, - 2130968805, - 2130968903, - 2130968904, - 2130968930, - 2130968963, - 2130968979, - 2130969030, - 2130969035, - 2130969036, - 2130969037, - 2130969038, - 2130969039, - 2130969040, - 2130969041, - 2130969042, - 2130969043, - 2130969044, - 2130969049, - 2130969054, - 2130969055, - 2130969059}; - - // aapt resource value: 0 - public const int MaterialComponentsTheme_bottomSheetDialogTheme = 0; - - // aapt resource value: 1 - public const int MaterialComponentsTheme_bottomSheetStyle = 1; - - // aapt resource value: 2 - public const int MaterialComponentsTheme_chipGroupStyle = 2; - - // aapt resource value: 3 - public const int MaterialComponentsTheme_chipStandaloneStyle = 3; - - // aapt resource value: 4 - public const int MaterialComponentsTheme_chipStyle = 4; - - // aapt resource value: 5 - public const int MaterialComponentsTheme_colorAccent = 5; - - // aapt resource value: 6 - public const int MaterialComponentsTheme_colorBackgroundFloating = 6; - - // aapt resource value: 7 - public const int MaterialComponentsTheme_colorPrimary = 7; - - // aapt resource value: 8 - public const int MaterialComponentsTheme_colorPrimaryDark = 8; - - // aapt resource value: 9 - public const int MaterialComponentsTheme_colorSecondary = 9; - - // aapt resource value: 10 - public const int MaterialComponentsTheme_editTextStyle = 10; - - // aapt resource value: 11 - public const int MaterialComponentsTheme_floatingActionButtonStyle = 11; - - // aapt resource value: 12 - public const int MaterialComponentsTheme_materialButtonStyle = 12; - - // aapt resource value: 13 - public const int MaterialComponentsTheme_materialCardViewStyle = 13; - - // aapt resource value: 14 - public const int MaterialComponentsTheme_navigationViewStyle = 14; - - // aapt resource value: 15 - public const int MaterialComponentsTheme_scrimBackground = 15; - - // aapt resource value: 16 - public const int MaterialComponentsTheme_snackbarButtonStyle = 16; - - // aapt resource value: 17 - public const int MaterialComponentsTheme_tabStyle = 17; - - // aapt resource value: 18 - public const int MaterialComponentsTheme_textAppearanceBody1 = 18; - - // aapt resource value: 19 - public const int MaterialComponentsTheme_textAppearanceBody2 = 19; - - // aapt resource value: 20 - public const int MaterialComponentsTheme_textAppearanceButton = 20; - - // aapt resource value: 21 - public const int MaterialComponentsTheme_textAppearanceCaption = 21; - - // aapt resource value: 22 - public const int MaterialComponentsTheme_textAppearanceHeadline1 = 22; - - // aapt resource value: 23 - public const int MaterialComponentsTheme_textAppearanceHeadline2 = 23; - - // aapt resource value: 24 - public const int MaterialComponentsTheme_textAppearanceHeadline3 = 24; - - // aapt resource value: 25 - public const int MaterialComponentsTheme_textAppearanceHeadline4 = 25; - - // aapt resource value: 26 - public const int MaterialComponentsTheme_textAppearanceHeadline5 = 26; - - // aapt resource value: 27 - public const int MaterialComponentsTheme_textAppearanceHeadline6 = 27; - - // aapt resource value: 28 - public const int MaterialComponentsTheme_textAppearanceOverline = 28; - - // aapt resource value: 29 - public const int MaterialComponentsTheme_textAppearanceSubtitle1 = 29; - - // aapt resource value: 30 - public const int MaterialComponentsTheme_textAppearanceSubtitle2 = 30; - - // aapt resource value: 31 - public const int MaterialComponentsTheme_textInputStyle = 31; - - // aapt resource value: { 0x101013F,0x1010140,0x7F0400D7,0x7F0400D8,0x7F040150 } - public static int[] MediaRouteButton = new int[] { - 16843071, - 16843072, - 2130968791, - 2130968792, - 2130968912}; - - // aapt resource value: 1 - public const int MediaRouteButton_android_minHeight = 1; - - // aapt resource value: 0 - public const int MediaRouteButton_android_minWidth = 0; - - // aapt resource value: 2 - public const int MediaRouteButton_externalRouteEnabledDrawable = 2; - - // aapt resource value: 3 - public const int MediaRouteButton_externalRouteEnabledDrawableStatic = 3; - - // aapt resource value: 4 - public const int MediaRouteButton_mediaRouteButtonTint = 4; - - // aapt resource value: { 0x101000E,0x10100D0,0x1010194,0x10101DE,0x10101DF,0x10101E0 } - public static int[] MenuGroup = new int[] { - 16842766, - 16842960, - 16843156, - 16843230, - 16843231, - 16843232}; - - // aapt resource value: 5 - public const int MenuGroup_android_checkableBehavior = 5; - - // aapt resource value: 0 - public const int MenuGroup_android_enabled = 0; - - // aapt resource value: 1 - public const int MenuGroup_android_id = 1; - - // aapt resource value: 3 - public const int MenuGroup_android_menuCategory = 3; - - // aapt resource value: 4 - public const int MenuGroup_android_orderInCategory = 4; - - // aapt resource value: 2 - public const int MenuGroup_android_visible = 2; - - // aapt resource value: { 0x1010002,0x101000E,0x10100D0,0x1010106,0x1010194,0x10101DE,0x10101DF,0x10101E1,0x10101E2,0x10101E3,0x10101E4,0x10101E5,0x101026F,0x7F04000D,0x7F04001F,0x7F040020,0x7F040028,0x7F04009C,0x7F040108,0x7F040109,0x7F040163,0x7F04018B,0x7F040200 } - public static int[] MenuItem = new int[] { - 16842754, - 16842766, - 16842960, - 16843014, - 16843156, - 16843230, - 16843231, - 16843233, - 16843234, - 16843235, - 16843236, - 16843237, - 16843375, - 2130968589, - 2130968607, - 2130968608, - 2130968616, - 2130968732, - 2130968840, - 2130968841, - 2130968931, - 2130968971, - 2130969088}; - - // aapt resource value: 13 - public const int MenuItem_actionLayout = 13; - - // aapt resource value: 14 - public const int MenuItem_actionProviderClass = 14; - - // aapt resource value: 15 - public const int MenuItem_actionViewClass = 15; - - // aapt resource value: 16 - public const int MenuItem_alphabeticModifiers = 16; - - // aapt resource value: 9 - public const int MenuItem_android_alphabeticShortcut = 9; - - // aapt resource value: 11 - public const int MenuItem_android_checkable = 11; - - // aapt resource value: 3 - public const int MenuItem_android_checked = 3; - - // aapt resource value: 1 - public const int MenuItem_android_enabled = 1; - - // aapt resource value: 0 - public const int MenuItem_android_icon = 0; - - // aapt resource value: 2 - public const int MenuItem_android_id = 2; - - // aapt resource value: 5 - public const int MenuItem_android_menuCategory = 5; - - // aapt resource value: 10 - public const int MenuItem_android_numericShortcut = 10; - - // aapt resource value: 12 - public const int MenuItem_android_onClick = 12; - - // aapt resource value: 6 - public const int MenuItem_android_orderInCategory = 6; - - // aapt resource value: 7 - public const int MenuItem_android_title = 7; - - // aapt resource value: 8 - public const int MenuItem_android_titleCondensed = 8; - - // aapt resource value: 4 - public const int MenuItem_android_visible = 4; - - // aapt resource value: 17 - public const int MenuItem_contentDescription = 17; - - // aapt resource value: 18 - public const int MenuItem_iconTint = 18; - - // aapt resource value: 19 - public const int MenuItem_iconTintMode = 19; - - // aapt resource value: 20 - public const int MenuItem_numericModifiers = 20; - - // aapt resource value: 21 - public const int MenuItem_showAsAction = 21; - - // aapt resource value: 22 - public const int MenuItem_tooltipText = 22; - - // aapt resource value: { 0x10100AE,0x101012C,0x101012D,0x101012E,0x101012F,0x1010130,0x1010131,0x7F040174,0x7F0401A5 } - public static int[] MenuView = new int[] { - 16842926, - 16843052, - 16843053, - 16843054, - 16843055, - 16843056, - 16843057, - 2130968948, - 2130968997}; - - // aapt resource value: 4 - public const int MenuView_android_headerBackground = 4; - - // aapt resource value: 2 - public const int MenuView_android_horizontalDivider = 2; - - // aapt resource value: 5 - public const int MenuView_android_itemBackground = 5; - - // aapt resource value: 6 - public const int MenuView_android_itemIconDisabledAlpha = 6; - - // aapt resource value: 1 - public const int MenuView_android_itemTextAppearance = 1; - - // aapt resource value: 3 - public const int MenuView_android_verticalDivider = 3; - - // aapt resource value: 0 - public const int MenuView_android_windowAnimationStyle = 0; - - // aapt resource value: 7 - public const int MenuView_preserveIconSpacing = 7; - - // aapt resource value: 8 - public const int MenuView_subMenuArrow = 8; - - // aapt resource value: { 0x10100D4,0x10100DD,0x101011F,0x7F0400C9,0x7F0400F4,0x7F040112,0x7F040113,0x7F040115,0x7F040117,0x7F04011A,0x7F04011D,0x7F04015D } - public static int[] NavigationView = new int[] { - 16842964, - 16842973, - 16843039, - 2130968777, - 2130968820, - 2130968850, - 2130968851, - 2130968853, - 2130968855, - 2130968858, - 2130968861, - 2130968925}; - - // aapt resource value: 0 - public const int NavigationView_android_background = 0; - - // aapt resource value: 1 - public const int NavigationView_android_fitsSystemWindows = 1; - - // aapt resource value: 2 - public const int NavigationView_android_maxWidth = 2; - - // aapt resource value: 3 - public const int NavigationView_elevation = 3; - - // aapt resource value: 4 - public const int NavigationView_headerLayout = 4; - - // aapt resource value: 5 - public const int NavigationView_itemBackground = 5; - - // aapt resource value: 6 - public const int NavigationView_itemHorizontalPadding = 6; - - // aapt resource value: 7 - public const int NavigationView_itemIconPadding = 7; - - // aapt resource value: 8 - public const int NavigationView_itemIconTint = 8; - - // aapt resource value: 9 - public const int NavigationView_itemTextAppearance = 9; - - // aapt resource value: 10 - public const int NavigationView_itemTextColor = 10; - - // aapt resource value: 11 - public const int NavigationView_menu = 11; - - // aapt resource value: { 0x1010176,0x10102C9,0x7F040164 } - public static int[] PopupWindow = new int[] { - 16843126, - 16843465, - 2130968932}; - - // aapt resource value: { 0x7F04019C } - public static int[] PopupWindowBackgroundState = new int[] { - 2130968988}; - - // aapt resource value: 0 - public const int PopupWindowBackgroundState_state_above_anchor = 0; - - // aapt resource value: 1 - public const int PopupWindow_android_popupAnimationStyle = 1; - - // aapt resource value: 0 - public const int PopupWindow_android_popupBackground = 0; - - // aapt resource value: 2 - public const int PopupWindow_overlapAnchor = 2; - - // aapt resource value: { 0x7F040165,0x7F040168 } - public static int[] RecycleListView = new int[] { - 2130968933, - 2130968936}; - - // aapt resource value: 0 - public const int RecycleListView_paddingBottomNoButtons = 0; - - // aapt resource value: 1 - public const int RecycleListView_paddingTopNoTitle = 1; - - // aapt resource value: { 0x10100C4,0x10100EB,0x10100F1,0x7F0400DF,0x7F0400E0,0x7F0400E1,0x7F0400E2,0x7F0400E3,0x7F040126,0x7F04017F,0x7F040195,0x7F04019B } - public static int[] RecyclerView = new int[] { - 16842948, - 16842987, - 16842993, - 2130968799, - 2130968800, - 2130968801, - 2130968802, - 2130968803, - 2130968870, - 2130968959, - 2130968981, - 2130968987}; - - // aapt resource value: 1 - public const int RecyclerView_android_clipToPadding = 1; - - // aapt resource value: 2 - public const int RecyclerView_android_descendantFocusability = 2; - - // aapt resource value: 0 - public const int RecyclerView_android_orientation = 0; - - // aapt resource value: 3 - public const int RecyclerView_fastScrollEnabled = 3; - - // aapt resource value: 4 - public const int RecyclerView_fastScrollHorizontalThumbDrawable = 4; - - // aapt resource value: 5 - public const int RecyclerView_fastScrollHorizontalTrackDrawable = 5; - - // aapt resource value: 6 - public const int RecyclerView_fastScrollVerticalThumbDrawable = 6; - - // aapt resource value: 7 - public const int RecyclerView_fastScrollVerticalTrackDrawable = 7; - - // aapt resource value: 8 - public const int RecyclerView_layoutManager = 8; - - // aapt resource value: 9 - public const int RecyclerView_reverseLayout = 9; - - // aapt resource value: 10 - public const int RecyclerView_spanCount = 10; - - // aapt resource value: 11 - public const int RecyclerView_stackFromEnd = 11; - - // aapt resource value: { 0x7F040110 } - public static int[] ScrimInsetsFrameLayout = new int[] { - 2130968848}; - - // aapt resource value: 0 - public const int ScrimInsetsFrameLayout_insetForeground = 0; - - // aapt resource value: { 0x7F04003B } - public static int[] ScrollingViewBehavior_Layout = new int[] { - 2130968635}; - - // aapt resource value: 0 - public const int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; - - // aapt resource value: { 0x10100DA,0x101011F,0x1010220,0x1010264,0x7F040082,0x7F04009B,0x7F0400B1,0x7F0400F3,0x7F04010A,0x7F040125,0x7F040178,0x7F040179,0x7F040185,0x7F040186,0x7F0401A6,0x7F0401AB,0x7F040210 } - public static int[] SearchView = new int[] { - 16842970, - 16843039, - 16843296, - 16843364, - 2130968706, - 2130968731, - 2130968753, - 2130968819, - 2130968842, - 2130968869, - 2130968952, - 2130968953, - 2130968965, - 2130968966, - 2130968998, - 2130969003, - 2130969104}; - - // aapt resource value: 0 - public const int SearchView_android_focusable = 0; - - // aapt resource value: 3 - public const int SearchView_android_imeOptions = 3; - - // aapt resource value: 2 - public const int SearchView_android_inputType = 2; - - // aapt resource value: 1 - public const int SearchView_android_maxWidth = 1; - - // aapt resource value: 4 - public const int SearchView_closeIcon = 4; - - // aapt resource value: 5 - public const int SearchView_commitIcon = 5; - - // aapt resource value: 6 - public const int SearchView_defaultQueryHint = 6; - - // aapt resource value: 7 - public const int SearchView_goIcon = 7; - - // aapt resource value: 8 - public const int SearchView_iconifiedByDefault = 8; - - // aapt resource value: 9 - public const int SearchView_layout = 9; - - // aapt resource value: 10 - public const int SearchView_queryBackground = 10; - - // aapt resource value: 11 - public const int SearchView_queryHint = 11; - - // aapt resource value: 12 - public const int SearchView_searchHintIcon = 12; - - // aapt resource value: 13 - public const int SearchView_searchIcon = 13; - - // aapt resource value: 14 - public const int SearchView_submitBackground = 14; - - // aapt resource value: 15 - public const int SearchView_suggestionRowLayout = 15; - - // aapt resource value: 16 - public const int SearchView_voiceIcon = 16; - - // aapt resource value: { 0x7F040056,0x7F040098,0x7F040181 } - public static int[] SignInButton = new int[] { - 2130968662, - 2130968728, - 2130968961}; - - // aapt resource value: 0 - public const int SignInButton_buttonSize = 0; - - // aapt resource value: 1 - public const int SignInButton_colorScheme = 1; - - // aapt resource value: 2 - public const int SignInButton_scopeUris = 2; - - // aapt resource value: { 0x7F040193,0x7F040194 } - public static int[] Snackbar = new int[] { - 2130968979, - 2130968980}; - - // aapt resource value: { 0x101011F,0x7F0400C9,0x7F040149 } - public static int[] SnackbarLayout = new int[] { - 16843039, - 2130968777, - 2130968905}; - - // aapt resource value: 0 - public const int SnackbarLayout_android_maxWidth = 0; - - // aapt resource value: 1 - public const int SnackbarLayout_elevation = 1; - - // aapt resource value: 2 - public const int SnackbarLayout_maxActionInlineWidth = 2; - - // aapt resource value: 0 - public const int Snackbar_snackbarButtonStyle = 0; - - // aapt resource value: 1 - public const int Snackbar_snackbarStyle = 1; - - // aapt resource value: { 0x10100B2,0x1010176,0x101017B,0x1010262,0x7F040172 } - public static int[] Spinner = new int[] { - 16842930, - 16843126, - 16843131, - 16843362, - 2130968946}; - - // aapt resource value: 3 - public const int Spinner_android_dropDownWidth = 3; - - // aapt resource value: 0 - public const int Spinner_android_entries = 0; - - // aapt resource value: 1 - public const int Spinner_android_popupBackground = 1; - - // aapt resource value: 2 - public const int Spinner_android_prompt = 2; - - // aapt resource value: 4 - public const int Spinner_popupTheme = 4; - - // aapt resource value: { 0x101011C,0x1010194,0x1010195,0x1010196,0x101030C,0x101030D } - public static int[] StateListDrawable = new int[] { - 16843036, - 16843156, - 16843157, - 16843158, - 16843532, - 16843533}; - - // aapt resource value: { 0x1010199 } - public static int[] StateListDrawableItem = new int[] { - 16843161}; - - // aapt resource value: 0 - public const int StateListDrawableItem_android_drawable = 0; - - // aapt resource value: 3 - public const int StateListDrawable_android_constantSize = 3; - - // aapt resource value: 0 - public const int StateListDrawable_android_dither = 0; - - // aapt resource value: 4 - public const int StateListDrawable_android_enterFadeDuration = 4; - - // aapt resource value: 5 - public const int StateListDrawable_android_exitFadeDuration = 5; - - // aapt resource value: 2 - public const int StateListDrawable_android_variablePadding = 2; - - // aapt resource value: 1 - public const int StateListDrawable_android_visible = 1; - - // aapt resource value: { 0x1010124,0x1010125,0x1010142,0x7F04018E,0x7F040199,0x7F0401AC,0x7F0401AD,0x7F0401AF,0x7F0401E8,0x7F0401E9,0x7F0401EA,0x7F040201,0x7F040202,0x7F040203 } - public static int[] SwitchCompat = new int[] { - 16843044, - 16843045, - 16843074, - 2130968974, - 2130968985, - 2130969004, - 2130969005, - 2130969007, - 2130969064, - 2130969065, - 2130969066, - 2130969089, - 2130969090, - 2130969091}; - - // aapt resource value: 1 - public const int SwitchCompat_android_textOff = 1; - - // aapt resource value: 0 - public const int SwitchCompat_android_textOn = 0; - - // aapt resource value: 2 - public const int SwitchCompat_android_thumb = 2; - - // aapt resource value: 3 - public const int SwitchCompat_showText = 3; - - // aapt resource value: 4 - public const int SwitchCompat_splitTrack = 4; - - // aapt resource value: 5 - public const int SwitchCompat_switchMinWidth = 5; - - // aapt resource value: 6 - public const int SwitchCompat_switchPadding = 6; - - // aapt resource value: 7 - public const int SwitchCompat_switchTextAppearance = 7; - - // aapt resource value: 8 - public const int SwitchCompat_thumbTextPadding = 8; - - // aapt resource value: 9 - public const int SwitchCompat_thumbTint = 9; - - // aapt resource value: 10 - public const int SwitchCompat_thumbTintMode = 10; - - // aapt resource value: 11 - public const int SwitchCompat_track = 11; - - // aapt resource value: 12 - public const int SwitchCompat_trackTint = 12; - - // aapt resource value: 13 - public const int SwitchCompat_trackTintMode = 13; - - // aapt resource value: { 0x1010002,0x10100F2,0x101014F } - public static int[] TabItem = new int[] { - 16842754, - 16842994, - 16843087}; - - // aapt resource value: 0 - public const int TabItem_android_icon = 0; - - // aapt resource value: 1 - public const int TabItem_android_layout = 1; - - // aapt resource value: 2 - public const int TabItem_android_text = 2; - - // aapt resource value: { 0x7F0401B0,0x7F0401B1,0x7F0401B2,0x7F0401B3,0x7F0401B4,0x7F0401B5,0x7F0401B6,0x7F0401B7,0x7F0401B8,0x7F0401B9,0x7F0401BA,0x7F0401BB,0x7F0401BC,0x7F0401BD,0x7F0401BE,0x7F0401BF,0x7F0401C0,0x7F0401C1,0x7F0401C2,0x7F0401C3,0x7F0401C4,0x7F0401C5,0x7F0401C7,0x7F0401C8,0x7F0401C9 } - public static int[] TabLayout = new int[] { - 2130969008, - 2130969009, - 2130969010, - 2130969011, - 2130969012, - 2130969013, - 2130969014, - 2130969015, - 2130969016, - 2130969017, - 2130969018, - 2130969019, - 2130969020, - 2130969021, - 2130969022, - 2130969023, - 2130969024, - 2130969025, - 2130969026, - 2130969027, - 2130969028, - 2130969029, - 2130969031, - 2130969032, - 2130969033}; - - // aapt resource value: 0 - public const int TabLayout_tabBackground = 0; - - // aapt resource value: 1 - public const int TabLayout_tabContentStart = 1; - - // aapt resource value: 2 - public const int TabLayout_tabGravity = 2; - - // aapt resource value: 3 - public const int TabLayout_tabIconTint = 3; - - // aapt resource value: 4 - public const int TabLayout_tabIconTintMode = 4; - - // aapt resource value: 5 - public const int TabLayout_tabIndicator = 5; - - // aapt resource value: 6 - public const int TabLayout_tabIndicatorAnimationDuration = 6; - - // aapt resource value: 7 - public const int TabLayout_tabIndicatorColor = 7; - - // aapt resource value: 8 - public const int TabLayout_tabIndicatorFullWidth = 8; - - // aapt resource value: 9 - public const int TabLayout_tabIndicatorGravity = 9; - - // aapt resource value: 10 - public const int TabLayout_tabIndicatorHeight = 10; - - // aapt resource value: 11 - public const int TabLayout_tabInlineLabel = 11; - - // aapt resource value: 12 - public const int TabLayout_tabMaxWidth = 12; - - // aapt resource value: 13 - public const int TabLayout_tabMinWidth = 13; - - // aapt resource value: 14 - public const int TabLayout_tabMode = 14; - - // aapt resource value: 15 - public const int TabLayout_tabPadding = 15; - - // aapt resource value: 16 - public const int TabLayout_tabPaddingBottom = 16; - - // aapt resource value: 17 - public const int TabLayout_tabPaddingEnd = 17; - - // aapt resource value: 18 - public const int TabLayout_tabPaddingStart = 18; - - // aapt resource value: 19 - public const int TabLayout_tabPaddingTop = 19; - - // aapt resource value: 20 - public const int TabLayout_tabRippleColor = 20; - - // aapt resource value: 21 - public const int TabLayout_tabSelectedTextColor = 21; - - // aapt resource value: 22 - public const int TabLayout_tabTextAppearance = 22; - - // aapt resource value: 23 - public const int TabLayout_tabTextColor = 23; - - // aapt resource value: 24 - public const int TabLayout_tabUnboundedRipple = 24; - - // aapt resource value: { 0x1010095,0x1010096,0x1010097,0x1010098,0x101009A,0x101009B,0x1010161,0x1010162,0x1010163,0x1010164,0x10103AC,0x1010585,0x7F0400E7,0x7F0400EF,0x7F0401CA,0x7F0401E4 } - public static int[] TextAppearance = new int[] { - 16842901, - 16842902, - 16842903, - 16842904, - 16842906, - 16842907, - 16843105, - 16843106, - 16843107, - 16843108, - 16843692, - 16844165, - 2130968807, - 2130968815, - 2130969034, - 2130969060}; - - // aapt resource value: 10 - public const int TextAppearance_android_fontFamily = 10; - - // aapt resource value: 6 - public const int TextAppearance_android_shadowColor = 6; - - // aapt resource value: 7 - public const int TextAppearance_android_shadowDx = 7; - - // aapt resource value: 8 - public const int TextAppearance_android_shadowDy = 8; - - // aapt resource value: 9 - public const int TextAppearance_android_shadowRadius = 9; - - // aapt resource value: 3 - public const int TextAppearance_android_textColor = 3; - - // aapt resource value: 4 - public const int TextAppearance_android_textColorHint = 4; - - // aapt resource value: 5 - public const int TextAppearance_android_textColorLink = 5; - - // aapt resource value: 11 - public const int TextAppearance_android_textFontWeight = 11; - - // aapt resource value: 0 - public const int TextAppearance_android_textSize = 0; - - // aapt resource value: 2 - public const int TextAppearance_android_textStyle = 2; - - // aapt resource value: 1 - public const int TextAppearance_android_typeface = 1; - - // aapt resource value: 12 - public const int TextAppearance_fontFamily = 12; - - // aapt resource value: 13 - public const int TextAppearance_fontVariationSettings = 13; - - // aapt resource value: 14 - public const int TextAppearance_textAllCaps = 14; - - // aapt resource value: 15 - public const int TextAppearance_textLocale = 15; - - // aapt resource value: { 0x101009A,0x1010150,0x7F040044,0x7F040045,0x7F040046,0x7F040047,0x7F040048,0x7F040049,0x7F04004A,0x7F04004B,0x7F04004C,0x7F0400AC,0x7F0400AD,0x7F0400AE,0x7F0400AF,0x7F0400CC,0x7F0400CD,0x7F0400F6,0x7F0400F7,0x7F0400F8,0x7F0400FC,0x7F0400FD,0x7F0400FE,0x7F04016C,0x7F04016D,0x7F04016E,0x7F04016F,0x7F040170 } - public static int[] TextInputLayout = new int[] { - 16842906, - 16843088, - 2130968644, - 2130968645, - 2130968646, - 2130968647, - 2130968648, - 2130968649, - 2130968650, - 2130968651, - 2130968652, - 2130968748, - 2130968749, - 2130968750, - 2130968751, - 2130968780, - 2130968781, - 2130968822, - 2130968823, - 2130968824, - 2130968828, - 2130968829, - 2130968830, - 2130968940, - 2130968941, - 2130968942, - 2130968943, - 2130968944}; - - // aapt resource value: 1 - public const int TextInputLayout_android_hint = 1; - - // aapt resource value: 0 - public const int TextInputLayout_android_textColorHint = 0; - - // aapt resource value: 2 - public const int TextInputLayout_boxBackgroundColor = 2; - - // aapt resource value: 3 - public const int TextInputLayout_boxBackgroundMode = 3; - - // aapt resource value: 4 - public const int TextInputLayout_boxCollapsedPaddingTop = 4; - - // aapt resource value: 5 - public const int TextInputLayout_boxCornerRadiusBottomEnd = 5; - - // aapt resource value: 6 - public const int TextInputLayout_boxCornerRadiusBottomStart = 6; - - // aapt resource value: 7 - public const int TextInputLayout_boxCornerRadiusTopEnd = 7; - - // aapt resource value: 8 - public const int TextInputLayout_boxCornerRadiusTopStart = 8; - - // aapt resource value: 9 - public const int TextInputLayout_boxStrokeColor = 9; - - // aapt resource value: 10 - public const int TextInputLayout_boxStrokeWidth = 10; - - // aapt resource value: 11 - public const int TextInputLayout_counterEnabled = 11; - - // aapt resource value: 12 - public const int TextInputLayout_counterMaxLength = 12; - - // aapt resource value: 13 - public const int TextInputLayout_counterOverflowTextAppearance = 13; - - // aapt resource value: 14 - public const int TextInputLayout_counterTextAppearance = 14; - - // aapt resource value: 15 - public const int TextInputLayout_errorEnabled = 15; - - // aapt resource value: 16 - public const int TextInputLayout_errorTextAppearance = 16; - - // aapt resource value: 17 - public const int TextInputLayout_helperText = 17; - - // aapt resource value: 18 - public const int TextInputLayout_helperTextEnabled = 18; - - // aapt resource value: 19 - public const int TextInputLayout_helperTextTextAppearance = 19; - - // aapt resource value: 20 - public const int TextInputLayout_hintAnimationEnabled = 20; - - // aapt resource value: 21 - public const int TextInputLayout_hintEnabled = 21; - - // aapt resource value: 22 - public const int TextInputLayout_hintTextAppearance = 22; - - // aapt resource value: 23 - public const int TextInputLayout_passwordToggleContentDescription = 23; - - // aapt resource value: 24 - public const int TextInputLayout_passwordToggleDrawable = 24; - - // aapt resource value: 25 - public const int TextInputLayout_passwordToggleEnabled = 25; - - // aapt resource value: 26 - public const int TextInputLayout_passwordToggleTint = 26; - - // aapt resource value: 27 - public const int TextInputLayout_passwordToggleTintMode = 27; - - // aapt resource value: { 0x1010034,0x7F0400CA,0x7F0400CB } - public static int[] ThemeEnforcement = new int[] { - 16842804, - 2130968778, - 2130968779}; - - // aapt resource value: 0 - public const int ThemeEnforcement_android_textAppearance = 0; - - // aapt resource value: 1 - public const int ThemeEnforcement_enforceMaterialTheme = 1; - - // aapt resource value: 2 - public const int ThemeEnforcement_enforceTextAppearance = 2; - - // aapt resource value: { 0x10100AF,0x1010140,0x7F040053,0x7F04008A,0x7F04008B,0x7F04009D,0x7F04009E,0x7F04009F,0x7F0400A0,0x7F0400A1,0x7F0400A2,0x7F040144,0x7F040145,0x7F04014A,0x7F04015D,0x7F04015F,0x7F040160,0x7F040172,0x7F0401A7,0x7F0401A8,0x7F0401A9,0x7F0401F0,0x7F0401F2,0x7F0401F3,0x7F0401F4,0x7F0401F5,0x7F0401F6,0x7F0401F7,0x7F0401F8,0x7F0401F9 } - public static int[] Toolbar = new int[] { - 16842927, - 16843072, - 2130968659, - 2130968714, - 2130968715, - 2130968733, - 2130968734, - 2130968735, - 2130968736, - 2130968737, - 2130968738, - 2130968900, - 2130968901, - 2130968906, - 2130968925, - 2130968927, - 2130968928, - 2130968946, - 2130968999, - 2130969000, - 2130969001, - 2130969072, - 2130969074, - 2130969075, - 2130969076, - 2130969077, - 2130969078, - 2130969079, - 2130969080, - 2130969081}; - - // aapt resource value: 0 - public const int Toolbar_android_gravity = 0; - - // aapt resource value: 1 - public const int Toolbar_android_minHeight = 1; - - // aapt resource value: 2 - public const int Toolbar_buttonGravity = 2; - - // aapt resource value: 3 - public const int Toolbar_collapseContentDescription = 3; - - // aapt resource value: 4 - public const int Toolbar_collapseIcon = 4; - - // aapt resource value: 5 - public const int Toolbar_contentInsetEnd = 5; - - // aapt resource value: 6 - public const int Toolbar_contentInsetEndWithActions = 6; - - // aapt resource value: 7 - public const int Toolbar_contentInsetLeft = 7; - - // aapt resource value: 8 - public const int Toolbar_contentInsetRight = 8; - - // aapt resource value: 9 - public const int Toolbar_contentInsetStart = 9; - - // aapt resource value: 10 - public const int Toolbar_contentInsetStartWithNavigation = 10; - - // aapt resource value: 11 - public const int Toolbar_logo = 11; - - // aapt resource value: 12 - public const int Toolbar_logoDescription = 12; - - // aapt resource value: 13 - public const int Toolbar_maxButtonHeight = 13; - - // aapt resource value: 14 - public const int Toolbar_menu = 14; - - // aapt resource value: 15 - public const int Toolbar_navigationContentDescription = 15; - - // aapt resource value: 16 - public const int Toolbar_navigationIcon = 16; - - // aapt resource value: 17 - public const int Toolbar_popupTheme = 17; - - // aapt resource value: 18 - public const int Toolbar_subtitle = 18; - - // aapt resource value: 19 - public const int Toolbar_subtitleTextAppearance = 19; - - // aapt resource value: 20 - public const int Toolbar_subtitleTextColor = 20; - - // aapt resource value: 21 - public const int Toolbar_title = 21; - - // aapt resource value: 22 - public const int Toolbar_titleMargin = 22; - - // aapt resource value: 23 - public const int Toolbar_titleMarginBottom = 23; - - // aapt resource value: 24 - public const int Toolbar_titleMarginEnd = 24; - - // aapt resource value: 27 - public const int Toolbar_titleMargins = 27; - - // aapt resource value: 25 - public const int Toolbar_titleMarginStart = 25; - - // aapt resource value: 26 - public const int Toolbar_titleMarginTop = 26; - - // aapt resource value: 28 - public const int Toolbar_titleTextAppearance = 28; - - // aapt resource value: 29 - public const int Toolbar_titleTextColor = 29; - - // aapt resource value: { 0x1010000,0x10100DA,0x7F040166,0x7F040167,0x7F0401E6 } - public static int[] View = new int[] { - 16842752, - 16842970, - 2130968934, - 2130968935, - 2130969062}; - - // aapt resource value: { 0x10100D4,0x7F040035,0x7F040036 } - public static int[] ViewBackgroundHelper = new int[] { - 16842964, - 2130968629, - 2130968630}; - - // aapt resource value: 0 - public const int ViewBackgroundHelper_android_background = 0; - - // aapt resource value: 1 - public const int ViewBackgroundHelper_backgroundTint = 1; - - // aapt resource value: 2 - public const int ViewBackgroundHelper_backgroundTintMode = 2; - - // aapt resource value: { 0x10100D0,0x10100F2,0x10100F3 } - public static int[] ViewStubCompat = new int[] { - 16842960, - 16842994, - 16842995}; - - // aapt resource value: 0 - public const int ViewStubCompat_android_id = 0; - - // aapt resource value: 2 - public const int ViewStubCompat_android_inflatedId = 2; - - // aapt resource value: 1 - public const int ViewStubCompat_android_layout = 1; - - // aapt resource value: 1 - public const int View_android_focusable = 1; - - // aapt resource value: 0 - public const int View_android_theme = 0; - - // aapt resource value: 2 - public const int View_paddingEnd = 2; - - // aapt resource value: 3 - public const int View_paddingStart = 3; - - // aapt resource value: 4 - public const int View_theme = 4; - - static Styleable() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Styleable() - { - } - } - - public partial class Xml - { - - // aapt resource value: 0x7F120000 - public const int image_share_filepaths = 2131886080; - - static Xml() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Xml() - { - } - } - } -} -#pragma warning restore 1591 diff --git a/Sample.AndroidX/Resources/layout/heatmaps_demo.xml b/Sample.AndroidX/Resources/layout/heatmaps_demo.xml deleted file mode 100644 index 154527b..0000000 --- a/Sample.AndroidX/Resources/layout/heatmaps_demo.xml +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - -