diff --git a/AutoBackups/Backup Rocklogger 2020-06-24 21.49.zip b/AutoBackups/Backup Rocklogger 2020-06-24 21.49.zip new file mode 100644 index 0000000..a098058 Binary files /dev/null and b/AutoBackups/Backup Rocklogger 2020-06-24 21.49.zip differ diff --git a/AutoBackups/Backup Rocklogger 2020-06-29 23.17.zip b/AutoBackups/Backup Rocklogger 2020-06-29 23.17.zip new file mode 100644 index 0000000..7d6aabc Binary files /dev/null and b/AutoBackups/Backup Rocklogger 2020-06-29 23.17.zip differ diff --git a/AutoBackups/Backup Rocklogger 2020-07-02 00.01.zip b/AutoBackups/Backup Rocklogger 2020-07-02 00.01.zip new file mode 100644 index 0000000..eaa8ce2 Binary files /dev/null and b/AutoBackups/Backup Rocklogger 2020-07-02 00.01.zip differ diff --git a/AutoBackups/Backup Rocklogger 2020-07-04 20.52.zip b/AutoBackups/Backup Rocklogger 2020-07-04 20.52.zip new file mode 100644 index 0000000..f0e3af3 Binary files /dev/null and b/AutoBackups/Backup Rocklogger 2020-07-04 20.52.zip differ diff --git a/AutoBackups/Backup Rocklogger 2020-07-04 21.58.zip b/AutoBackups/Backup Rocklogger 2020-07-04 21.58.zip new file mode 100644 index 0000000..c16f913 Binary files /dev/null and b/AutoBackups/Backup Rocklogger 2020-07-04 21.58.zip differ diff --git a/AutoBackups/Backup Rocklogger 2020-07-04 23.48.zip b/AutoBackups/Backup Rocklogger 2020-07-04 23.48.zip new file mode 100644 index 0000000..ac6fc9e Binary files /dev/null and b/AutoBackups/Backup Rocklogger 2020-07-04 23.48.zip differ diff --git a/AutoBackups/Backup Rocklogger 2020-07-05 00.14.zip b/AutoBackups/Backup Rocklogger 2020-07-05 00.14.zip new file mode 100644 index 0000000..1fc7022 Binary files /dev/null and b/AutoBackups/Backup Rocklogger 2020-07-05 00.14.zip differ diff --git a/AutoBackups/Backup Rocklogger 2020-07-05 00.25.zip b/AutoBackups/Backup Rocklogger 2020-07-05 00.25.zip new file mode 100644 index 0000000..ae76d31 Binary files /dev/null and b/AutoBackups/Backup Rocklogger 2020-07-05 00.25.zip differ diff --git a/Files/mapfrag.bal b/Files/mapfrag.bal new file mode 100644 index 0000000..4bf6e1a Binary files /dev/null and b/Files/mapfrag.bal differ diff --git a/Files/marker1.png b/Files/marker1.png new file mode 100644 index 0000000..e5bbe9a Binary files /dev/null and b/Files/marker1.png differ diff --git a/Files/marker2.png b/Files/marker2.png new file mode 100644 index 0000000..60c2d31 Binary files /dev/null and b/Files/marker2.png differ diff --git a/Files/overlay (1).png b/Files/overlay (1).png new file mode 100644 index 0000000..781eefd Binary files /dev/null and b/Files/overlay (1).png differ diff --git a/Files/overlay.png b/Files/overlay.png new file mode 100644 index 0000000..f53c059 Binary files /dev/null and b/Files/overlay.png differ diff --git a/Files/overlaywhite.png b/Files/overlaywhite.png new file mode 100644 index 0000000..3b127bd Binary files /dev/null and b/Files/overlaywhite.png differ diff --git a/Files/rockloggervisual.bal b/Files/rockloggervisual.bal new file mode 100644 index 0000000..803da66 Binary files /dev/null and b/Files/rockloggervisual.bal differ diff --git a/Mapmod.bas b/Mapmod.bas new file mode 100644 index 0000000..9e06a5f --- /dev/null +++ b/Mapmod.bas @@ -0,0 +1,139 @@ +B4A=true +Group=Default Group +ModulesStructureVersion=1 +Type=Activity +Version=9.801 +@EndOfDesignText@ +#Region Activity Attributes + #FullScreen: False + #IncludeTitle: True +#End Region + +Sub Process_Globals + Private rp As RuntimePermissions +End Sub + +Sub Globals + Private gmap As GoogleMap + Private MapFragment1 As MapFragment + Private centerloc As CameraPosition + Private bmp As Bitmap + Private gmapx As GoogleMapsExtras + +End Sub + +Sub Activity_Create(FirstTime As Boolean) + 'Do not forget to load the layout file created with the visual designer. For example: + Activity.LoadLayout("mapfrag") + bmp = LoadBitmapResize(File.DirAssets, "marker2.png", 20dip, 20dip, True) + Wait For MapFragment1_Ready + gmap = MapFragment1.GetMap + rp.CheckAndRequest(rp.PERMISSION_ACCESS_FINE_LOCATION) + Wait For Activity_PermissionResult (Permission As String, Result As Boolean) + If Result Then + gmap.MyLocationEnabled = True + Else + Log("No permission!") + End If + +'matchingsub +add_line + 'gmap.mMoveCamera(-centerloc) +End Sub + +Sub Log_Markers + 'Regex. + 'For Main.rocklist + +End Sub + +Sub matchingsub 'currently pulls location + Do Until MapFragment1.GetMap.IsInitialized 'necissary to prevent 'googlemaps not initialized' error, which is misleading + Sleep(100) + Loop +gmap.MapType = gmap.MAP_TYPE_SATELLITE +centerloc.initialize (-32.676910,118.211034,14) +gmap.MoveCamera(centerloc) + '\d*\.?\d*(L|ml|kg|g])\s(\w+\s?\w*)\s?(\$?\d*\.?\d*)[\n] + If Main.headerlist.Size >0 Then + For i = 0 To Main.headerlist.Size - 1 +' sb.Append(headerlist.get(i)).Append(CRLF) +' sb.Append(Main.locationstringlist.get(i+1)).Append(CRLF) + Next + For i = 0 To Main.headerlist.size-1 + Dim m As Matcher =Regex.Matcher(",(.+?) (.+?),", Main.locationstringlist.Get(i+1)) + Do While m.Find + gmap.AddMarker3(m.group(1),m.group(2),Main.headerlist.get(i),bmp) + Loop + Next + End If +' For i = 1 To Main.PointList.Size-1 +' Dim m As Matcher =Regex.Matcher("(?<=,)(.+) (.+)(?=,)", Main.PointList.Get(i)) +' Do While m.Find +' gmap.AddMarker(m.group(1),m.group(2),"Point") +' Loop +' Next +' For i = 1 To Main.WeedList.Size-1 +' Dim m As Matcher =Regex.Matcher("(?<=,)(.+) (.+)(?=,)", Main.WeedList.Get(i)) +' Do While m.Find +' gmap.AddMarker(m.group(1),m.group(2),"Weed") +' Loop +' Next +End Sub + +Sub add_line + Dim line As Polyline + Dim points As List + Dim point As LatLng + Dim grpvop As GroundOverlayOptions + Dim grov As GroundOverlay + Dim overlay4 As Bitmap + Dim centr As LatLng + grpvop.Initialize + overlay4 = LoadBitmap(File.DirAssets, "overlaywhite.png") + grpvop.Image(overlay4) + centr.Initialize(-32.6972,118.1908) + grpvop.Position(centr,29000,16000) + grpvop.SetTransparency(.5) + + gmapx.AddGroundOverlay(gmap,grpvop) + line=gmap.AddPolyline + points.Initialize + + line.Color=Colors.Red + line.Visible=True + line.Width=2 + point.Initialize(-32.6758, 118.1967) + points.Add(point) + point.Initialize(-32.6757, 118.1756) + points.Add(point) + point.Initialize(-32.6608, 118.1756) + points.Add(point) + point.Initialize(-32.6564, 118.182) + points.Add(point) + point.Initialize(-32.6564, 118.1963) + points.Add(point) + point.Initialize(-32.6758, 118.1967) + points.Add(point) + line.Points=points + +End Sub + +Sub MapFragment1_Click (Point As LatLng) + gmap.AddMarker(Point.Latitude, Point.Longitude, "New Marker") + Log(Point) + +End Sub + +Sub Activity_Resume +'add_line +matchingsub +End Sub + +Sub Activity_Pause (UserClosed As Boolean) + +End Sub + +Sub button1_Click + StartActivity(Main) +End Sub diff --git a/Objects/AndroidManifest.xml b/Objects/AndroidManifest.xml new file mode 100644 index 0000000..155a2f7 --- /dev/null +++ b/Objects/AndroidManifest.xml @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Objects/Rocklogger.apk b/Objects/Rocklogger.apk new file mode 100644 index 0000000..2f54780 Binary files /dev/null and b/Objects/Rocklogger.apk differ diff --git a/Objects/bin/classes/androidx/coordinatorlayout/R$anim.class b/Objects/bin/classes/androidx/coordinatorlayout/R$anim.class new file mode 100644 index 0000000..d8927be Binary files /dev/null and b/Objects/bin/classes/androidx/coordinatorlayout/R$anim.class differ diff --git a/Objects/bin/classes/androidx/coordinatorlayout/R$attr.class b/Objects/bin/classes/androidx/coordinatorlayout/R$attr.class new file mode 100644 index 0000000..748c9e1 Binary files /dev/null and b/Objects/bin/classes/androidx/coordinatorlayout/R$attr.class differ diff --git a/Objects/bin/classes/androidx/coordinatorlayout/R$color.class b/Objects/bin/classes/androidx/coordinatorlayout/R$color.class new file mode 100644 index 0000000..9f8f452 Binary files /dev/null and b/Objects/bin/classes/androidx/coordinatorlayout/R$color.class differ diff --git a/Objects/bin/classes/androidx/coordinatorlayout/R$dimen.class b/Objects/bin/classes/androidx/coordinatorlayout/R$dimen.class new file mode 100644 index 0000000..d0c6129 Binary files /dev/null and b/Objects/bin/classes/androidx/coordinatorlayout/R$dimen.class differ diff --git a/Objects/bin/classes/androidx/coordinatorlayout/R$drawable.class b/Objects/bin/classes/androidx/coordinatorlayout/R$drawable.class new file mode 100644 index 0000000..5cf99ee Binary files /dev/null and b/Objects/bin/classes/androidx/coordinatorlayout/R$drawable.class differ diff --git a/Objects/bin/classes/androidx/coordinatorlayout/R$id.class b/Objects/bin/classes/androidx/coordinatorlayout/R$id.class new file mode 100644 index 0000000..b285993 Binary files /dev/null and b/Objects/bin/classes/androidx/coordinatorlayout/R$id.class differ diff --git a/Objects/bin/classes/androidx/coordinatorlayout/R$integer.class b/Objects/bin/classes/androidx/coordinatorlayout/R$integer.class new file mode 100644 index 0000000..0ef6590 Binary files /dev/null and b/Objects/bin/classes/androidx/coordinatorlayout/R$integer.class differ diff --git a/Objects/bin/classes/androidx/coordinatorlayout/R$layout.class b/Objects/bin/classes/androidx/coordinatorlayout/R$layout.class new file mode 100644 index 0000000..2507042 Binary files /dev/null and b/Objects/bin/classes/androidx/coordinatorlayout/R$layout.class differ diff --git a/Objects/bin/classes/androidx/coordinatorlayout/R$mipmap.class b/Objects/bin/classes/androidx/coordinatorlayout/R$mipmap.class new file mode 100644 index 0000000..51f5682 Binary files /dev/null and b/Objects/bin/classes/androidx/coordinatorlayout/R$mipmap.class differ diff --git a/Objects/bin/classes/androidx/coordinatorlayout/R$string.class b/Objects/bin/classes/androidx/coordinatorlayout/R$string.class new file mode 100644 index 0000000..ed9d464 Binary files /dev/null and b/Objects/bin/classes/androidx/coordinatorlayout/R$string.class differ diff --git a/Objects/bin/classes/androidx/coordinatorlayout/R$style.class b/Objects/bin/classes/androidx/coordinatorlayout/R$style.class new file mode 100644 index 0000000..f82bd88 Binary files /dev/null and b/Objects/bin/classes/androidx/coordinatorlayout/R$style.class differ diff --git a/Objects/bin/classes/androidx/coordinatorlayout/R$styleable.class b/Objects/bin/classes/androidx/coordinatorlayout/R$styleable.class new file mode 100644 index 0000000..c457f68 Binary files /dev/null and b/Objects/bin/classes/androidx/coordinatorlayout/R$styleable.class differ diff --git a/Objects/bin/classes/androidx/coordinatorlayout/R.class b/Objects/bin/classes/androidx/coordinatorlayout/R.class new file mode 100644 index 0000000..9ad6712 Binary files /dev/null and b/Objects/bin/classes/androidx/coordinatorlayout/R.class differ diff --git a/Objects/bin/classes/androidx/core/R$anim.class b/Objects/bin/classes/androidx/core/R$anim.class new file mode 100644 index 0000000..aa75ddd Binary files /dev/null and b/Objects/bin/classes/androidx/core/R$anim.class differ diff --git a/Objects/bin/classes/androidx/core/R$attr.class b/Objects/bin/classes/androidx/core/R$attr.class new file mode 100644 index 0000000..b99b35d Binary files /dev/null and b/Objects/bin/classes/androidx/core/R$attr.class differ diff --git a/Objects/bin/classes/androidx/core/R$color.class b/Objects/bin/classes/androidx/core/R$color.class new file mode 100644 index 0000000..6b765e2 Binary files /dev/null and b/Objects/bin/classes/androidx/core/R$color.class differ diff --git a/Objects/bin/classes/androidx/core/R$dimen.class b/Objects/bin/classes/androidx/core/R$dimen.class new file mode 100644 index 0000000..0864040 Binary files /dev/null and b/Objects/bin/classes/androidx/core/R$dimen.class differ diff --git a/Objects/bin/classes/androidx/core/R$drawable.class b/Objects/bin/classes/androidx/core/R$drawable.class new file mode 100644 index 0000000..69893b4 Binary files /dev/null and b/Objects/bin/classes/androidx/core/R$drawable.class differ diff --git a/Objects/bin/classes/androidx/core/R$id.class b/Objects/bin/classes/androidx/core/R$id.class new file mode 100644 index 0000000..19e1c85 Binary files /dev/null and b/Objects/bin/classes/androidx/core/R$id.class differ diff --git a/Objects/bin/classes/androidx/core/R$integer.class b/Objects/bin/classes/androidx/core/R$integer.class new file mode 100644 index 0000000..88cb59a Binary files /dev/null and b/Objects/bin/classes/androidx/core/R$integer.class differ diff --git a/Objects/bin/classes/androidx/core/R$layout.class b/Objects/bin/classes/androidx/core/R$layout.class new file mode 100644 index 0000000..4c187a3 Binary files /dev/null and b/Objects/bin/classes/androidx/core/R$layout.class differ diff --git a/Objects/bin/classes/androidx/core/R$mipmap.class b/Objects/bin/classes/androidx/core/R$mipmap.class new file mode 100644 index 0000000..6cb672b Binary files /dev/null and b/Objects/bin/classes/androidx/core/R$mipmap.class differ diff --git a/Objects/bin/classes/androidx/core/R$string.class b/Objects/bin/classes/androidx/core/R$string.class new file mode 100644 index 0000000..3a7ea1e Binary files /dev/null and b/Objects/bin/classes/androidx/core/R$string.class differ diff --git a/Objects/bin/classes/androidx/core/R$style.class b/Objects/bin/classes/androidx/core/R$style.class new file mode 100644 index 0000000..e0dc5f8 Binary files /dev/null and b/Objects/bin/classes/androidx/core/R$style.class differ diff --git a/Objects/bin/classes/androidx/core/R$styleable.class b/Objects/bin/classes/androidx/core/R$styleable.class new file mode 100644 index 0000000..b051af7 Binary files /dev/null and b/Objects/bin/classes/androidx/core/R$styleable.class differ diff --git a/Objects/bin/classes/androidx/core/R.class b/Objects/bin/classes/androidx/core/R.class new file mode 100644 index 0000000..c5189bf Binary files /dev/null and b/Objects/bin/classes/androidx/core/R.class differ diff --git a/Objects/bin/classes/androidx/fragment/R$anim.class b/Objects/bin/classes/androidx/fragment/R$anim.class new file mode 100644 index 0000000..5016d54 Binary files /dev/null and b/Objects/bin/classes/androidx/fragment/R$anim.class differ diff --git a/Objects/bin/classes/androidx/fragment/R$attr.class b/Objects/bin/classes/androidx/fragment/R$attr.class new file mode 100644 index 0000000..8bdaee6 Binary files /dev/null and b/Objects/bin/classes/androidx/fragment/R$attr.class differ diff --git a/Objects/bin/classes/androidx/fragment/R$color.class b/Objects/bin/classes/androidx/fragment/R$color.class new file mode 100644 index 0000000..efb9146 Binary files /dev/null and b/Objects/bin/classes/androidx/fragment/R$color.class differ diff --git a/Objects/bin/classes/androidx/fragment/R$dimen.class b/Objects/bin/classes/androidx/fragment/R$dimen.class new file mode 100644 index 0000000..19f8914 Binary files /dev/null and b/Objects/bin/classes/androidx/fragment/R$dimen.class differ diff --git a/Objects/bin/classes/androidx/fragment/R$drawable.class b/Objects/bin/classes/androidx/fragment/R$drawable.class new file mode 100644 index 0000000..d808548 Binary files /dev/null and b/Objects/bin/classes/androidx/fragment/R$drawable.class differ diff --git a/Objects/bin/classes/androidx/fragment/R$id.class b/Objects/bin/classes/androidx/fragment/R$id.class new file mode 100644 index 0000000..521c771 Binary files /dev/null and b/Objects/bin/classes/androidx/fragment/R$id.class differ diff --git a/Objects/bin/classes/androidx/fragment/R$integer.class b/Objects/bin/classes/androidx/fragment/R$integer.class new file mode 100644 index 0000000..c47b329 Binary files /dev/null and b/Objects/bin/classes/androidx/fragment/R$integer.class differ diff --git a/Objects/bin/classes/androidx/fragment/R$layout.class b/Objects/bin/classes/androidx/fragment/R$layout.class new file mode 100644 index 0000000..d2b3e13 Binary files /dev/null and b/Objects/bin/classes/androidx/fragment/R$layout.class differ diff --git a/Objects/bin/classes/androidx/fragment/R$mipmap.class b/Objects/bin/classes/androidx/fragment/R$mipmap.class new file mode 100644 index 0000000..5531c8d Binary files /dev/null and b/Objects/bin/classes/androidx/fragment/R$mipmap.class differ diff --git a/Objects/bin/classes/androidx/fragment/R$string.class b/Objects/bin/classes/androidx/fragment/R$string.class new file mode 100644 index 0000000..c5e25ee Binary files /dev/null and b/Objects/bin/classes/androidx/fragment/R$string.class differ diff --git a/Objects/bin/classes/androidx/fragment/R$style.class b/Objects/bin/classes/androidx/fragment/R$style.class new file mode 100644 index 0000000..27b5eb6 Binary files /dev/null and b/Objects/bin/classes/androidx/fragment/R$style.class differ diff --git a/Objects/bin/classes/androidx/fragment/R$styleable.class b/Objects/bin/classes/androidx/fragment/R$styleable.class new file mode 100644 index 0000000..208b2d6 Binary files /dev/null and b/Objects/bin/classes/androidx/fragment/R$styleable.class differ diff --git a/Objects/bin/classes/androidx/fragment/R.class b/Objects/bin/classes/androidx/fragment/R.class new file mode 100644 index 0000000..1dc496a Binary files /dev/null and b/Objects/bin/classes/androidx/fragment/R.class differ diff --git a/Objects/bin/classes/androidx/media/R$anim.class b/Objects/bin/classes/androidx/media/R$anim.class new file mode 100644 index 0000000..5e622a3 Binary files /dev/null and b/Objects/bin/classes/androidx/media/R$anim.class differ diff --git a/Objects/bin/classes/androidx/media/R$attr.class b/Objects/bin/classes/androidx/media/R$attr.class new file mode 100644 index 0000000..661946f Binary files /dev/null and b/Objects/bin/classes/androidx/media/R$attr.class differ diff --git a/Objects/bin/classes/androidx/media/R$color.class b/Objects/bin/classes/androidx/media/R$color.class new file mode 100644 index 0000000..7530c3e Binary files /dev/null and b/Objects/bin/classes/androidx/media/R$color.class differ diff --git a/Objects/bin/classes/androidx/media/R$dimen.class b/Objects/bin/classes/androidx/media/R$dimen.class new file mode 100644 index 0000000..55fcf4e Binary files /dev/null and b/Objects/bin/classes/androidx/media/R$dimen.class differ diff --git a/Objects/bin/classes/androidx/media/R$drawable.class b/Objects/bin/classes/androidx/media/R$drawable.class new file mode 100644 index 0000000..453d3c0 Binary files /dev/null and b/Objects/bin/classes/androidx/media/R$drawable.class differ diff --git a/Objects/bin/classes/androidx/media/R$id.class b/Objects/bin/classes/androidx/media/R$id.class new file mode 100644 index 0000000..3bf54b3 Binary files /dev/null and b/Objects/bin/classes/androidx/media/R$id.class differ diff --git a/Objects/bin/classes/androidx/media/R$integer.class b/Objects/bin/classes/androidx/media/R$integer.class new file mode 100644 index 0000000..9820d1a Binary files /dev/null and b/Objects/bin/classes/androidx/media/R$integer.class differ diff --git a/Objects/bin/classes/androidx/media/R$layout.class b/Objects/bin/classes/androidx/media/R$layout.class new file mode 100644 index 0000000..e7be6cb Binary files /dev/null and b/Objects/bin/classes/androidx/media/R$layout.class differ diff --git a/Objects/bin/classes/androidx/media/R$mipmap.class b/Objects/bin/classes/androidx/media/R$mipmap.class new file mode 100644 index 0000000..98bf520 Binary files /dev/null and b/Objects/bin/classes/androidx/media/R$mipmap.class differ diff --git a/Objects/bin/classes/androidx/media/R$string.class b/Objects/bin/classes/androidx/media/R$string.class new file mode 100644 index 0000000..b5dd151 Binary files /dev/null and b/Objects/bin/classes/androidx/media/R$string.class differ diff --git a/Objects/bin/classes/androidx/media/R$style.class b/Objects/bin/classes/androidx/media/R$style.class new file mode 100644 index 0000000..cc67a5c Binary files /dev/null and b/Objects/bin/classes/androidx/media/R$style.class differ diff --git a/Objects/bin/classes/androidx/media/R$styleable.class b/Objects/bin/classes/androidx/media/R$styleable.class new file mode 100644 index 0000000..f69e11f Binary files /dev/null and b/Objects/bin/classes/androidx/media/R$styleable.class differ diff --git a/Objects/bin/classes/androidx/media/R.class b/Objects/bin/classes/androidx/media/R.class new file mode 100644 index 0000000..a564d25 Binary files /dev/null and b/Objects/bin/classes/androidx/media/R.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/R$anim.class b/Objects/bin/classes/b4a/rocklogster/R$anim.class new file mode 100644 index 0000000..4cd4a51 Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/R$anim.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/R$attr.class b/Objects/bin/classes/b4a/rocklogster/R$attr.class new file mode 100644 index 0000000..0e7fd85 Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/R$attr.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/R$color.class b/Objects/bin/classes/b4a/rocklogster/R$color.class new file mode 100644 index 0000000..a9f764f Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/R$color.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/R$dimen.class b/Objects/bin/classes/b4a/rocklogster/R$dimen.class new file mode 100644 index 0000000..27be31d Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/R$dimen.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/R$drawable.class b/Objects/bin/classes/b4a/rocklogster/R$drawable.class new file mode 100644 index 0000000..c4725e0 Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/R$drawable.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/R$id.class b/Objects/bin/classes/b4a/rocklogster/R$id.class new file mode 100644 index 0000000..d6f7f7c Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/R$id.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/R$integer.class b/Objects/bin/classes/b4a/rocklogster/R$integer.class new file mode 100644 index 0000000..7df92fd Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/R$integer.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/R$layout.class b/Objects/bin/classes/b4a/rocklogster/R$layout.class new file mode 100644 index 0000000..d6d365f Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/R$layout.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/R$mipmap.class b/Objects/bin/classes/b4a/rocklogster/R$mipmap.class new file mode 100644 index 0000000..199897c Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/R$mipmap.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/R$string.class b/Objects/bin/classes/b4a/rocklogster/R$string.class new file mode 100644 index 0000000..7b70ec0 Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/R$string.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/R$style.class b/Objects/bin/classes/b4a/rocklogster/R$style.class new file mode 100644 index 0000000..ae2f8b5 Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/R$style.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/R$styleable.class b/Objects/bin/classes/b4a/rocklogster/R$styleable.class new file mode 100644 index 0000000..84bf1b4 Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/R$styleable.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/R.class b/Objects/bin/classes/b4a/rocklogster/R.class new file mode 100644 index 0000000..c989b7d Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/R.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/designerscripts/LS_mapfrag.class b/Objects/bin/classes/b4a/rocklogster/designerscripts/LS_mapfrag.class new file mode 100644 index 0000000..b21dbdc Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/designerscripts/LS_mapfrag.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/designerscripts/LS_rockloggervisual.class b/Objects/bin/classes/b4a/rocklogster/designerscripts/LS_rockloggervisual.class new file mode 100644 index 0000000..588e0f6 Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/designerscripts/LS_rockloggervisual.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/main$1.class b/Objects/bin/classes/b4a/rocklogster/main$1.class new file mode 100644 index 0000000..9914e93 Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/main$1.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/main$B4AMenuItemsClickListener.class b/Objects/bin/classes/b4a/rocklogster/main$B4AMenuItemsClickListener.class new file mode 100644 index 0000000..850bb21 Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/main$B4AMenuItemsClickListener.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/main$HandleKeyDelayed.class b/Objects/bin/classes/b4a/rocklogster/main$HandleKeyDelayed.class new file mode 100644 index 0000000..7a80619 Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/main$HandleKeyDelayed.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/main$ResumableSub_Activity_Resume.class b/Objects/bin/classes/b4a/rocklogster/main$ResumableSub_Activity_Resume.class new file mode 100644 index 0000000..357e6bc Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/main$ResumableSub_Activity_Resume.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/main$ResumableSub_Panel_down.class b/Objects/bin/classes/b4a/rocklogster/main$ResumableSub_Panel_down.class new file mode 100644 index 0000000..e2a63a3 Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/main$ResumableSub_Panel_down.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/main$ResumableSub_Panel_up.class b/Objects/bin/classes/b4a/rocklogster/main$ResumableSub_Panel_up.class new file mode 100644 index 0000000..f23c220 Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/main$ResumableSub_Panel_up.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/main$ResumeMessage.class b/Objects/bin/classes/b4a/rocklogster/main$ResumeMessage.class new file mode 100644 index 0000000..007f88e Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/main$ResumeMessage.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/main$WaitForLayout.class b/Objects/bin/classes/b4a/rocklogster/main$WaitForLayout.class new file mode 100644 index 0000000..7ffd2ce Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/main$WaitForLayout.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/main$_loggedentry.class b/Objects/bin/classes/b4a/rocklogster/main$_loggedentry.class new file mode 100644 index 0000000..ab72cc5 Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/main$_loggedentry.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/main.class b/Objects/bin/classes/b4a/rocklogster/main.class new file mode 100644 index 0000000..c470c8e Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/main.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/mapmod$1.class b/Objects/bin/classes/b4a/rocklogster/mapmod$1.class new file mode 100644 index 0000000..56e7725 Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/mapmod$1.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/mapmod$B4AMenuItemsClickListener.class b/Objects/bin/classes/b4a/rocklogster/mapmod$B4AMenuItemsClickListener.class new file mode 100644 index 0000000..5bde35f Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/mapmod$B4AMenuItemsClickListener.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/mapmod$HandleKeyDelayed.class b/Objects/bin/classes/b4a/rocklogster/mapmod$HandleKeyDelayed.class new file mode 100644 index 0000000..558d6cd Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/mapmod$HandleKeyDelayed.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/mapmod$ResumableSub_Activity_Create.class b/Objects/bin/classes/b4a/rocklogster/mapmod$ResumableSub_Activity_Create.class new file mode 100644 index 0000000..9aa2e6a Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/mapmod$ResumableSub_Activity_Create.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/mapmod$ResumableSub_matchingsub.class b/Objects/bin/classes/b4a/rocklogster/mapmod$ResumableSub_matchingsub.class new file mode 100644 index 0000000..adab373 Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/mapmod$ResumableSub_matchingsub.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/mapmod$ResumeMessage.class b/Objects/bin/classes/b4a/rocklogster/mapmod$ResumeMessage.class new file mode 100644 index 0000000..dd99354 Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/mapmod$ResumeMessage.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/mapmod$WaitForLayout.class b/Objects/bin/classes/b4a/rocklogster/mapmod$WaitForLayout.class new file mode 100644 index 0000000..0a82f2f Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/mapmod$WaitForLayout.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/mapmod.class b/Objects/bin/classes/b4a/rocklogster/mapmod.class new file mode 100644 index 0000000..630e154 Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/mapmod.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/starter$1.class b/Objects/bin/classes/b4a/rocklogster/starter$1.class new file mode 100644 index 0000000..580ac07 Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/starter$1.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/starter$2.class b/Objects/bin/classes/b4a/rocklogster/starter$2.class new file mode 100644 index 0000000..23d2f69 Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/starter$2.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/starter$starter_BR.class b/Objects/bin/classes/b4a/rocklogster/starter$starter_BR.class new file mode 100644 index 0000000..0822e74 Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/starter$starter_BR.class differ diff --git a/Objects/bin/classes/b4a/rocklogster/starter.class b/Objects/bin/classes/b4a/rocklogster/starter.class new file mode 100644 index 0000000..24713ed Binary files /dev/null and b/Objects/bin/classes/b4a/rocklogster/starter.class differ diff --git a/Objects/bin/classes/com/google/android/gms/base/R$anim.class b/Objects/bin/classes/com/google/android/gms/base/R$anim.class new file mode 100644 index 0000000..32a9948 Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/base/R$anim.class differ diff --git a/Objects/bin/classes/com/google/android/gms/base/R$attr.class b/Objects/bin/classes/com/google/android/gms/base/R$attr.class new file mode 100644 index 0000000..2f721fe Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/base/R$attr.class differ diff --git a/Objects/bin/classes/com/google/android/gms/base/R$color.class b/Objects/bin/classes/com/google/android/gms/base/R$color.class new file mode 100644 index 0000000..33be663 Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/base/R$color.class differ diff --git a/Objects/bin/classes/com/google/android/gms/base/R$dimen.class b/Objects/bin/classes/com/google/android/gms/base/R$dimen.class new file mode 100644 index 0000000..c879035 Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/base/R$dimen.class differ diff --git a/Objects/bin/classes/com/google/android/gms/base/R$drawable.class b/Objects/bin/classes/com/google/android/gms/base/R$drawable.class new file mode 100644 index 0000000..7990c86 Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/base/R$drawable.class differ diff --git a/Objects/bin/classes/com/google/android/gms/base/R$id.class b/Objects/bin/classes/com/google/android/gms/base/R$id.class new file mode 100644 index 0000000..7471a1e Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/base/R$id.class differ diff --git a/Objects/bin/classes/com/google/android/gms/base/R$integer.class b/Objects/bin/classes/com/google/android/gms/base/R$integer.class new file mode 100644 index 0000000..394cbd2 Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/base/R$integer.class differ diff --git a/Objects/bin/classes/com/google/android/gms/base/R$layout.class b/Objects/bin/classes/com/google/android/gms/base/R$layout.class new file mode 100644 index 0000000..a404d1c Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/base/R$layout.class differ diff --git a/Objects/bin/classes/com/google/android/gms/base/R$mipmap.class b/Objects/bin/classes/com/google/android/gms/base/R$mipmap.class new file mode 100644 index 0000000..d4d8618 Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/base/R$mipmap.class differ diff --git a/Objects/bin/classes/com/google/android/gms/base/R$string.class b/Objects/bin/classes/com/google/android/gms/base/R$string.class new file mode 100644 index 0000000..aea2103 Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/base/R$string.class differ diff --git a/Objects/bin/classes/com/google/android/gms/base/R$style.class b/Objects/bin/classes/com/google/android/gms/base/R$style.class new file mode 100644 index 0000000..e7f73bd Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/base/R$style.class differ diff --git a/Objects/bin/classes/com/google/android/gms/base/R$styleable.class b/Objects/bin/classes/com/google/android/gms/base/R$styleable.class new file mode 100644 index 0000000..b5aa2b6 Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/base/R$styleable.class differ diff --git a/Objects/bin/classes/com/google/android/gms/base/R.class b/Objects/bin/classes/com/google/android/gms/base/R.class new file mode 100644 index 0000000..6813177 Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/base/R.class differ diff --git a/Objects/bin/classes/com/google/android/gms/common/R$anim.class b/Objects/bin/classes/com/google/android/gms/common/R$anim.class new file mode 100644 index 0000000..2d0c0e0 Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/common/R$anim.class differ diff --git a/Objects/bin/classes/com/google/android/gms/common/R$attr.class b/Objects/bin/classes/com/google/android/gms/common/R$attr.class new file mode 100644 index 0000000..167267d Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/common/R$attr.class differ diff --git a/Objects/bin/classes/com/google/android/gms/common/R$color.class b/Objects/bin/classes/com/google/android/gms/common/R$color.class new file mode 100644 index 0000000..fa00400 Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/common/R$color.class differ diff --git a/Objects/bin/classes/com/google/android/gms/common/R$dimen.class b/Objects/bin/classes/com/google/android/gms/common/R$dimen.class new file mode 100644 index 0000000..7515cac Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/common/R$dimen.class differ diff --git a/Objects/bin/classes/com/google/android/gms/common/R$drawable.class b/Objects/bin/classes/com/google/android/gms/common/R$drawable.class new file mode 100644 index 0000000..d9b0e27 Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/common/R$drawable.class differ diff --git a/Objects/bin/classes/com/google/android/gms/common/R$id.class b/Objects/bin/classes/com/google/android/gms/common/R$id.class new file mode 100644 index 0000000..9bcf6df Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/common/R$id.class differ diff --git a/Objects/bin/classes/com/google/android/gms/common/R$integer.class b/Objects/bin/classes/com/google/android/gms/common/R$integer.class new file mode 100644 index 0000000..6380ea6 Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/common/R$integer.class differ diff --git a/Objects/bin/classes/com/google/android/gms/common/R$layout.class b/Objects/bin/classes/com/google/android/gms/common/R$layout.class new file mode 100644 index 0000000..f25ac7b Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/common/R$layout.class differ diff --git a/Objects/bin/classes/com/google/android/gms/common/R$mipmap.class b/Objects/bin/classes/com/google/android/gms/common/R$mipmap.class new file mode 100644 index 0000000..429bc7d Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/common/R$mipmap.class differ diff --git a/Objects/bin/classes/com/google/android/gms/common/R$string.class b/Objects/bin/classes/com/google/android/gms/common/R$string.class new file mode 100644 index 0000000..7cde79a Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/common/R$string.class differ diff --git a/Objects/bin/classes/com/google/android/gms/common/R$style.class b/Objects/bin/classes/com/google/android/gms/common/R$style.class new file mode 100644 index 0000000..739f479 Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/common/R$style.class differ diff --git a/Objects/bin/classes/com/google/android/gms/common/R$styleable.class b/Objects/bin/classes/com/google/android/gms/common/R$styleable.class new file mode 100644 index 0000000..3d67580 Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/common/R$styleable.class differ diff --git a/Objects/bin/classes/com/google/android/gms/common/R.class b/Objects/bin/classes/com/google/android/gms/common/R.class new file mode 100644 index 0000000..43daf4e Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/common/R.class differ diff --git a/Objects/bin/classes/com/google/android/gms/maps/R$anim.class b/Objects/bin/classes/com/google/android/gms/maps/R$anim.class new file mode 100644 index 0000000..a01e149 Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/maps/R$anim.class differ diff --git a/Objects/bin/classes/com/google/android/gms/maps/R$attr.class b/Objects/bin/classes/com/google/android/gms/maps/R$attr.class new file mode 100644 index 0000000..96bf556 Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/maps/R$attr.class differ diff --git a/Objects/bin/classes/com/google/android/gms/maps/R$color.class b/Objects/bin/classes/com/google/android/gms/maps/R$color.class new file mode 100644 index 0000000..5c1fdc9 Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/maps/R$color.class differ diff --git a/Objects/bin/classes/com/google/android/gms/maps/R$dimen.class b/Objects/bin/classes/com/google/android/gms/maps/R$dimen.class new file mode 100644 index 0000000..df588a9 Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/maps/R$dimen.class differ diff --git a/Objects/bin/classes/com/google/android/gms/maps/R$drawable.class b/Objects/bin/classes/com/google/android/gms/maps/R$drawable.class new file mode 100644 index 0000000..5b6894a Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/maps/R$drawable.class differ diff --git a/Objects/bin/classes/com/google/android/gms/maps/R$id.class b/Objects/bin/classes/com/google/android/gms/maps/R$id.class new file mode 100644 index 0000000..4dc1522 Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/maps/R$id.class differ diff --git a/Objects/bin/classes/com/google/android/gms/maps/R$integer.class b/Objects/bin/classes/com/google/android/gms/maps/R$integer.class new file mode 100644 index 0000000..1ce8c87 Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/maps/R$integer.class differ diff --git a/Objects/bin/classes/com/google/android/gms/maps/R$layout.class b/Objects/bin/classes/com/google/android/gms/maps/R$layout.class new file mode 100644 index 0000000..6773e70 Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/maps/R$layout.class differ diff --git a/Objects/bin/classes/com/google/android/gms/maps/R$mipmap.class b/Objects/bin/classes/com/google/android/gms/maps/R$mipmap.class new file mode 100644 index 0000000..bd12236 Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/maps/R$mipmap.class differ diff --git a/Objects/bin/classes/com/google/android/gms/maps/R$string.class b/Objects/bin/classes/com/google/android/gms/maps/R$string.class new file mode 100644 index 0000000..4f0b556 Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/maps/R$string.class differ diff --git a/Objects/bin/classes/com/google/android/gms/maps/R$style.class b/Objects/bin/classes/com/google/android/gms/maps/R$style.class new file mode 100644 index 0000000..b6f877c Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/maps/R$style.class differ diff --git a/Objects/bin/classes/com/google/android/gms/maps/R$styleable.class b/Objects/bin/classes/com/google/android/gms/maps/R$styleable.class new file mode 100644 index 0000000..102ce0e Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/maps/R$styleable.class differ diff --git a/Objects/bin/classes/com/google/android/gms/maps/R.class b/Objects/bin/classes/com/google/android/gms/maps/R.class new file mode 100644 index 0000000..09c2011 Binary files /dev/null and b/Objects/bin/classes/com/google/android/gms/maps/R.class differ diff --git a/Objects/bin/temp.ap_ b/Objects/bin/temp.ap_ new file mode 100644 index 0000000..4e79116 Binary files /dev/null and b/Objects/bin/temp.ap_ differ diff --git a/Objects/classes.dex b/Objects/classes.dex new file mode 100644 index 0000000..896d971 Binary files /dev/null and b/Objects/classes.dex differ diff --git a/Objects/gen/androidx/coordinatorlayout/R.java b/Objects/gen/androidx/coordinatorlayout/R.java new file mode 100644 index 0000000..3289d09 --- /dev/null +++ b/Objects/gen/androidx/coordinatorlayout/R.java @@ -0,0 +1,2150 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package androidx.coordinatorlayout; + +public final class R { + public static final class anim { + public static final int fragment_close_enter=0x7f050000; + public static final int fragment_close_exit=0x7f050001; + public static final int fragment_fade_enter=0x7f050002; + public static final int fragment_fade_exit=0x7f050003; + public static final int fragment_fast_out_extra_slow_in=0x7f050004; + public static final int fragment_open_enter=0x7f050005; + public static final int fragment_open_exit=0x7f050006; + } + public static final class attr { + /** Alpha multiplier applied to the base color. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alpha=0x7f010027; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int ambientEnabled=0x7f010017; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
standard0
wide1
icon_only2
+ */ + public static final int buttonSize=0x7f010003; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraBearing=0x7f010007; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraMaxZoomPreference=0x7f010019; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraMinZoomPreference=0x7f010018; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraTargetLat=0x7f010008; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraTargetLng=0x7f010009; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraTilt=0x7f01000a; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraZoom=0x7f01000b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int circleCrop=0x7f010002; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
dark0
light1
auto2
+ */ + public static final int colorScheme=0x7f010004; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int coordinatorLayoutStyle=0x7f01001e; + /** The reference to the font file to be used. This should be a file in the res/font folder + and should therefore have an R reference value. E.g. @font/myfont +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int font=0x7f01002f; + /** The authority of the Font Provider to be used for the request. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderAuthority=0x7f010028; + /** The sets of hashes for the certificates the provider should be signed with. This is + used to verify the identity of the provider, and is only required if the provider is not + part of the system image. This value may point to one list or a list of lists, where each + individual list represents one collection of signature hashes. Refer to your font provider's + documentation for these values. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fontProviderCerts=0x7f01002b; + /** The strategy to be used when fetching font data from a font provider in XML layouts. + This attribute is ignored when the resource is loaded from code, as it is equivalent to the + choice of API between {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and + {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} + (async). +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0 The blocking font fetch works as follows. + First, check the local cache, then if the requested font is not cached, request the + font from the provider and wait until it is finished. You can change the length of + the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the + default typeface will be used instead.
async1 The async font fetch works as follows. + First, check the local cache, then if the requeted font is not cached, trigger a + request the font and continue with layout inflation. Once the font fetch succeeds, the + target text view will be refreshed with the downloaded font data. The + fontProviderFetchTimeout will be ignored if async loading is specified.
+ */ + public static final int fontProviderFetchStrategy=0x7f01002c; + /** The length of the timeout during fetching. +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1 A special value for the timeout. In this case, the blocking font fetching will not + timeout and wait until a reply is received from the font provider.
+ */ + public static final int fontProviderFetchTimeout=0x7f01002d; + /** The package for the Font Provider to be used for the request. This is used to verify + the identity of the provider. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderPackage=0x7f010029; + /** The query to be sent over to the provider. Refer to your font provider's documentation + on the format of this string. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderQuery=0x7f01002a; + /** The style of the given font file. This will be used when the font is being loaded into + the font stack and will override any style information in the font's header tables. If + unspecified, the value in the font's header tables will be used. +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ */ + public static final int fontStyle=0x7f01002e; + /** The variation settings to be applied to the font. The string should be in the following + format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be + used, or the font used does not support variation settings, this attribute needs not be + specified. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontVariationSettings=0x7f010031; + /** The weight of the given font file. This will be used when the font is being loaded into + the font stack and will override any weight information in the font's header tables. Must + be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most + common values are 400 for regular weight and 700 for bold weight. If unspecified, the value + in the font's header tables will be used. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontWeight=0x7f010030; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int imageAspectRatio=0x7f010001; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
adjust_width1
adjust_height2
+ */ + public static final int imageAspectRatioAdjust=0x7f010000; + /** A reference to an array of integers representing the + locations of horizontal keylines in dp from the starting edge. + Child views can refer to these keylines for alignment using + layout_keyline="index" where index is a 0-based index into + this array. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keylines=0x7f01001f; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsNorthEastLatitude=0x7f01001c; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsNorthEastLongitude=0x7f01001d; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsSouthWestLatitude=0x7f01001a; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsSouthWestLongitude=0x7f01001b; + /** The id of an anchor view that this view should position relative to. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_anchor=0x7f010022; + /** Specifies how an object should position relative to an anchor, on both the X and Y axes, + within its parent's bounds. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+ */ + public static final int layout_anchorGravity=0x7f010024; + /** The class name of a Behavior class defining special runtime behavior + for this child view. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_behavior=0x7f010021; + /** Specifies how this view dodges the inset edges of the CoordinatorLayout. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0 Don't dodge any edges
top0x30 Dodge the top inset edge.
bottom0x50 Dodge the bottom inset edge.
left0x03 Dodge the left inset edge.
right0x05 Dodge the right inset edge.
start0x00800003 Dodge the start inset edge.
end0x00800005 Dodge the end inset edge.
all0x77 Dodge all the inset edges.
+ */ + public static final int layout_dodgeInsetEdges=0x7f010026; + /** Specifies how this view insets the CoordinatorLayout and make some other views + dodge it. +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0 Don't inset.
top0x30 Inset the top edge.
bottom0x50 Inset the bottom edge.
left0x03 Inset the left edge.
right0x05 Inset the right edge.
start0x00800003 Inset the start edge.
end0x00800005 Inset the end edge.
+ */ + public static final int layout_insetEdge=0x7f010025; + /** The index of a keyline this view should position relative to. + android:layout_gravity will affect how the view aligns to the + specified keyline. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_keyline=0x7f010023; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int liteMode=0x7f01000c; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
none0
normal1
satellite2
terrain3
hybrid4
+ */ + public static final int mapType=0x7f010006; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. + */ + public static final int scopeUris=0x7f010005; + /** Drawable to display behind the status bar when the view is set to draw behind it. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int statusBarBackground=0x7f010020; + /** The index of the font in the tcc font file. If the font file referenced is not in the + tcc format, this attribute needs not be specified. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int ttcIndex=0x7f010032; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiCompass=0x7f01000d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiMapToolbar=0x7f010016; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiRotateGestures=0x7f01000e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiScrollGestures=0x7f01000f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiScrollGesturesDuringRotateOrZoom=0x7f010010; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiTiltGestures=0x7f010011; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiZoomControls=0x7f010012; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiZoomGestures=0x7f010013; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useViewLifecycle=0x7f010014; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int zOrderOnTop=0x7f010015; + } + public static final class color { + public static final int common_google_signin_btn_text_dark=0x7f08000f; + public static final int common_google_signin_btn_text_dark_default=0x7f080000; + public static final int common_google_signin_btn_text_dark_disabled=0x7f080001; + public static final int common_google_signin_btn_text_dark_focused=0x7f080002; + public static final int common_google_signin_btn_text_dark_pressed=0x7f080003; + public static final int common_google_signin_btn_text_light=0x7f080010; + public static final int common_google_signin_btn_text_light_default=0x7f080004; + public static final int common_google_signin_btn_text_light_disabled=0x7f080005; + public static final int common_google_signin_btn_text_light_focused=0x7f080006; + public static final int common_google_signin_btn_text_light_pressed=0x7f080007; + public static final int common_google_signin_btn_tint=0x7f080011; + public static final int notification_action_color_filter=0x7f08000b; + public static final int notification_icon_bg_color=0x7f08000c; + public static final int notification_material_background_media_default_color=0x7f080008; + public static final int primary_text_default_material_dark=0x7f080009; + public static final int ripple_material_light=0x7f08000d; + public static final int secondary_text_default_material_dark=0x7f08000a; + public static final int secondary_text_default_material_light=0x7f08000e; + } + public static final class dimen { + public static final int compat_button_inset_horizontal_material=0x7f0b0008; + public static final int compat_button_inset_vertical_material=0x7f0b0009; + public static final int compat_button_padding_horizontal_material=0x7f0b000a; + public static final int compat_button_padding_vertical_material=0x7f0b000b; + public static final int compat_control_corner_material=0x7f0b000c; + public static final int compat_notification_large_icon_max_height=0x7f0b000d; + public static final int compat_notification_large_icon_max_width=0x7f0b000e; + public static final int notification_action_icon_size=0x7f0b000f; + public static final int notification_action_text_size=0x7f0b0010; + public static final int notification_big_circle_margin=0x7f0b0011; + public static final int notification_content_margin_start=0x7f0b0005; + public static final int notification_large_icon_height=0x7f0b0012; + public static final int notification_large_icon_width=0x7f0b0013; + public static final int notification_main_column_padding_top=0x7f0b0006; + public static final int notification_media_narrow_margin=0x7f0b0007; + public static final int notification_right_icon_size=0x7f0b0014; + public static final int notification_right_side_padding_top=0x7f0b0004; + public static final int notification_small_icon_background_padding=0x7f0b0015; + public static final int notification_small_icon_size_as_large=0x7f0b0016; + public static final int notification_subtext_size=0x7f0b0017; + public static final int notification_top_pad=0x7f0b0018; + public static final int notification_top_pad_large_text=0x7f0b0019; + public static final int subtitle_corner_radius=0x7f0b0000; + public static final int subtitle_outline_width=0x7f0b0001; + public static final int subtitle_shadow_offset=0x7f0b0002; + public static final int subtitle_shadow_radius=0x7f0b0003; + } + public static final class drawable { + public static final int common_full_open_on_phone=0x7f020000; + public static final int common_google_signin_btn_icon_dark=0x7f020001; + public static final int common_google_signin_btn_icon_dark_focused=0x7f020002; + public static final int common_google_signin_btn_icon_dark_normal=0x7f020003; + public static final int common_google_signin_btn_icon_dark_normal_background=0x7f020004; + public static final int common_google_signin_btn_icon_disabled=0x7f020005; + public static final int common_google_signin_btn_icon_light=0x7f020006; + public static final int common_google_signin_btn_icon_light_focused=0x7f020007; + public static final int common_google_signin_btn_icon_light_normal=0x7f020008; + public static final int common_google_signin_btn_icon_light_normal_background=0x7f020009; + public static final int common_google_signin_btn_text_dark=0x7f02000a; + public static final int common_google_signin_btn_text_dark_focused=0x7f02000b; + public static final int common_google_signin_btn_text_dark_normal=0x7f02000c; + public static final int common_google_signin_btn_text_dark_normal_background=0x7f02000d; + public static final int common_google_signin_btn_text_disabled=0x7f02000e; + public static final int common_google_signin_btn_text_light=0x7f02000f; + public static final int common_google_signin_btn_text_light_focused=0x7f020010; + public static final int common_google_signin_btn_text_light_normal=0x7f020011; + public static final int common_google_signin_btn_text_light_normal_background=0x7f020012; + public static final int googleg_disabled_color_18=0x7f020013; + public static final int googleg_standard_color_18=0x7f020014; + public static final int icon=0x7f020015; + public static final int notification_action_background=0x7f020016; + public static final int notification_bg=0x7f020017; + public static final int notification_bg_low=0x7f020018; + public static final int notification_bg_low_normal=0x7f020019; + public static final int notification_bg_low_pressed=0x7f02001a; + public static final int notification_bg_normal=0x7f02001b; + public static final int notification_bg_normal_pressed=0x7f02001c; + public static final int notification_icon_background=0x7f02001d; + public static final int notification_template_icon_bg=0x7f020020; + public static final int notification_template_icon_low_bg=0x7f020021; + public static final int notification_tile_bg=0x7f02001e; + public static final int notify_panel_notification_icon_bg=0x7f02001f; + } + public static final class id { + public static final int accessibility_action_clickable_span=0x7f090002; + public static final int accessibility_custom_action_0=0x7f090003; + public static final int accessibility_custom_action_1=0x7f090004; + public static final int accessibility_custom_action_10=0x7f090005; + public static final int accessibility_custom_action_11=0x7f090006; + public static final int accessibility_custom_action_12=0x7f090007; + public static final int accessibility_custom_action_13=0x7f090008; + public static final int accessibility_custom_action_14=0x7f090009; + public static final int accessibility_custom_action_15=0x7f09000a; + public static final int accessibility_custom_action_16=0x7f09000b; + public static final int accessibility_custom_action_17=0x7f09000c; + public static final int accessibility_custom_action_18=0x7f09000d; + public static final int accessibility_custom_action_19=0x7f09000e; + public static final int accessibility_custom_action_2=0x7f09000f; + public static final int accessibility_custom_action_20=0x7f090010; + public static final int accessibility_custom_action_21=0x7f090011; + public static final int accessibility_custom_action_22=0x7f090012; + public static final int accessibility_custom_action_23=0x7f090013; + public static final int accessibility_custom_action_24=0x7f090014; + public static final int accessibility_custom_action_25=0x7f090015; + public static final int accessibility_custom_action_26=0x7f090016; + public static final int accessibility_custom_action_27=0x7f090017; + public static final int accessibility_custom_action_28=0x7f090018; + public static final int accessibility_custom_action_29=0x7f090019; + public static final int accessibility_custom_action_3=0x7f09001a; + public static final int accessibility_custom_action_30=0x7f09001b; + public static final int accessibility_custom_action_31=0x7f09001c; + public static final int accessibility_custom_action_4=0x7f09001d; + public static final int accessibility_custom_action_5=0x7f09001e; + public static final int accessibility_custom_action_6=0x7f09001f; + public static final int accessibility_custom_action_7=0x7f090020; + public static final int accessibility_custom_action_8=0x7f090021; + public static final int accessibility_custom_action_9=0x7f090022; + public static final int action0=0x7f090054; + public static final int action_container=0x7f090051; + public static final int action_divider=0x7f090058; + public static final int action_image=0x7f090052; + public static final int action_text=0x7f090053; + public static final int actions=0x7f090062; + public static final int adjust_height=0x7f090030; + public static final int adjust_width=0x7f090031; + public static final int all=0x7f09004b; + public static final int async=0x7f09004c; + public static final int auto=0x7f090036; + public static final int blocking=0x7f09004d; + public static final int bottom=0x7f09003d; + public static final int cancel_action=0x7f090055; + public static final int center=0x7f09003e; + public static final int center_horizontal=0x7f09003f; + public static final int center_vertical=0x7f090040; + public static final int chronometer=0x7f09005d; + public static final int clip_horizontal=0x7f090041; + public static final int clip_vertical=0x7f090042; + public static final int dark=0x7f090037; + public static final int dialog_button=0x7f090050; + public static final int end=0x7f090043; + public static final int end_padder=0x7f090064; + public static final int fill=0x7f090044; + public static final int fill_horizontal=0x7f090045; + public static final int fill_vertical=0x7f090046; + public static final int forever=0x7f09004e; + public static final int fragment_container_view_tag=0x7f090000; + public static final int hybrid=0x7f090039; + public static final int icon=0x7f09005f; + public static final int icon_group=0x7f090063; + public static final int icon_only=0x7f090033; + public static final int info=0x7f09005e; + public static final int italic=0x7f09004f; + public static final int left=0x7f090047; + public static final int light=0x7f090038; + public static final int line1=0x7f090023; + public static final int line3=0x7f090024; + public static final int media_actions=0x7f090057; + public static final int none=0x7f090032; + public static final int normal=0x7f09003a; + public static final int notification_background=0x7f090061; + public static final int notification_main_column=0x7f09005a; + public static final int notification_main_column_container=0x7f090059; + public static final int right=0x7f090048; + public static final int right_icon=0x7f090060; + public static final int right_side=0x7f09005b; + public static final int satellite=0x7f09003b; + public static final int standard=0x7f090034; + public static final int start=0x7f090049; + public static final int status_bar_latest_event_content=0x7f090056; + public static final int tag_accessibility_actions=0x7f090025; + public static final int tag_accessibility_clickable_spans=0x7f090026; + public static final int tag_accessibility_heading=0x7f090027; + public static final int tag_accessibility_pane_title=0x7f090028; + public static final int tag_screen_reader_focusable=0x7f090029; + public static final int tag_transition_group=0x7f09002a; + public static final int tag_unhandled_key_event_manager=0x7f09002b; + public static final int tag_unhandled_key_listeners=0x7f09002c; + public static final int terrain=0x7f09003c; + public static final int text=0x7f09002d; + public static final int text2=0x7f09002e; + public static final int time=0x7f09005c; + public static final int title=0x7f09002f; + public static final int top=0x7f09004a; + public static final int visible_removing_fragment_view_tag=0x7f090001; + public static final int wide=0x7f090035; + } + public static final class integer { + public static final int cancel_button_image_alpha=0x7f060001; + public static final int google_play_services_version=0x7f060000; + public static final int status_bar_notification_info_maxnum=0x7f060002; + } + public static final class layout { + public static final int custom_dialog=0x7f040000; + public static final int notification_action=0x7f040001; + public static final int notification_action_tombstone=0x7f040002; + public static final int notification_media_action=0x7f040003; + public static final int notification_media_cancel_action=0x7f040004; + public static final int notification_template_big_media=0x7f040005; + public static final int notification_template_big_media_custom=0x7f040006; + public static final int notification_template_big_media_narrow=0x7f040007; + public static final int notification_template_big_media_narrow_custom=0x7f040008; + public static final int notification_template_custom_big=0x7f040009; + public static final int notification_template_icon_group=0x7f04000a; + public static final int notification_template_lines_media=0x7f04000b; + public static final int notification_template_media=0x7f04000c; + public static final int notification_template_media_custom=0x7f04000d; + public static final int notification_template_part_chronometer=0x7f04000e; + public static final int notification_template_part_time=0x7f04000f; + } + public static final class mipmap { + public static final int background=0x7f030000; + public static final int foreground=0x7f030001; + public static final int ic_launcher=0x7f030002; + } + public static final class string { + public static final int common_google_play_services_enable_button=0x7f070001; + public static final int common_google_play_services_enable_text=0x7f070002; + public static final int common_google_play_services_enable_title=0x7f070003; + public static final int common_google_play_services_install_button=0x7f070004; + public static final int common_google_play_services_install_text=0x7f070005; + public static final int common_google_play_services_install_title=0x7f070006; + public static final int common_google_play_services_notification_channel_name=0x7f070007; + public static final int common_google_play_services_notification_ticker=0x7f070008; + public static final int common_google_play_services_unknown_issue=0x7f070000; + public static final int common_google_play_services_unsupported_text=0x7f070009; + public static final int common_google_play_services_update_button=0x7f07000a; + public static final int common_google_play_services_update_text=0x7f07000b; + public static final int common_google_play_services_update_title=0x7f07000c; + public static final int common_google_play_services_updating_text=0x7f07000d; + public static final int common_google_play_services_wear_update_text=0x7f07000e; + public static final int common_open_on_phone=0x7f07000f; + public static final int common_signin_button_text=0x7f070010; + public static final int common_signin_button_text_long=0x7f070011; + public static final int status_bar_notification_info_overflow=0x7f070012; + } + public static final class style { + public static final int DarkTheme=0x7f0a000d; + public static final int TextAppearance_Compat_Notification=0x7f0a0006; + public static final int TextAppearance_Compat_Notification_Info=0x7f0a0007; + public static final int TextAppearance_Compat_Notification_Info_Media=0x7f0a0001; + public static final int TextAppearance_Compat_Notification_Line2=0x7f0a000c; + public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0a0005; + public static final int TextAppearance_Compat_Notification_Media=0x7f0a0002; + public static final int TextAppearance_Compat_Notification_Time=0x7f0a0008; + public static final int TextAppearance_Compat_Notification_Time_Media=0x7f0a0003; + public static final int TextAppearance_Compat_Notification_Title=0x7f0a0009; + public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0a0004; + public static final int Widget_Compat_NotificationActionContainer=0x7f0a000a; + public static final int Widget_Compat_NotificationActionText=0x7f0a000b; + public static final int Widget_Support_CoordinatorLayout=0x7f0a0000; + } + public static final class styleable { + /** Attributes that can be used with a ColorStateListItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ColorStateListItem_alpha b4a.rocklogster:alpha} Alpha multiplier applied to the base color.
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_android_color android:color} Base color for this state.
+ @see #ColorStateListItem_alpha + @see #ColorStateListItem_android_alpha + @see #ColorStateListItem_android_color + */ + public static final int[] ColorStateListItem = { + 0x010101a5, 0x0101031f, 0x7f010027 + }; + /** +

+ @attr description + Alpha multiplier applied to the base color. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:alpha + */ + public static final int ColorStateListItem_alpha = 2; + /** +

This symbol is the offset where the {@link android.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha = 1; + /** +

+ @attr description + Base color for this state. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#color}. + @attr name android:color + */ + public static final int ColorStateListItem_android_color = 0; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines b4a.rocklogster:keylines} A reference to an array of integers representing the + locations of horizontal keylines in dp from the starting edge.
{@link #CoordinatorLayout_statusBarBackground b4a.rocklogster:statusBarBackground} Drawable to display behind the status bar when the view is set to draw behind it.
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f01001f, 0x7f010020 + }; + /** +

+ @attr description + A reference to an array of integers representing the + locations of horizontal keylines in dp from the starting edge. + Child views can refer to these keylines for alignment using + layout_keyline="index" where index is a 0-based index into + this array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:keylines + */ + public static final int CoordinatorLayout_keylines = 0; + /** +

+ @attr description + Drawable to display behind the status bar when the view is set to draw behind it. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This is a private symbol. + @attr name b4a.rocklogster:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_Layout. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor b4a.rocklogster:layout_anchor} The id of an anchor view that this view should position relative to.
{@link #CoordinatorLayout_Layout_layout_anchorGravity b4a.rocklogster:layout_anchorGravity} Specifies how an object should position relative to an anchor, on both the X and Y axes, + within its parent's bounds.
{@link #CoordinatorLayout_Layout_layout_behavior b4a.rocklogster:layout_behavior} The class name of a Behavior class defining special runtime behavior + for this child view.
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges b4a.rocklogster:layout_dodgeInsetEdges} Specifies how this view dodges the inset edges of the CoordinatorLayout.
{@link #CoordinatorLayout_Layout_layout_insetEdge b4a.rocklogster:layout_insetEdge} Specifies how this view insets the CoordinatorLayout and make some other views + dodge it.
{@link #CoordinatorLayout_Layout_layout_keyline b4a.rocklogster:layout_keyline} The index of a keyline this view should position relative to.
+ @see #CoordinatorLayout_Layout_android_layout_gravity + @see #CoordinatorLayout_Layout_layout_anchor + @see #CoordinatorLayout_Layout_layout_anchorGravity + @see #CoordinatorLayout_Layout_layout_behavior + @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + @see #CoordinatorLayout_Layout_layout_insetEdge + @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout = { + 0x010100b3, 0x7f010021, 0x7f010022, 0x7f010023, + 0x7f010024, 0x7f010025, 0x7f010026 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + /** +

+ @attr description + The id of an anchor view that this view should position relative to. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor = 2; + /** +

+ @attr description + Specifies how an object should position relative to an anchor, on both the X and Y axes, + within its parent's bounds. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+

This is a private symbol. + @attr name b4a.rocklogster:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; + /** +

+ @attr description + The class name of a Behavior class defining special runtime behavior + for this child view. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior = 1; + /** +

+ @attr description + Specifies how this view dodges the inset edges of the CoordinatorLayout. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0 Don't dodge any edges
top0x30 Dodge the top inset edge.
bottom0x50 Dodge the bottom inset edge.
left0x03 Dodge the left inset edge.
right0x05 Dodge the right inset edge.
start0x00800003 Dodge the start inset edge.
end0x00800005 Dodge the end inset edge.
all0x77 Dodge all the inset edges.
+

This is a private symbol. + @attr name b4a.rocklogster:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; + /** +

+ @attr description + Specifies how this view insets the CoordinatorLayout and make some other views + dodge it. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0 Don't inset.
top0x30 Inset the top edge.
bottom0x50 Inset the bottom edge.
left0x03 Inset the left edge.
right0x05 Inset the right edge.
start0x00800003 Inset the start edge.
end0x00800005 Inset the end edge.
+

This is a private symbol. + @attr name b4a.rocklogster:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + /** +

+ @attr description + The index of a keyline this view should position relative to. + android:layout_gravity will affect how the view aligns to the + specified keyline. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline = 3; + /** Attributes that can be used with a FontFamily. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #FontFamily_fontProviderAuthority b4a.rocklogster:fontProviderAuthority} The authority of the Font Provider to be used for the request.
{@link #FontFamily_fontProviderCerts b4a.rocklogster:fontProviderCerts} The sets of hashes for the certificates the provider should be signed with.
{@link #FontFamily_fontProviderFetchStrategy b4a.rocklogster:fontProviderFetchStrategy} The strategy to be used when fetching font data from a font provider in XML layouts.
{@link #FontFamily_fontProviderFetchTimeout b4a.rocklogster:fontProviderFetchTimeout} The length of the timeout during fetching.
{@link #FontFamily_fontProviderPackage b4a.rocklogster:fontProviderPackage} The package for the Font Provider to be used for the request.
{@link #FontFamily_fontProviderQuery b4a.rocklogster:fontProviderQuery} The query to be sent over to the provider.
+ @see #FontFamily_fontProviderAuthority + @see #FontFamily_fontProviderCerts + @see #FontFamily_fontProviderFetchStrategy + @see #FontFamily_fontProviderFetchTimeout + @see #FontFamily_fontProviderPackage + @see #FontFamily_fontProviderQuery + */ + public static final int[] FontFamily = { + 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, + 0x7f01002c, 0x7f01002d + }; + /** +

+ @attr description + The authority of the Font Provider to be used for the request. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority = 0; + /** +

+ @attr description + The sets of hashes for the certificates the provider should be signed with. This is + used to verify the identity of the provider, and is only required if the provider is not + part of the system image. This value may point to one list or a list of lists, where each + individual list represents one collection of signature hashes. Refer to your font provider's + documentation for these values. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts = 3; + /** +

+ @attr description + The strategy to be used when fetching font data from a font provider in XML layouts. + This attribute is ignored when the resource is loaded from code, as it is equivalent to the + choice of API between {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and + {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} + (async). + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0 The blocking font fetch works as follows. + First, check the local cache, then if the requested font is not cached, request the + font from the provider and wait until it is finished. You can change the length of + the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the + default typeface will be used instead.
async1 The async font fetch works as follows. + First, check the local cache, then if the requeted font is not cached, trigger a + request the font and continue with layout inflation. Once the font fetch succeeds, the + target text view will be refreshed with the downloaded font data. The + fontProviderFetchTimeout will be ignored if async loading is specified.
+

This is a private symbol. + @attr name b4a.rocklogster:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy = 4; + /** +

+ @attr description + The length of the timeout during fetching. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1 A special value for the timeout. In this case, the blocking font fetching will not + timeout and wait until a reply is received from the font provider.
+

This is a private symbol. + @attr name b4a.rocklogster:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout = 5; + /** +

+ @attr description + The package for the Font Provider to be used for the request. This is used to verify + the identity of the provider. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage = 1; + /** +

+ @attr description + The query to be sent over to the provider. Refer to your font provider's documentation + on the format of this string. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery = 2; + /** Attributes that can be used with a FontFamilyFont. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #FontFamilyFont_android_font android:font}
{@link #FontFamilyFont_android_fontStyle android:fontStyle} References to the framework attrs
{@link #FontFamilyFont_android_fontVariationSettings android:fontVariationSettings}
{@link #FontFamilyFont_android_fontWeight android:fontWeight}
{@link #FontFamilyFont_android_ttcIndex android:ttcIndex}
{@link #FontFamilyFont_font b4a.rocklogster:font} The reference to the font file to be used.
{@link #FontFamilyFont_fontStyle b4a.rocklogster:fontStyle} The style of the given font file.
{@link #FontFamilyFont_fontVariationSettings b4a.rocklogster:fontVariationSettings} The variation settings to be applied to the font.
{@link #FontFamilyFont_fontWeight b4a.rocklogster:fontWeight} The weight of the given font file.
{@link #FontFamilyFont_ttcIndex b4a.rocklogster:ttcIndex} The index of the font in the tcc font file.
+ @see #FontFamilyFont_android_font + @see #FontFamilyFont_android_fontStyle + @see #FontFamilyFont_android_fontVariationSettings + @see #FontFamilyFont_android_fontWeight + @see #FontFamilyFont_android_ttcIndex + @see #FontFamilyFont_font + @see #FontFamilyFont_fontStyle + @see #FontFamilyFont_fontVariationSettings + @see #FontFamilyFont_fontWeight + @see #FontFamilyFont_ttcIndex + */ + public static final int[] FontFamilyFont = { + 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, + 0x01010570, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010032 + }; + /** +

This symbol is the offset where the {@link android.R.attr#font} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:font + */ + public static final int FontFamilyFont_android_font = 0; + /** +

+ @attr description + References to the framework attrs +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fontStyle}. + @attr name android:fontStyle + */ + public static final int FontFamilyFont_android_fontStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#fontVariationSettings} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:fontVariationSettings + */ + public static final int FontFamilyFont_android_fontVariationSettings = 4; + /** +

This symbol is the offset where the {@link android.R.attr#fontWeight} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:fontWeight + */ + public static final int FontFamilyFont_android_fontWeight = 1; + /** +

This symbol is the offset where the {@link android.R.attr#ttcIndex} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:ttcIndex + */ + public static final int FontFamilyFont_android_ttcIndex = 3; + /** +

+ @attr description + The reference to the font file to be used. This should be a file in the res/font folder + and should therefore have an R reference value. E.g. @font/myfont + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:font + */ + public static final int FontFamilyFont_font = 6; + /** +

+ @attr description + The style of the given font file. This will be used when the font is being loaded into + the font stack and will override any style information in the font's header tables. If + unspecified, the value in the font's header tables will be used. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+

This is a private symbol. + @attr name b4a.rocklogster:fontStyle + */ + public static final int FontFamilyFont_fontStyle = 5; + /** +

+ @attr description + The variation settings to be applied to the font. The string should be in the following + format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be + used, or the font used does not support variation settings, this attribute needs not be + specified. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontVariationSettings + */ + public static final int FontFamilyFont_fontVariationSettings = 8; + /** +

+ @attr description + The weight of the given font file. This will be used when the font is being loaded into + the font stack and will override any weight information in the font's header tables. Must + be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most + common values are 400 for regular weight and 700 for bold weight. If unspecified, the value + in the font's header tables will be used. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontWeight + */ + public static final int FontFamilyFont_fontWeight = 7; + /** +

+ @attr description + The index of the font in the tcc font file. If the font file referenced is not in the + tcc format, this attribute needs not be specified. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:ttcIndex + */ + public static final int FontFamilyFont_ttcIndex = 9; + /** Attributes that can be used with a Fragment. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #Fragment_android_id android:id}
{@link #Fragment_android_name android:name}
{@link #Fragment_android_tag android:tag}
+ @see #Fragment_android_id + @see #Fragment_android_name + @see #Fragment_android_tag + */ + public static final int[] Fragment = { + 0x01010003, 0x010100d0, 0x010100d1 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #Fragment} array. + @attr name android:id + */ + public static final int Fragment_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#name} + attribute's value can be found in the {@link #Fragment} array. + @attr name android:name + */ + public static final int Fragment_android_name = 0; + /** +

This symbol is the offset where the {@link android.R.attr#tag} + attribute's value can be found in the {@link #Fragment} array. + @attr name android:tag + */ + public static final int Fragment_android_tag = 2; + /** Attributes that can be used with a FragmentContainerView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #FragmentContainerView_android_name android:name}
{@link #FragmentContainerView_android_tag android:tag}
+ @see #FragmentContainerView_android_name + @see #FragmentContainerView_android_tag + */ + public static final int[] FragmentContainerView = { + 0x01010003, 0x010100d1 + }; + /** +

This symbol is the offset where the {@link android.R.attr#name} + attribute's value can be found in the {@link #FragmentContainerView} array. + @attr name android:name + */ + public static final int FragmentContainerView_android_name = 0; + /** +

This symbol is the offset where the {@link android.R.attr#tag} + attribute's value can be found in the {@link #FragmentContainerView} array. + @attr name android:tag + */ + public static final int FragmentContainerView_android_tag = 1; + /** Attributes that can be used with a GradientColor. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + +
AttributeDescription
{@link #GradientColor_android_centerColor android:centerColor} Optional center color.
{@link #GradientColor_android_centerX android:centerX} Only applied to SweepGradient / RadialGradient + X coordinate of the center of the gradient within the path.
{@link #GradientColor_android_centerY android:centerY} Y coordinate of the center of the gradient within the path.
{@link #GradientColor_android_endColor android:endColor} End color of the gradient.
{@link #GradientColor_android_endX android:endX} X coordinate of the end point origin of the gradient.
{@link #GradientColor_android_endY android:endY} Y coordinate of the end point of the gradient within the shape.
{@link #GradientColor_android_gradientRadius android:gradientRadius} Only applied to RadialGradient + Radius of the gradient, used only with radial gradient.
{@link #GradientColor_android_startColor android:startColor} Start color of the gradient.
{@link #GradientColor_android_startX android:startX} LinearGradient specific + X coordinate of the start point origin of the gradient.
{@link #GradientColor_android_startY android:startY} Y coordinate of the start point of the gradient within the shape.
{@link #GradientColor_android_tileMode android:tileMode} Defines the tile mode of the gradient.
{@link #GradientColor_android_type android:type} Type of gradient.
+ @see #GradientColor_android_centerColor + @see #GradientColor_android_centerX + @see #GradientColor_android_centerY + @see #GradientColor_android_endColor + @see #GradientColor_android_endX + @see #GradientColor_android_endY + @see #GradientColor_android_gradientRadius + @see #GradientColor_android_startColor + @see #GradientColor_android_startX + @see #GradientColor_android_startY + @see #GradientColor_android_tileMode + @see #GradientColor_android_type + */ + public static final int[] GradientColor = { + 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, + 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, + 0x01010510, 0x01010511, 0x01010512, 0x01010513 + }; + /** +

+ @attr description + Optional center color. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerColor}. + @attr name android:centerColor + */ + public static final int GradientColor_android_centerColor = 7; + /** +

+ @attr description + Only applied to SweepGradient / RadialGradient + X coordinate of the center of the gradient within the path. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerX}. + @attr name android:centerX + */ + public static final int GradientColor_android_centerX = 3; + /** +

+ @attr description + Y coordinate of the center of the gradient within the path. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerY}. + @attr name android:centerY + */ + public static final int GradientColor_android_centerY = 4; + /** +

+ @attr description + End color of the gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#endColor}. + @attr name android:endColor + */ + public static final int GradientColor_android_endColor = 1; + /** +

+ @attr description + X coordinate of the end point origin of the gradient. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#endX}. + @attr name android:endX + */ + public static final int GradientColor_android_endX = 10; + /** +

+ @attr description + Y coordinate of the end point of the gradient within the shape. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#endY}. + @attr name android:endY + */ + public static final int GradientColor_android_endY = 11; + /** +

+ @attr description + Only applied to RadialGradient + Radius of the gradient, used only with radial gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#gradientRadius}. + @attr name android:gradientRadius + */ + public static final int GradientColor_android_gradientRadius = 5; + /** +

+ @attr description + Start color of the gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startColor}. + @attr name android:startColor + */ + public static final int GradientColor_android_startColor = 0; + /** +

+ @attr description + LinearGradient specific + X coordinate of the start point origin of the gradient. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startX}. + @attr name android:startX + */ + public static final int GradientColor_android_startX = 8; + /** +

+ @attr description + Y coordinate of the start point of the gradient within the shape. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startY}. + @attr name android:startY + */ + public static final int GradientColor_android_startY = 9; + /** +

+ @attr description + Defines the tile mode of the gradient. SweepGradient doesn't support tiling. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#tileMode}. + @attr name android:tileMode + */ + public static final int GradientColor_android_tileMode = 6; + /** +

+ @attr description + Type of gradient. The default type is linear. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#type}. + @attr name android:type + */ + public static final int GradientColor_android_type = 2; + /** Attributes that can be used with a GradientColorItem. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #GradientColorItem_android_color android:color} The current color for the offset inside the gradient.
{@link #GradientColorItem_android_offset android:offset} The offset (or ratio) of this current color item inside the gradient.
+ @see #GradientColorItem_android_color + @see #GradientColorItem_android_offset + */ + public static final int[] GradientColorItem = { + 0x010101a5, 0x01010514 + }; + /** +

+ @attr description + The current color for the offset inside the gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#color}. + @attr name android:color + */ + public static final int GradientColorItem_android_color = 0; + /** +

+ @attr description + The offset (or ratio) of this current color item inside the gradient. + The value is only meaningful when it is between 0 and 1. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#offset}. + @attr name android:offset + */ + public static final int GradientColorItem_android_offset = 1; + /** Attributes that can be used with a LoadingImageView. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #LoadingImageView_circleCrop b4a.rocklogster:circleCrop}
{@link #LoadingImageView_imageAspectRatio b4a.rocklogster:imageAspectRatio}
{@link #LoadingImageView_imageAspectRatioAdjust b4a.rocklogster:imageAspectRatioAdjust}
+ @see #LoadingImageView_circleCrop + @see #LoadingImageView_imageAspectRatio + @see #LoadingImageView_imageAspectRatioAdjust + */ + public static final int[] LoadingImageView = { + 0x7f010000, 0x7f010001, 0x7f010002 + }; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#circleCrop} + attribute's value can be found in the {@link #LoadingImageView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:circleCrop + */ + public static final int LoadingImageView_circleCrop = 2; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#imageAspectRatio} + attribute's value can be found in the {@link #LoadingImageView} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:imageAspectRatio + */ + public static final int LoadingImageView_imageAspectRatio = 1; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#imageAspectRatioAdjust} + attribute's value can be found in the {@link #LoadingImageView} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
adjust_width1
adjust_height2
+ @attr name b4a.rocklogster:imageAspectRatioAdjust + */ + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + /** Attributes that can be used with a MapAttrs. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MapAttrs_ambientEnabled b4a.rocklogster:ambientEnabled}
{@link #MapAttrs_cameraBearing b4a.rocklogster:cameraBearing}
{@link #MapAttrs_cameraMaxZoomPreference b4a.rocklogster:cameraMaxZoomPreference}
{@link #MapAttrs_cameraMinZoomPreference b4a.rocklogster:cameraMinZoomPreference}
{@link #MapAttrs_cameraTargetLat b4a.rocklogster:cameraTargetLat}
{@link #MapAttrs_cameraTargetLng b4a.rocklogster:cameraTargetLng}
{@link #MapAttrs_cameraTilt b4a.rocklogster:cameraTilt}
{@link #MapAttrs_cameraZoom b4a.rocklogster:cameraZoom}
{@link #MapAttrs_latLngBoundsNorthEastLatitude b4a.rocklogster:latLngBoundsNorthEastLatitude}
{@link #MapAttrs_latLngBoundsNorthEastLongitude b4a.rocklogster:latLngBoundsNorthEastLongitude}
{@link #MapAttrs_latLngBoundsSouthWestLatitude b4a.rocklogster:latLngBoundsSouthWestLatitude}
{@link #MapAttrs_latLngBoundsSouthWestLongitude b4a.rocklogster:latLngBoundsSouthWestLongitude}
{@link #MapAttrs_liteMode b4a.rocklogster:liteMode}
{@link #MapAttrs_mapType b4a.rocklogster:mapType}
{@link #MapAttrs_uiCompass b4a.rocklogster:uiCompass}
{@link #MapAttrs_uiMapToolbar b4a.rocklogster:uiMapToolbar}
{@link #MapAttrs_uiRotateGestures b4a.rocklogster:uiRotateGestures}
{@link #MapAttrs_uiScrollGestures b4a.rocklogster:uiScrollGestures}
{@link #MapAttrs_uiScrollGesturesDuringRotateOrZoom b4a.rocklogster:uiScrollGesturesDuringRotateOrZoom}
{@link #MapAttrs_uiTiltGestures b4a.rocklogster:uiTiltGestures}
{@link #MapAttrs_uiZoomControls b4a.rocklogster:uiZoomControls}
{@link #MapAttrs_uiZoomGestures b4a.rocklogster:uiZoomGestures}
{@link #MapAttrs_useViewLifecycle b4a.rocklogster:useViewLifecycle}
{@link #MapAttrs_zOrderOnTop b4a.rocklogster:zOrderOnTop}
+ @see #MapAttrs_ambientEnabled + @see #MapAttrs_cameraBearing + @see #MapAttrs_cameraMaxZoomPreference + @see #MapAttrs_cameraMinZoomPreference + @see #MapAttrs_cameraTargetLat + @see #MapAttrs_cameraTargetLng + @see #MapAttrs_cameraTilt + @see #MapAttrs_cameraZoom + @see #MapAttrs_latLngBoundsNorthEastLatitude + @see #MapAttrs_latLngBoundsNorthEastLongitude + @see #MapAttrs_latLngBoundsSouthWestLatitude + @see #MapAttrs_latLngBoundsSouthWestLongitude + @see #MapAttrs_liteMode + @see #MapAttrs_mapType + @see #MapAttrs_uiCompass + @see #MapAttrs_uiMapToolbar + @see #MapAttrs_uiRotateGestures + @see #MapAttrs_uiScrollGestures + @see #MapAttrs_uiScrollGesturesDuringRotateOrZoom + @see #MapAttrs_uiTiltGestures + @see #MapAttrs_uiZoomControls + @see #MapAttrs_uiZoomGestures + @see #MapAttrs_useViewLifecycle + @see #MapAttrs_zOrderOnTop + */ + public static final int[] MapAttrs = { + 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, + 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, + 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, + 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, + 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, + 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d + }; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#ambientEnabled} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:ambientEnabled + */ + public static final int MapAttrs_ambientEnabled = 17; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraBearing} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraBearing + */ + public static final int MapAttrs_cameraBearing = 1; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraMaxZoomPreference} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraMaxZoomPreference + */ + public static final int MapAttrs_cameraMaxZoomPreference = 19; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraMinZoomPreference} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraMinZoomPreference + */ + public static final int MapAttrs_cameraMinZoomPreference = 18; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraTargetLat} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraTargetLat + */ + public static final int MapAttrs_cameraTargetLat = 2; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraTargetLng} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraTargetLng + */ + public static final int MapAttrs_cameraTargetLng = 3; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraTilt} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraTilt + */ + public static final int MapAttrs_cameraTilt = 4; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraZoom} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraZoom + */ + public static final int MapAttrs_cameraZoom = 5; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsNorthEastLatitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsNorthEastLatitude + */ + public static final int MapAttrs_latLngBoundsNorthEastLatitude = 22; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsNorthEastLongitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsNorthEastLongitude + */ + public static final int MapAttrs_latLngBoundsNorthEastLongitude = 23; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsSouthWestLatitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsSouthWestLatitude + */ + public static final int MapAttrs_latLngBoundsSouthWestLatitude = 20; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsSouthWestLongitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsSouthWestLongitude + */ + public static final int MapAttrs_latLngBoundsSouthWestLongitude = 21; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#liteMode} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:liteMode + */ + public static final int MapAttrs_liteMode = 6; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#mapType} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
none0
normal1
satellite2
terrain3
hybrid4
+ @attr name b4a.rocklogster:mapType + */ + public static final int MapAttrs_mapType = 0; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiCompass} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiCompass + */ + public static final int MapAttrs_uiCompass = 7; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiMapToolbar} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiMapToolbar + */ + public static final int MapAttrs_uiMapToolbar = 16; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiRotateGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiRotateGestures + */ + public static final int MapAttrs_uiRotateGestures = 8; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiScrollGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiScrollGestures + */ + public static final int MapAttrs_uiScrollGestures = 9; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiScrollGesturesDuringRotateOrZoom} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiScrollGesturesDuringRotateOrZoom + */ + public static final int MapAttrs_uiScrollGesturesDuringRotateOrZoom = 10; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiTiltGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiTiltGestures + */ + public static final int MapAttrs_uiTiltGestures = 11; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiZoomControls} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiZoomControls + */ + public static final int MapAttrs_uiZoomControls = 12; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiZoomGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiZoomGestures + */ + public static final int MapAttrs_uiZoomGestures = 13; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#useViewLifecycle} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:useViewLifecycle + */ + public static final int MapAttrs_useViewLifecycle = 14; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#zOrderOnTop} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:zOrderOnTop + */ + public static final int MapAttrs_zOrderOnTop = 15; + /** Attributes that can be used with a SignInButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SignInButton_buttonSize b4a.rocklogster:buttonSize}
{@link #SignInButton_colorScheme b4a.rocklogster:colorScheme}
{@link #SignInButton_scopeUris b4a.rocklogster:scopeUris}
+ @see #SignInButton_buttonSize + @see #SignInButton_colorScheme + @see #SignInButton_scopeUris + */ + public static final int[] SignInButton = { + 0x7f010003, 0x7f010004, 0x7f010005 + }; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#buttonSize} + attribute's value can be found in the {@link #SignInButton} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
standard0
wide1
icon_only2
+ @attr name b4a.rocklogster:buttonSize + */ + public static final int SignInButton_buttonSize = 0; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#colorScheme} + attribute's value can be found in the {@link #SignInButton} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
dark0
light1
auto2
+ @attr name b4a.rocklogster:colorScheme + */ + public static final int SignInButton_colorScheme = 1; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#scopeUris} + attribute's value can be found in the {@link #SignInButton} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. + @attr name b4a.rocklogster:scopeUris + */ + public static final int SignInButton_scopeUris = 2; + }; +} diff --git a/Objects/gen/androidx/core/R.java b/Objects/gen/androidx/core/R.java new file mode 100644 index 0000000..fd49566 --- /dev/null +++ b/Objects/gen/androidx/core/R.java @@ -0,0 +1,2150 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package androidx.core; + +public final class R { + public static final class anim { + public static final int fragment_close_enter=0x7f050000; + public static final int fragment_close_exit=0x7f050001; + public static final int fragment_fade_enter=0x7f050002; + public static final int fragment_fade_exit=0x7f050003; + public static final int fragment_fast_out_extra_slow_in=0x7f050004; + public static final int fragment_open_enter=0x7f050005; + public static final int fragment_open_exit=0x7f050006; + } + public static final class attr { + /** Alpha multiplier applied to the base color. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alpha=0x7f010027; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int ambientEnabled=0x7f010017; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
standard0
wide1
icon_only2
+ */ + public static final int buttonSize=0x7f010003; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraBearing=0x7f010007; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraMaxZoomPreference=0x7f010019; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraMinZoomPreference=0x7f010018; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraTargetLat=0x7f010008; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraTargetLng=0x7f010009; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraTilt=0x7f01000a; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraZoom=0x7f01000b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int circleCrop=0x7f010002; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
dark0
light1
auto2
+ */ + public static final int colorScheme=0x7f010004; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int coordinatorLayoutStyle=0x7f01001e; + /** The reference to the font file to be used. This should be a file in the res/font folder + and should therefore have an R reference value. E.g. @font/myfont +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int font=0x7f01002f; + /** The authority of the Font Provider to be used for the request. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderAuthority=0x7f010028; + /** The sets of hashes for the certificates the provider should be signed with. This is + used to verify the identity of the provider, and is only required if the provider is not + part of the system image. This value may point to one list or a list of lists, where each + individual list represents one collection of signature hashes. Refer to your font provider's + documentation for these values. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fontProviderCerts=0x7f01002b; + /** The strategy to be used when fetching font data from a font provider in XML layouts. + This attribute is ignored when the resource is loaded from code, as it is equivalent to the + choice of API between {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and + {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} + (async). +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0 The blocking font fetch works as follows. + First, check the local cache, then if the requested font is not cached, request the + font from the provider and wait until it is finished. You can change the length of + the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the + default typeface will be used instead.
async1 The async font fetch works as follows. + First, check the local cache, then if the requeted font is not cached, trigger a + request the font and continue with layout inflation. Once the font fetch succeeds, the + target text view will be refreshed with the downloaded font data. The + fontProviderFetchTimeout will be ignored if async loading is specified.
+ */ + public static final int fontProviderFetchStrategy=0x7f01002c; + /** The length of the timeout during fetching. +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1 A special value for the timeout. In this case, the blocking font fetching will not + timeout and wait until a reply is received from the font provider.
+ */ + public static final int fontProviderFetchTimeout=0x7f01002d; + /** The package for the Font Provider to be used for the request. This is used to verify + the identity of the provider. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderPackage=0x7f010029; + /** The query to be sent over to the provider. Refer to your font provider's documentation + on the format of this string. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderQuery=0x7f01002a; + /** The style of the given font file. This will be used when the font is being loaded into + the font stack and will override any style information in the font's header tables. If + unspecified, the value in the font's header tables will be used. +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ */ + public static final int fontStyle=0x7f01002e; + /** The variation settings to be applied to the font. The string should be in the following + format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be + used, or the font used does not support variation settings, this attribute needs not be + specified. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontVariationSettings=0x7f010031; + /** The weight of the given font file. This will be used when the font is being loaded into + the font stack and will override any weight information in the font's header tables. Must + be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most + common values are 400 for regular weight and 700 for bold weight. If unspecified, the value + in the font's header tables will be used. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontWeight=0x7f010030; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int imageAspectRatio=0x7f010001; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
adjust_width1
adjust_height2
+ */ + public static final int imageAspectRatioAdjust=0x7f010000; + /** A reference to an array of integers representing the + locations of horizontal keylines in dp from the starting edge. + Child views can refer to these keylines for alignment using + layout_keyline="index" where index is a 0-based index into + this array. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keylines=0x7f01001f; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsNorthEastLatitude=0x7f01001c; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsNorthEastLongitude=0x7f01001d; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsSouthWestLatitude=0x7f01001a; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsSouthWestLongitude=0x7f01001b; + /** The id of an anchor view that this view should position relative to. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_anchor=0x7f010022; + /** Specifies how an object should position relative to an anchor, on both the X and Y axes, + within its parent's bounds. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+ */ + public static final int layout_anchorGravity=0x7f010024; + /** The class name of a Behavior class defining special runtime behavior + for this child view. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_behavior=0x7f010021; + /** Specifies how this view dodges the inset edges of the CoordinatorLayout. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0 Don't dodge any edges
top0x30 Dodge the top inset edge.
bottom0x50 Dodge the bottom inset edge.
left0x03 Dodge the left inset edge.
right0x05 Dodge the right inset edge.
start0x00800003 Dodge the start inset edge.
end0x00800005 Dodge the end inset edge.
all0x77 Dodge all the inset edges.
+ */ + public static final int layout_dodgeInsetEdges=0x7f010026; + /** Specifies how this view insets the CoordinatorLayout and make some other views + dodge it. +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0 Don't inset.
top0x30 Inset the top edge.
bottom0x50 Inset the bottom edge.
left0x03 Inset the left edge.
right0x05 Inset the right edge.
start0x00800003 Inset the start edge.
end0x00800005 Inset the end edge.
+ */ + public static final int layout_insetEdge=0x7f010025; + /** The index of a keyline this view should position relative to. + android:layout_gravity will affect how the view aligns to the + specified keyline. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_keyline=0x7f010023; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int liteMode=0x7f01000c; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
none0
normal1
satellite2
terrain3
hybrid4
+ */ + public static final int mapType=0x7f010006; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. + */ + public static final int scopeUris=0x7f010005; + /** Drawable to display behind the status bar when the view is set to draw behind it. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int statusBarBackground=0x7f010020; + /** The index of the font in the tcc font file. If the font file referenced is not in the + tcc format, this attribute needs not be specified. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int ttcIndex=0x7f010032; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiCompass=0x7f01000d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiMapToolbar=0x7f010016; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiRotateGestures=0x7f01000e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiScrollGestures=0x7f01000f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiScrollGesturesDuringRotateOrZoom=0x7f010010; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiTiltGestures=0x7f010011; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiZoomControls=0x7f010012; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiZoomGestures=0x7f010013; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useViewLifecycle=0x7f010014; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int zOrderOnTop=0x7f010015; + } + public static final class color { + public static final int common_google_signin_btn_text_dark=0x7f08000f; + public static final int common_google_signin_btn_text_dark_default=0x7f080000; + public static final int common_google_signin_btn_text_dark_disabled=0x7f080001; + public static final int common_google_signin_btn_text_dark_focused=0x7f080002; + public static final int common_google_signin_btn_text_dark_pressed=0x7f080003; + public static final int common_google_signin_btn_text_light=0x7f080010; + public static final int common_google_signin_btn_text_light_default=0x7f080004; + public static final int common_google_signin_btn_text_light_disabled=0x7f080005; + public static final int common_google_signin_btn_text_light_focused=0x7f080006; + public static final int common_google_signin_btn_text_light_pressed=0x7f080007; + public static final int common_google_signin_btn_tint=0x7f080011; + public static final int notification_action_color_filter=0x7f08000b; + public static final int notification_icon_bg_color=0x7f08000c; + public static final int notification_material_background_media_default_color=0x7f080008; + public static final int primary_text_default_material_dark=0x7f080009; + public static final int ripple_material_light=0x7f08000d; + public static final int secondary_text_default_material_dark=0x7f08000a; + public static final int secondary_text_default_material_light=0x7f08000e; + } + public static final class dimen { + public static final int compat_button_inset_horizontal_material=0x7f0b0008; + public static final int compat_button_inset_vertical_material=0x7f0b0009; + public static final int compat_button_padding_horizontal_material=0x7f0b000a; + public static final int compat_button_padding_vertical_material=0x7f0b000b; + public static final int compat_control_corner_material=0x7f0b000c; + public static final int compat_notification_large_icon_max_height=0x7f0b000d; + public static final int compat_notification_large_icon_max_width=0x7f0b000e; + public static final int notification_action_icon_size=0x7f0b000f; + public static final int notification_action_text_size=0x7f0b0010; + public static final int notification_big_circle_margin=0x7f0b0011; + public static final int notification_content_margin_start=0x7f0b0005; + public static final int notification_large_icon_height=0x7f0b0012; + public static final int notification_large_icon_width=0x7f0b0013; + public static final int notification_main_column_padding_top=0x7f0b0006; + public static final int notification_media_narrow_margin=0x7f0b0007; + public static final int notification_right_icon_size=0x7f0b0014; + public static final int notification_right_side_padding_top=0x7f0b0004; + public static final int notification_small_icon_background_padding=0x7f0b0015; + public static final int notification_small_icon_size_as_large=0x7f0b0016; + public static final int notification_subtext_size=0x7f0b0017; + public static final int notification_top_pad=0x7f0b0018; + public static final int notification_top_pad_large_text=0x7f0b0019; + public static final int subtitle_corner_radius=0x7f0b0000; + public static final int subtitle_outline_width=0x7f0b0001; + public static final int subtitle_shadow_offset=0x7f0b0002; + public static final int subtitle_shadow_radius=0x7f0b0003; + } + public static final class drawable { + public static final int common_full_open_on_phone=0x7f020000; + public static final int common_google_signin_btn_icon_dark=0x7f020001; + public static final int common_google_signin_btn_icon_dark_focused=0x7f020002; + public static final int common_google_signin_btn_icon_dark_normal=0x7f020003; + public static final int common_google_signin_btn_icon_dark_normal_background=0x7f020004; + public static final int common_google_signin_btn_icon_disabled=0x7f020005; + public static final int common_google_signin_btn_icon_light=0x7f020006; + public static final int common_google_signin_btn_icon_light_focused=0x7f020007; + public static final int common_google_signin_btn_icon_light_normal=0x7f020008; + public static final int common_google_signin_btn_icon_light_normal_background=0x7f020009; + public static final int common_google_signin_btn_text_dark=0x7f02000a; + public static final int common_google_signin_btn_text_dark_focused=0x7f02000b; + public static final int common_google_signin_btn_text_dark_normal=0x7f02000c; + public static final int common_google_signin_btn_text_dark_normal_background=0x7f02000d; + public static final int common_google_signin_btn_text_disabled=0x7f02000e; + public static final int common_google_signin_btn_text_light=0x7f02000f; + public static final int common_google_signin_btn_text_light_focused=0x7f020010; + public static final int common_google_signin_btn_text_light_normal=0x7f020011; + public static final int common_google_signin_btn_text_light_normal_background=0x7f020012; + public static final int googleg_disabled_color_18=0x7f020013; + public static final int googleg_standard_color_18=0x7f020014; + public static final int icon=0x7f020015; + public static final int notification_action_background=0x7f020016; + public static final int notification_bg=0x7f020017; + public static final int notification_bg_low=0x7f020018; + public static final int notification_bg_low_normal=0x7f020019; + public static final int notification_bg_low_pressed=0x7f02001a; + public static final int notification_bg_normal=0x7f02001b; + public static final int notification_bg_normal_pressed=0x7f02001c; + public static final int notification_icon_background=0x7f02001d; + public static final int notification_template_icon_bg=0x7f020020; + public static final int notification_template_icon_low_bg=0x7f020021; + public static final int notification_tile_bg=0x7f02001e; + public static final int notify_panel_notification_icon_bg=0x7f02001f; + } + public static final class id { + public static final int accessibility_action_clickable_span=0x7f090002; + public static final int accessibility_custom_action_0=0x7f090003; + public static final int accessibility_custom_action_1=0x7f090004; + public static final int accessibility_custom_action_10=0x7f090005; + public static final int accessibility_custom_action_11=0x7f090006; + public static final int accessibility_custom_action_12=0x7f090007; + public static final int accessibility_custom_action_13=0x7f090008; + public static final int accessibility_custom_action_14=0x7f090009; + public static final int accessibility_custom_action_15=0x7f09000a; + public static final int accessibility_custom_action_16=0x7f09000b; + public static final int accessibility_custom_action_17=0x7f09000c; + public static final int accessibility_custom_action_18=0x7f09000d; + public static final int accessibility_custom_action_19=0x7f09000e; + public static final int accessibility_custom_action_2=0x7f09000f; + public static final int accessibility_custom_action_20=0x7f090010; + public static final int accessibility_custom_action_21=0x7f090011; + public static final int accessibility_custom_action_22=0x7f090012; + public static final int accessibility_custom_action_23=0x7f090013; + public static final int accessibility_custom_action_24=0x7f090014; + public static final int accessibility_custom_action_25=0x7f090015; + public static final int accessibility_custom_action_26=0x7f090016; + public static final int accessibility_custom_action_27=0x7f090017; + public static final int accessibility_custom_action_28=0x7f090018; + public static final int accessibility_custom_action_29=0x7f090019; + public static final int accessibility_custom_action_3=0x7f09001a; + public static final int accessibility_custom_action_30=0x7f09001b; + public static final int accessibility_custom_action_31=0x7f09001c; + public static final int accessibility_custom_action_4=0x7f09001d; + public static final int accessibility_custom_action_5=0x7f09001e; + public static final int accessibility_custom_action_6=0x7f09001f; + public static final int accessibility_custom_action_7=0x7f090020; + public static final int accessibility_custom_action_8=0x7f090021; + public static final int accessibility_custom_action_9=0x7f090022; + public static final int action0=0x7f090054; + public static final int action_container=0x7f090051; + public static final int action_divider=0x7f090058; + public static final int action_image=0x7f090052; + public static final int action_text=0x7f090053; + public static final int actions=0x7f090062; + public static final int adjust_height=0x7f090030; + public static final int adjust_width=0x7f090031; + public static final int all=0x7f09004b; + public static final int async=0x7f09004c; + public static final int auto=0x7f090036; + public static final int blocking=0x7f09004d; + public static final int bottom=0x7f09003d; + public static final int cancel_action=0x7f090055; + public static final int center=0x7f09003e; + public static final int center_horizontal=0x7f09003f; + public static final int center_vertical=0x7f090040; + public static final int chronometer=0x7f09005d; + public static final int clip_horizontal=0x7f090041; + public static final int clip_vertical=0x7f090042; + public static final int dark=0x7f090037; + public static final int dialog_button=0x7f090050; + public static final int end=0x7f090043; + public static final int end_padder=0x7f090064; + public static final int fill=0x7f090044; + public static final int fill_horizontal=0x7f090045; + public static final int fill_vertical=0x7f090046; + public static final int forever=0x7f09004e; + public static final int fragment_container_view_tag=0x7f090000; + public static final int hybrid=0x7f090039; + public static final int icon=0x7f09005f; + public static final int icon_group=0x7f090063; + public static final int icon_only=0x7f090033; + public static final int info=0x7f09005e; + public static final int italic=0x7f09004f; + public static final int left=0x7f090047; + public static final int light=0x7f090038; + public static final int line1=0x7f090023; + public static final int line3=0x7f090024; + public static final int media_actions=0x7f090057; + public static final int none=0x7f090032; + public static final int normal=0x7f09003a; + public static final int notification_background=0x7f090061; + public static final int notification_main_column=0x7f09005a; + public static final int notification_main_column_container=0x7f090059; + public static final int right=0x7f090048; + public static final int right_icon=0x7f090060; + public static final int right_side=0x7f09005b; + public static final int satellite=0x7f09003b; + public static final int standard=0x7f090034; + public static final int start=0x7f090049; + public static final int status_bar_latest_event_content=0x7f090056; + public static final int tag_accessibility_actions=0x7f090025; + public static final int tag_accessibility_clickable_spans=0x7f090026; + public static final int tag_accessibility_heading=0x7f090027; + public static final int tag_accessibility_pane_title=0x7f090028; + public static final int tag_screen_reader_focusable=0x7f090029; + public static final int tag_transition_group=0x7f09002a; + public static final int tag_unhandled_key_event_manager=0x7f09002b; + public static final int tag_unhandled_key_listeners=0x7f09002c; + public static final int terrain=0x7f09003c; + public static final int text=0x7f09002d; + public static final int text2=0x7f09002e; + public static final int time=0x7f09005c; + public static final int title=0x7f09002f; + public static final int top=0x7f09004a; + public static final int visible_removing_fragment_view_tag=0x7f090001; + public static final int wide=0x7f090035; + } + public static final class integer { + public static final int cancel_button_image_alpha=0x7f060001; + public static final int google_play_services_version=0x7f060000; + public static final int status_bar_notification_info_maxnum=0x7f060002; + } + public static final class layout { + public static final int custom_dialog=0x7f040000; + public static final int notification_action=0x7f040001; + public static final int notification_action_tombstone=0x7f040002; + public static final int notification_media_action=0x7f040003; + public static final int notification_media_cancel_action=0x7f040004; + public static final int notification_template_big_media=0x7f040005; + public static final int notification_template_big_media_custom=0x7f040006; + public static final int notification_template_big_media_narrow=0x7f040007; + public static final int notification_template_big_media_narrow_custom=0x7f040008; + public static final int notification_template_custom_big=0x7f040009; + public static final int notification_template_icon_group=0x7f04000a; + public static final int notification_template_lines_media=0x7f04000b; + public static final int notification_template_media=0x7f04000c; + public static final int notification_template_media_custom=0x7f04000d; + public static final int notification_template_part_chronometer=0x7f04000e; + public static final int notification_template_part_time=0x7f04000f; + } + public static final class mipmap { + public static final int background=0x7f030000; + public static final int foreground=0x7f030001; + public static final int ic_launcher=0x7f030002; + } + public static final class string { + public static final int common_google_play_services_enable_button=0x7f070001; + public static final int common_google_play_services_enable_text=0x7f070002; + public static final int common_google_play_services_enable_title=0x7f070003; + public static final int common_google_play_services_install_button=0x7f070004; + public static final int common_google_play_services_install_text=0x7f070005; + public static final int common_google_play_services_install_title=0x7f070006; + public static final int common_google_play_services_notification_channel_name=0x7f070007; + public static final int common_google_play_services_notification_ticker=0x7f070008; + public static final int common_google_play_services_unknown_issue=0x7f070000; + public static final int common_google_play_services_unsupported_text=0x7f070009; + public static final int common_google_play_services_update_button=0x7f07000a; + public static final int common_google_play_services_update_text=0x7f07000b; + public static final int common_google_play_services_update_title=0x7f07000c; + public static final int common_google_play_services_updating_text=0x7f07000d; + public static final int common_google_play_services_wear_update_text=0x7f07000e; + public static final int common_open_on_phone=0x7f07000f; + public static final int common_signin_button_text=0x7f070010; + public static final int common_signin_button_text_long=0x7f070011; + public static final int status_bar_notification_info_overflow=0x7f070012; + } + public static final class style { + public static final int DarkTheme=0x7f0a000d; + public static final int TextAppearance_Compat_Notification=0x7f0a0006; + public static final int TextAppearance_Compat_Notification_Info=0x7f0a0007; + public static final int TextAppearance_Compat_Notification_Info_Media=0x7f0a0001; + public static final int TextAppearance_Compat_Notification_Line2=0x7f0a000c; + public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0a0005; + public static final int TextAppearance_Compat_Notification_Media=0x7f0a0002; + public static final int TextAppearance_Compat_Notification_Time=0x7f0a0008; + public static final int TextAppearance_Compat_Notification_Time_Media=0x7f0a0003; + public static final int TextAppearance_Compat_Notification_Title=0x7f0a0009; + public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0a0004; + public static final int Widget_Compat_NotificationActionContainer=0x7f0a000a; + public static final int Widget_Compat_NotificationActionText=0x7f0a000b; + public static final int Widget_Support_CoordinatorLayout=0x7f0a0000; + } + public static final class styleable { + /** Attributes that can be used with a ColorStateListItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ColorStateListItem_alpha b4a.rocklogster:alpha} Alpha multiplier applied to the base color.
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_android_color android:color} Base color for this state.
+ @see #ColorStateListItem_alpha + @see #ColorStateListItem_android_alpha + @see #ColorStateListItem_android_color + */ + public static final int[] ColorStateListItem = { + 0x010101a5, 0x0101031f, 0x7f010027 + }; + /** +

+ @attr description + Alpha multiplier applied to the base color. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:alpha + */ + public static final int ColorStateListItem_alpha = 2; + /** +

This symbol is the offset where the {@link android.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha = 1; + /** +

+ @attr description + Base color for this state. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#color}. + @attr name android:color + */ + public static final int ColorStateListItem_android_color = 0; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines b4a.rocklogster:keylines} A reference to an array of integers representing the + locations of horizontal keylines in dp from the starting edge.
{@link #CoordinatorLayout_statusBarBackground b4a.rocklogster:statusBarBackground} Drawable to display behind the status bar when the view is set to draw behind it.
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f01001f, 0x7f010020 + }; + /** +

+ @attr description + A reference to an array of integers representing the + locations of horizontal keylines in dp from the starting edge. + Child views can refer to these keylines for alignment using + layout_keyline="index" where index is a 0-based index into + this array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:keylines + */ + public static final int CoordinatorLayout_keylines = 0; + /** +

+ @attr description + Drawable to display behind the status bar when the view is set to draw behind it. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This is a private symbol. + @attr name b4a.rocklogster:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_Layout. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor b4a.rocklogster:layout_anchor} The id of an anchor view that this view should position relative to.
{@link #CoordinatorLayout_Layout_layout_anchorGravity b4a.rocklogster:layout_anchorGravity} Specifies how an object should position relative to an anchor, on both the X and Y axes, + within its parent's bounds.
{@link #CoordinatorLayout_Layout_layout_behavior b4a.rocklogster:layout_behavior} The class name of a Behavior class defining special runtime behavior + for this child view.
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges b4a.rocklogster:layout_dodgeInsetEdges} Specifies how this view dodges the inset edges of the CoordinatorLayout.
{@link #CoordinatorLayout_Layout_layout_insetEdge b4a.rocklogster:layout_insetEdge} Specifies how this view insets the CoordinatorLayout and make some other views + dodge it.
{@link #CoordinatorLayout_Layout_layout_keyline b4a.rocklogster:layout_keyline} The index of a keyline this view should position relative to.
+ @see #CoordinatorLayout_Layout_android_layout_gravity + @see #CoordinatorLayout_Layout_layout_anchor + @see #CoordinatorLayout_Layout_layout_anchorGravity + @see #CoordinatorLayout_Layout_layout_behavior + @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + @see #CoordinatorLayout_Layout_layout_insetEdge + @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout = { + 0x010100b3, 0x7f010021, 0x7f010022, 0x7f010023, + 0x7f010024, 0x7f010025, 0x7f010026 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + /** +

+ @attr description + The id of an anchor view that this view should position relative to. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor = 2; + /** +

+ @attr description + Specifies how an object should position relative to an anchor, on both the X and Y axes, + within its parent's bounds. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+

This is a private symbol. + @attr name b4a.rocklogster:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; + /** +

+ @attr description + The class name of a Behavior class defining special runtime behavior + for this child view. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior = 1; + /** +

+ @attr description + Specifies how this view dodges the inset edges of the CoordinatorLayout. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0 Don't dodge any edges
top0x30 Dodge the top inset edge.
bottom0x50 Dodge the bottom inset edge.
left0x03 Dodge the left inset edge.
right0x05 Dodge the right inset edge.
start0x00800003 Dodge the start inset edge.
end0x00800005 Dodge the end inset edge.
all0x77 Dodge all the inset edges.
+

This is a private symbol. + @attr name b4a.rocklogster:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; + /** +

+ @attr description + Specifies how this view insets the CoordinatorLayout and make some other views + dodge it. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0 Don't inset.
top0x30 Inset the top edge.
bottom0x50 Inset the bottom edge.
left0x03 Inset the left edge.
right0x05 Inset the right edge.
start0x00800003 Inset the start edge.
end0x00800005 Inset the end edge.
+

This is a private symbol. + @attr name b4a.rocklogster:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + /** +

+ @attr description + The index of a keyline this view should position relative to. + android:layout_gravity will affect how the view aligns to the + specified keyline. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline = 3; + /** Attributes that can be used with a FontFamily. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #FontFamily_fontProviderAuthority b4a.rocklogster:fontProviderAuthority} The authority of the Font Provider to be used for the request.
{@link #FontFamily_fontProviderCerts b4a.rocklogster:fontProviderCerts} The sets of hashes for the certificates the provider should be signed with.
{@link #FontFamily_fontProviderFetchStrategy b4a.rocklogster:fontProviderFetchStrategy} The strategy to be used when fetching font data from a font provider in XML layouts.
{@link #FontFamily_fontProviderFetchTimeout b4a.rocklogster:fontProviderFetchTimeout} The length of the timeout during fetching.
{@link #FontFamily_fontProviderPackage b4a.rocklogster:fontProviderPackage} The package for the Font Provider to be used for the request.
{@link #FontFamily_fontProviderQuery b4a.rocklogster:fontProviderQuery} The query to be sent over to the provider.
+ @see #FontFamily_fontProviderAuthority + @see #FontFamily_fontProviderCerts + @see #FontFamily_fontProviderFetchStrategy + @see #FontFamily_fontProviderFetchTimeout + @see #FontFamily_fontProviderPackage + @see #FontFamily_fontProviderQuery + */ + public static final int[] FontFamily = { + 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, + 0x7f01002c, 0x7f01002d + }; + /** +

+ @attr description + The authority of the Font Provider to be used for the request. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority = 0; + /** +

+ @attr description + The sets of hashes for the certificates the provider should be signed with. This is + used to verify the identity of the provider, and is only required if the provider is not + part of the system image. This value may point to one list or a list of lists, where each + individual list represents one collection of signature hashes. Refer to your font provider's + documentation for these values. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts = 3; + /** +

+ @attr description + The strategy to be used when fetching font data from a font provider in XML layouts. + This attribute is ignored when the resource is loaded from code, as it is equivalent to the + choice of API between {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and + {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} + (async). + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0 The blocking font fetch works as follows. + First, check the local cache, then if the requested font is not cached, request the + font from the provider and wait until it is finished. You can change the length of + the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the + default typeface will be used instead.
async1 The async font fetch works as follows. + First, check the local cache, then if the requeted font is not cached, trigger a + request the font and continue with layout inflation. Once the font fetch succeeds, the + target text view will be refreshed with the downloaded font data. The + fontProviderFetchTimeout will be ignored if async loading is specified.
+

This is a private symbol. + @attr name b4a.rocklogster:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy = 4; + /** +

+ @attr description + The length of the timeout during fetching. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1 A special value for the timeout. In this case, the blocking font fetching will not + timeout and wait until a reply is received from the font provider.
+

This is a private symbol. + @attr name b4a.rocklogster:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout = 5; + /** +

+ @attr description + The package for the Font Provider to be used for the request. This is used to verify + the identity of the provider. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage = 1; + /** +

+ @attr description + The query to be sent over to the provider. Refer to your font provider's documentation + on the format of this string. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery = 2; + /** Attributes that can be used with a FontFamilyFont. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #FontFamilyFont_android_font android:font}
{@link #FontFamilyFont_android_fontStyle android:fontStyle} References to the framework attrs
{@link #FontFamilyFont_android_fontVariationSettings android:fontVariationSettings}
{@link #FontFamilyFont_android_fontWeight android:fontWeight}
{@link #FontFamilyFont_android_ttcIndex android:ttcIndex}
{@link #FontFamilyFont_font b4a.rocklogster:font} The reference to the font file to be used.
{@link #FontFamilyFont_fontStyle b4a.rocklogster:fontStyle} The style of the given font file.
{@link #FontFamilyFont_fontVariationSettings b4a.rocklogster:fontVariationSettings} The variation settings to be applied to the font.
{@link #FontFamilyFont_fontWeight b4a.rocklogster:fontWeight} The weight of the given font file.
{@link #FontFamilyFont_ttcIndex b4a.rocklogster:ttcIndex} The index of the font in the tcc font file.
+ @see #FontFamilyFont_android_font + @see #FontFamilyFont_android_fontStyle + @see #FontFamilyFont_android_fontVariationSettings + @see #FontFamilyFont_android_fontWeight + @see #FontFamilyFont_android_ttcIndex + @see #FontFamilyFont_font + @see #FontFamilyFont_fontStyle + @see #FontFamilyFont_fontVariationSettings + @see #FontFamilyFont_fontWeight + @see #FontFamilyFont_ttcIndex + */ + public static final int[] FontFamilyFont = { + 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, + 0x01010570, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010032 + }; + /** +

This symbol is the offset where the {@link android.R.attr#font} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:font + */ + public static final int FontFamilyFont_android_font = 0; + /** +

+ @attr description + References to the framework attrs +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fontStyle}. + @attr name android:fontStyle + */ + public static final int FontFamilyFont_android_fontStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#fontVariationSettings} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:fontVariationSettings + */ + public static final int FontFamilyFont_android_fontVariationSettings = 4; + /** +

This symbol is the offset where the {@link android.R.attr#fontWeight} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:fontWeight + */ + public static final int FontFamilyFont_android_fontWeight = 1; + /** +

This symbol is the offset where the {@link android.R.attr#ttcIndex} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:ttcIndex + */ + public static final int FontFamilyFont_android_ttcIndex = 3; + /** +

+ @attr description + The reference to the font file to be used. This should be a file in the res/font folder + and should therefore have an R reference value. E.g. @font/myfont + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:font + */ + public static final int FontFamilyFont_font = 6; + /** +

+ @attr description + The style of the given font file. This will be used when the font is being loaded into + the font stack and will override any style information in the font's header tables. If + unspecified, the value in the font's header tables will be used. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+

This is a private symbol. + @attr name b4a.rocklogster:fontStyle + */ + public static final int FontFamilyFont_fontStyle = 5; + /** +

+ @attr description + The variation settings to be applied to the font. The string should be in the following + format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be + used, or the font used does not support variation settings, this attribute needs not be + specified. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontVariationSettings + */ + public static final int FontFamilyFont_fontVariationSettings = 8; + /** +

+ @attr description + The weight of the given font file. This will be used when the font is being loaded into + the font stack and will override any weight information in the font's header tables. Must + be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most + common values are 400 for regular weight and 700 for bold weight. If unspecified, the value + in the font's header tables will be used. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontWeight + */ + public static final int FontFamilyFont_fontWeight = 7; + /** +

+ @attr description + The index of the font in the tcc font file. If the font file referenced is not in the + tcc format, this attribute needs not be specified. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:ttcIndex + */ + public static final int FontFamilyFont_ttcIndex = 9; + /** Attributes that can be used with a Fragment. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #Fragment_android_id android:id}
{@link #Fragment_android_name android:name}
{@link #Fragment_android_tag android:tag}
+ @see #Fragment_android_id + @see #Fragment_android_name + @see #Fragment_android_tag + */ + public static final int[] Fragment = { + 0x01010003, 0x010100d0, 0x010100d1 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #Fragment} array. + @attr name android:id + */ + public static final int Fragment_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#name} + attribute's value can be found in the {@link #Fragment} array. + @attr name android:name + */ + public static final int Fragment_android_name = 0; + /** +

This symbol is the offset where the {@link android.R.attr#tag} + attribute's value can be found in the {@link #Fragment} array. + @attr name android:tag + */ + public static final int Fragment_android_tag = 2; + /** Attributes that can be used with a FragmentContainerView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #FragmentContainerView_android_name android:name}
{@link #FragmentContainerView_android_tag android:tag}
+ @see #FragmentContainerView_android_name + @see #FragmentContainerView_android_tag + */ + public static final int[] FragmentContainerView = { + 0x01010003, 0x010100d1 + }; + /** +

This symbol is the offset where the {@link android.R.attr#name} + attribute's value can be found in the {@link #FragmentContainerView} array. + @attr name android:name + */ + public static final int FragmentContainerView_android_name = 0; + /** +

This symbol is the offset where the {@link android.R.attr#tag} + attribute's value can be found in the {@link #FragmentContainerView} array. + @attr name android:tag + */ + public static final int FragmentContainerView_android_tag = 1; + /** Attributes that can be used with a GradientColor. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + +
AttributeDescription
{@link #GradientColor_android_centerColor android:centerColor} Optional center color.
{@link #GradientColor_android_centerX android:centerX} Only applied to SweepGradient / RadialGradient + X coordinate of the center of the gradient within the path.
{@link #GradientColor_android_centerY android:centerY} Y coordinate of the center of the gradient within the path.
{@link #GradientColor_android_endColor android:endColor} End color of the gradient.
{@link #GradientColor_android_endX android:endX} X coordinate of the end point origin of the gradient.
{@link #GradientColor_android_endY android:endY} Y coordinate of the end point of the gradient within the shape.
{@link #GradientColor_android_gradientRadius android:gradientRadius} Only applied to RadialGradient + Radius of the gradient, used only with radial gradient.
{@link #GradientColor_android_startColor android:startColor} Start color of the gradient.
{@link #GradientColor_android_startX android:startX} LinearGradient specific + X coordinate of the start point origin of the gradient.
{@link #GradientColor_android_startY android:startY} Y coordinate of the start point of the gradient within the shape.
{@link #GradientColor_android_tileMode android:tileMode} Defines the tile mode of the gradient.
{@link #GradientColor_android_type android:type} Type of gradient.
+ @see #GradientColor_android_centerColor + @see #GradientColor_android_centerX + @see #GradientColor_android_centerY + @see #GradientColor_android_endColor + @see #GradientColor_android_endX + @see #GradientColor_android_endY + @see #GradientColor_android_gradientRadius + @see #GradientColor_android_startColor + @see #GradientColor_android_startX + @see #GradientColor_android_startY + @see #GradientColor_android_tileMode + @see #GradientColor_android_type + */ + public static final int[] GradientColor = { + 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, + 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, + 0x01010510, 0x01010511, 0x01010512, 0x01010513 + }; + /** +

+ @attr description + Optional center color. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerColor}. + @attr name android:centerColor + */ + public static final int GradientColor_android_centerColor = 7; + /** +

+ @attr description + Only applied to SweepGradient / RadialGradient + X coordinate of the center of the gradient within the path. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerX}. + @attr name android:centerX + */ + public static final int GradientColor_android_centerX = 3; + /** +

+ @attr description + Y coordinate of the center of the gradient within the path. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerY}. + @attr name android:centerY + */ + public static final int GradientColor_android_centerY = 4; + /** +

+ @attr description + End color of the gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#endColor}. + @attr name android:endColor + */ + public static final int GradientColor_android_endColor = 1; + /** +

+ @attr description + X coordinate of the end point origin of the gradient. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#endX}. + @attr name android:endX + */ + public static final int GradientColor_android_endX = 10; + /** +

+ @attr description + Y coordinate of the end point of the gradient within the shape. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#endY}. + @attr name android:endY + */ + public static final int GradientColor_android_endY = 11; + /** +

+ @attr description + Only applied to RadialGradient + Radius of the gradient, used only with radial gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#gradientRadius}. + @attr name android:gradientRadius + */ + public static final int GradientColor_android_gradientRadius = 5; + /** +

+ @attr description + Start color of the gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startColor}. + @attr name android:startColor + */ + public static final int GradientColor_android_startColor = 0; + /** +

+ @attr description + LinearGradient specific + X coordinate of the start point origin of the gradient. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startX}. + @attr name android:startX + */ + public static final int GradientColor_android_startX = 8; + /** +

+ @attr description + Y coordinate of the start point of the gradient within the shape. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startY}. + @attr name android:startY + */ + public static final int GradientColor_android_startY = 9; + /** +

+ @attr description + Defines the tile mode of the gradient. SweepGradient doesn't support tiling. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#tileMode}. + @attr name android:tileMode + */ + public static final int GradientColor_android_tileMode = 6; + /** +

+ @attr description + Type of gradient. The default type is linear. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#type}. + @attr name android:type + */ + public static final int GradientColor_android_type = 2; + /** Attributes that can be used with a GradientColorItem. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #GradientColorItem_android_color android:color} The current color for the offset inside the gradient.
{@link #GradientColorItem_android_offset android:offset} The offset (or ratio) of this current color item inside the gradient.
+ @see #GradientColorItem_android_color + @see #GradientColorItem_android_offset + */ + public static final int[] GradientColorItem = { + 0x010101a5, 0x01010514 + }; + /** +

+ @attr description + The current color for the offset inside the gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#color}. + @attr name android:color + */ + public static final int GradientColorItem_android_color = 0; + /** +

+ @attr description + The offset (or ratio) of this current color item inside the gradient. + The value is only meaningful when it is between 0 and 1. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#offset}. + @attr name android:offset + */ + public static final int GradientColorItem_android_offset = 1; + /** Attributes that can be used with a LoadingImageView. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #LoadingImageView_circleCrop b4a.rocklogster:circleCrop}
{@link #LoadingImageView_imageAspectRatio b4a.rocklogster:imageAspectRatio}
{@link #LoadingImageView_imageAspectRatioAdjust b4a.rocklogster:imageAspectRatioAdjust}
+ @see #LoadingImageView_circleCrop + @see #LoadingImageView_imageAspectRatio + @see #LoadingImageView_imageAspectRatioAdjust + */ + public static final int[] LoadingImageView = { + 0x7f010000, 0x7f010001, 0x7f010002 + }; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#circleCrop} + attribute's value can be found in the {@link #LoadingImageView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:circleCrop + */ + public static final int LoadingImageView_circleCrop = 2; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#imageAspectRatio} + attribute's value can be found in the {@link #LoadingImageView} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:imageAspectRatio + */ + public static final int LoadingImageView_imageAspectRatio = 1; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#imageAspectRatioAdjust} + attribute's value can be found in the {@link #LoadingImageView} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
adjust_width1
adjust_height2
+ @attr name b4a.rocklogster:imageAspectRatioAdjust + */ + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + /** Attributes that can be used with a MapAttrs. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MapAttrs_ambientEnabled b4a.rocklogster:ambientEnabled}
{@link #MapAttrs_cameraBearing b4a.rocklogster:cameraBearing}
{@link #MapAttrs_cameraMaxZoomPreference b4a.rocklogster:cameraMaxZoomPreference}
{@link #MapAttrs_cameraMinZoomPreference b4a.rocklogster:cameraMinZoomPreference}
{@link #MapAttrs_cameraTargetLat b4a.rocklogster:cameraTargetLat}
{@link #MapAttrs_cameraTargetLng b4a.rocklogster:cameraTargetLng}
{@link #MapAttrs_cameraTilt b4a.rocklogster:cameraTilt}
{@link #MapAttrs_cameraZoom b4a.rocklogster:cameraZoom}
{@link #MapAttrs_latLngBoundsNorthEastLatitude b4a.rocklogster:latLngBoundsNorthEastLatitude}
{@link #MapAttrs_latLngBoundsNorthEastLongitude b4a.rocklogster:latLngBoundsNorthEastLongitude}
{@link #MapAttrs_latLngBoundsSouthWestLatitude b4a.rocklogster:latLngBoundsSouthWestLatitude}
{@link #MapAttrs_latLngBoundsSouthWestLongitude b4a.rocklogster:latLngBoundsSouthWestLongitude}
{@link #MapAttrs_liteMode b4a.rocklogster:liteMode}
{@link #MapAttrs_mapType b4a.rocklogster:mapType}
{@link #MapAttrs_uiCompass b4a.rocklogster:uiCompass}
{@link #MapAttrs_uiMapToolbar b4a.rocklogster:uiMapToolbar}
{@link #MapAttrs_uiRotateGestures b4a.rocklogster:uiRotateGestures}
{@link #MapAttrs_uiScrollGestures b4a.rocklogster:uiScrollGestures}
{@link #MapAttrs_uiScrollGesturesDuringRotateOrZoom b4a.rocklogster:uiScrollGesturesDuringRotateOrZoom}
{@link #MapAttrs_uiTiltGestures b4a.rocklogster:uiTiltGestures}
{@link #MapAttrs_uiZoomControls b4a.rocklogster:uiZoomControls}
{@link #MapAttrs_uiZoomGestures b4a.rocklogster:uiZoomGestures}
{@link #MapAttrs_useViewLifecycle b4a.rocklogster:useViewLifecycle}
{@link #MapAttrs_zOrderOnTop b4a.rocklogster:zOrderOnTop}
+ @see #MapAttrs_ambientEnabled + @see #MapAttrs_cameraBearing + @see #MapAttrs_cameraMaxZoomPreference + @see #MapAttrs_cameraMinZoomPreference + @see #MapAttrs_cameraTargetLat + @see #MapAttrs_cameraTargetLng + @see #MapAttrs_cameraTilt + @see #MapAttrs_cameraZoom + @see #MapAttrs_latLngBoundsNorthEastLatitude + @see #MapAttrs_latLngBoundsNorthEastLongitude + @see #MapAttrs_latLngBoundsSouthWestLatitude + @see #MapAttrs_latLngBoundsSouthWestLongitude + @see #MapAttrs_liteMode + @see #MapAttrs_mapType + @see #MapAttrs_uiCompass + @see #MapAttrs_uiMapToolbar + @see #MapAttrs_uiRotateGestures + @see #MapAttrs_uiScrollGestures + @see #MapAttrs_uiScrollGesturesDuringRotateOrZoom + @see #MapAttrs_uiTiltGestures + @see #MapAttrs_uiZoomControls + @see #MapAttrs_uiZoomGestures + @see #MapAttrs_useViewLifecycle + @see #MapAttrs_zOrderOnTop + */ + public static final int[] MapAttrs = { + 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, + 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, + 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, + 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, + 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, + 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d + }; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#ambientEnabled} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:ambientEnabled + */ + public static final int MapAttrs_ambientEnabled = 17; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraBearing} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraBearing + */ + public static final int MapAttrs_cameraBearing = 1; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraMaxZoomPreference} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraMaxZoomPreference + */ + public static final int MapAttrs_cameraMaxZoomPreference = 19; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraMinZoomPreference} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraMinZoomPreference + */ + public static final int MapAttrs_cameraMinZoomPreference = 18; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraTargetLat} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraTargetLat + */ + public static final int MapAttrs_cameraTargetLat = 2; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraTargetLng} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraTargetLng + */ + public static final int MapAttrs_cameraTargetLng = 3; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraTilt} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraTilt + */ + public static final int MapAttrs_cameraTilt = 4; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraZoom} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraZoom + */ + public static final int MapAttrs_cameraZoom = 5; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsNorthEastLatitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsNorthEastLatitude + */ + public static final int MapAttrs_latLngBoundsNorthEastLatitude = 22; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsNorthEastLongitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsNorthEastLongitude + */ + public static final int MapAttrs_latLngBoundsNorthEastLongitude = 23; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsSouthWestLatitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsSouthWestLatitude + */ + public static final int MapAttrs_latLngBoundsSouthWestLatitude = 20; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsSouthWestLongitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsSouthWestLongitude + */ + public static final int MapAttrs_latLngBoundsSouthWestLongitude = 21; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#liteMode} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:liteMode + */ + public static final int MapAttrs_liteMode = 6; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#mapType} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
none0
normal1
satellite2
terrain3
hybrid4
+ @attr name b4a.rocklogster:mapType + */ + public static final int MapAttrs_mapType = 0; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiCompass} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiCompass + */ + public static final int MapAttrs_uiCompass = 7; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiMapToolbar} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiMapToolbar + */ + public static final int MapAttrs_uiMapToolbar = 16; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiRotateGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiRotateGestures + */ + public static final int MapAttrs_uiRotateGestures = 8; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiScrollGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiScrollGestures + */ + public static final int MapAttrs_uiScrollGestures = 9; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiScrollGesturesDuringRotateOrZoom} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiScrollGesturesDuringRotateOrZoom + */ + public static final int MapAttrs_uiScrollGesturesDuringRotateOrZoom = 10; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiTiltGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiTiltGestures + */ + public static final int MapAttrs_uiTiltGestures = 11; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiZoomControls} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiZoomControls + */ + public static final int MapAttrs_uiZoomControls = 12; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiZoomGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiZoomGestures + */ + public static final int MapAttrs_uiZoomGestures = 13; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#useViewLifecycle} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:useViewLifecycle + */ + public static final int MapAttrs_useViewLifecycle = 14; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#zOrderOnTop} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:zOrderOnTop + */ + public static final int MapAttrs_zOrderOnTop = 15; + /** Attributes that can be used with a SignInButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SignInButton_buttonSize b4a.rocklogster:buttonSize}
{@link #SignInButton_colorScheme b4a.rocklogster:colorScheme}
{@link #SignInButton_scopeUris b4a.rocklogster:scopeUris}
+ @see #SignInButton_buttonSize + @see #SignInButton_colorScheme + @see #SignInButton_scopeUris + */ + public static final int[] SignInButton = { + 0x7f010003, 0x7f010004, 0x7f010005 + }; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#buttonSize} + attribute's value can be found in the {@link #SignInButton} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
standard0
wide1
icon_only2
+ @attr name b4a.rocklogster:buttonSize + */ + public static final int SignInButton_buttonSize = 0; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#colorScheme} + attribute's value can be found in the {@link #SignInButton} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
dark0
light1
auto2
+ @attr name b4a.rocklogster:colorScheme + */ + public static final int SignInButton_colorScheme = 1; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#scopeUris} + attribute's value can be found in the {@link #SignInButton} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. + @attr name b4a.rocklogster:scopeUris + */ + public static final int SignInButton_scopeUris = 2; + }; +} diff --git a/Objects/gen/androidx/fragment/R.java b/Objects/gen/androidx/fragment/R.java new file mode 100644 index 0000000..2d5547f --- /dev/null +++ b/Objects/gen/androidx/fragment/R.java @@ -0,0 +1,2150 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package androidx.fragment; + +public final class R { + public static final class anim { + public static final int fragment_close_enter=0x7f050000; + public static final int fragment_close_exit=0x7f050001; + public static final int fragment_fade_enter=0x7f050002; + public static final int fragment_fade_exit=0x7f050003; + public static final int fragment_fast_out_extra_slow_in=0x7f050004; + public static final int fragment_open_enter=0x7f050005; + public static final int fragment_open_exit=0x7f050006; + } + public static final class attr { + /** Alpha multiplier applied to the base color. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alpha=0x7f010027; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int ambientEnabled=0x7f010017; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
standard0
wide1
icon_only2
+ */ + public static final int buttonSize=0x7f010003; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraBearing=0x7f010007; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraMaxZoomPreference=0x7f010019; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraMinZoomPreference=0x7f010018; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraTargetLat=0x7f010008; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraTargetLng=0x7f010009; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraTilt=0x7f01000a; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraZoom=0x7f01000b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int circleCrop=0x7f010002; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
dark0
light1
auto2
+ */ + public static final int colorScheme=0x7f010004; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int coordinatorLayoutStyle=0x7f01001e; + /** The reference to the font file to be used. This should be a file in the res/font folder + and should therefore have an R reference value. E.g. @font/myfont +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int font=0x7f01002f; + /** The authority of the Font Provider to be used for the request. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderAuthority=0x7f010028; + /** The sets of hashes for the certificates the provider should be signed with. This is + used to verify the identity of the provider, and is only required if the provider is not + part of the system image. This value may point to one list or a list of lists, where each + individual list represents one collection of signature hashes. Refer to your font provider's + documentation for these values. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fontProviderCerts=0x7f01002b; + /** The strategy to be used when fetching font data from a font provider in XML layouts. + This attribute is ignored when the resource is loaded from code, as it is equivalent to the + choice of API between {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and + {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} + (async). +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0 The blocking font fetch works as follows. + First, check the local cache, then if the requested font is not cached, request the + font from the provider and wait until it is finished. You can change the length of + the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the + default typeface will be used instead.
async1 The async font fetch works as follows. + First, check the local cache, then if the requeted font is not cached, trigger a + request the font and continue with layout inflation. Once the font fetch succeeds, the + target text view will be refreshed with the downloaded font data. The + fontProviderFetchTimeout will be ignored if async loading is specified.
+ */ + public static final int fontProviderFetchStrategy=0x7f01002c; + /** The length of the timeout during fetching. +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1 A special value for the timeout. In this case, the blocking font fetching will not + timeout and wait until a reply is received from the font provider.
+ */ + public static final int fontProviderFetchTimeout=0x7f01002d; + /** The package for the Font Provider to be used for the request. This is used to verify + the identity of the provider. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderPackage=0x7f010029; + /** The query to be sent over to the provider. Refer to your font provider's documentation + on the format of this string. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderQuery=0x7f01002a; + /** The style of the given font file. This will be used when the font is being loaded into + the font stack and will override any style information in the font's header tables. If + unspecified, the value in the font's header tables will be used. +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ */ + public static final int fontStyle=0x7f01002e; + /** The variation settings to be applied to the font. The string should be in the following + format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be + used, or the font used does not support variation settings, this attribute needs not be + specified. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontVariationSettings=0x7f010031; + /** The weight of the given font file. This will be used when the font is being loaded into + the font stack and will override any weight information in the font's header tables. Must + be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most + common values are 400 for regular weight and 700 for bold weight. If unspecified, the value + in the font's header tables will be used. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontWeight=0x7f010030; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int imageAspectRatio=0x7f010001; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
adjust_width1
adjust_height2
+ */ + public static final int imageAspectRatioAdjust=0x7f010000; + /** A reference to an array of integers representing the + locations of horizontal keylines in dp from the starting edge. + Child views can refer to these keylines for alignment using + layout_keyline="index" where index is a 0-based index into + this array. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keylines=0x7f01001f; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsNorthEastLatitude=0x7f01001c; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsNorthEastLongitude=0x7f01001d; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsSouthWestLatitude=0x7f01001a; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsSouthWestLongitude=0x7f01001b; + /** The id of an anchor view that this view should position relative to. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_anchor=0x7f010022; + /** Specifies how an object should position relative to an anchor, on both the X and Y axes, + within its parent's bounds. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+ */ + public static final int layout_anchorGravity=0x7f010024; + /** The class name of a Behavior class defining special runtime behavior + for this child view. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_behavior=0x7f010021; + /** Specifies how this view dodges the inset edges of the CoordinatorLayout. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0 Don't dodge any edges
top0x30 Dodge the top inset edge.
bottom0x50 Dodge the bottom inset edge.
left0x03 Dodge the left inset edge.
right0x05 Dodge the right inset edge.
start0x00800003 Dodge the start inset edge.
end0x00800005 Dodge the end inset edge.
all0x77 Dodge all the inset edges.
+ */ + public static final int layout_dodgeInsetEdges=0x7f010026; + /** Specifies how this view insets the CoordinatorLayout and make some other views + dodge it. +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0 Don't inset.
top0x30 Inset the top edge.
bottom0x50 Inset the bottom edge.
left0x03 Inset the left edge.
right0x05 Inset the right edge.
start0x00800003 Inset the start edge.
end0x00800005 Inset the end edge.
+ */ + public static final int layout_insetEdge=0x7f010025; + /** The index of a keyline this view should position relative to. + android:layout_gravity will affect how the view aligns to the + specified keyline. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_keyline=0x7f010023; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int liteMode=0x7f01000c; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
none0
normal1
satellite2
terrain3
hybrid4
+ */ + public static final int mapType=0x7f010006; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. + */ + public static final int scopeUris=0x7f010005; + /** Drawable to display behind the status bar when the view is set to draw behind it. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int statusBarBackground=0x7f010020; + /** The index of the font in the tcc font file. If the font file referenced is not in the + tcc format, this attribute needs not be specified. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int ttcIndex=0x7f010032; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiCompass=0x7f01000d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiMapToolbar=0x7f010016; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiRotateGestures=0x7f01000e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiScrollGestures=0x7f01000f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiScrollGesturesDuringRotateOrZoom=0x7f010010; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiTiltGestures=0x7f010011; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiZoomControls=0x7f010012; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiZoomGestures=0x7f010013; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useViewLifecycle=0x7f010014; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int zOrderOnTop=0x7f010015; + } + public static final class color { + public static final int common_google_signin_btn_text_dark=0x7f08000f; + public static final int common_google_signin_btn_text_dark_default=0x7f080000; + public static final int common_google_signin_btn_text_dark_disabled=0x7f080001; + public static final int common_google_signin_btn_text_dark_focused=0x7f080002; + public static final int common_google_signin_btn_text_dark_pressed=0x7f080003; + public static final int common_google_signin_btn_text_light=0x7f080010; + public static final int common_google_signin_btn_text_light_default=0x7f080004; + public static final int common_google_signin_btn_text_light_disabled=0x7f080005; + public static final int common_google_signin_btn_text_light_focused=0x7f080006; + public static final int common_google_signin_btn_text_light_pressed=0x7f080007; + public static final int common_google_signin_btn_tint=0x7f080011; + public static final int notification_action_color_filter=0x7f08000b; + public static final int notification_icon_bg_color=0x7f08000c; + public static final int notification_material_background_media_default_color=0x7f080008; + public static final int primary_text_default_material_dark=0x7f080009; + public static final int ripple_material_light=0x7f08000d; + public static final int secondary_text_default_material_dark=0x7f08000a; + public static final int secondary_text_default_material_light=0x7f08000e; + } + public static final class dimen { + public static final int compat_button_inset_horizontal_material=0x7f0b0008; + public static final int compat_button_inset_vertical_material=0x7f0b0009; + public static final int compat_button_padding_horizontal_material=0x7f0b000a; + public static final int compat_button_padding_vertical_material=0x7f0b000b; + public static final int compat_control_corner_material=0x7f0b000c; + public static final int compat_notification_large_icon_max_height=0x7f0b000d; + public static final int compat_notification_large_icon_max_width=0x7f0b000e; + public static final int notification_action_icon_size=0x7f0b000f; + public static final int notification_action_text_size=0x7f0b0010; + public static final int notification_big_circle_margin=0x7f0b0011; + public static final int notification_content_margin_start=0x7f0b0005; + public static final int notification_large_icon_height=0x7f0b0012; + public static final int notification_large_icon_width=0x7f0b0013; + public static final int notification_main_column_padding_top=0x7f0b0006; + public static final int notification_media_narrow_margin=0x7f0b0007; + public static final int notification_right_icon_size=0x7f0b0014; + public static final int notification_right_side_padding_top=0x7f0b0004; + public static final int notification_small_icon_background_padding=0x7f0b0015; + public static final int notification_small_icon_size_as_large=0x7f0b0016; + public static final int notification_subtext_size=0x7f0b0017; + public static final int notification_top_pad=0x7f0b0018; + public static final int notification_top_pad_large_text=0x7f0b0019; + public static final int subtitle_corner_radius=0x7f0b0000; + public static final int subtitle_outline_width=0x7f0b0001; + public static final int subtitle_shadow_offset=0x7f0b0002; + public static final int subtitle_shadow_radius=0x7f0b0003; + } + public static final class drawable { + public static final int common_full_open_on_phone=0x7f020000; + public static final int common_google_signin_btn_icon_dark=0x7f020001; + public static final int common_google_signin_btn_icon_dark_focused=0x7f020002; + public static final int common_google_signin_btn_icon_dark_normal=0x7f020003; + public static final int common_google_signin_btn_icon_dark_normal_background=0x7f020004; + public static final int common_google_signin_btn_icon_disabled=0x7f020005; + public static final int common_google_signin_btn_icon_light=0x7f020006; + public static final int common_google_signin_btn_icon_light_focused=0x7f020007; + public static final int common_google_signin_btn_icon_light_normal=0x7f020008; + public static final int common_google_signin_btn_icon_light_normal_background=0x7f020009; + public static final int common_google_signin_btn_text_dark=0x7f02000a; + public static final int common_google_signin_btn_text_dark_focused=0x7f02000b; + public static final int common_google_signin_btn_text_dark_normal=0x7f02000c; + public static final int common_google_signin_btn_text_dark_normal_background=0x7f02000d; + public static final int common_google_signin_btn_text_disabled=0x7f02000e; + public static final int common_google_signin_btn_text_light=0x7f02000f; + public static final int common_google_signin_btn_text_light_focused=0x7f020010; + public static final int common_google_signin_btn_text_light_normal=0x7f020011; + public static final int common_google_signin_btn_text_light_normal_background=0x7f020012; + public static final int googleg_disabled_color_18=0x7f020013; + public static final int googleg_standard_color_18=0x7f020014; + public static final int icon=0x7f020015; + public static final int notification_action_background=0x7f020016; + public static final int notification_bg=0x7f020017; + public static final int notification_bg_low=0x7f020018; + public static final int notification_bg_low_normal=0x7f020019; + public static final int notification_bg_low_pressed=0x7f02001a; + public static final int notification_bg_normal=0x7f02001b; + public static final int notification_bg_normal_pressed=0x7f02001c; + public static final int notification_icon_background=0x7f02001d; + public static final int notification_template_icon_bg=0x7f020020; + public static final int notification_template_icon_low_bg=0x7f020021; + public static final int notification_tile_bg=0x7f02001e; + public static final int notify_panel_notification_icon_bg=0x7f02001f; + } + public static final class id { + public static final int accessibility_action_clickable_span=0x7f090002; + public static final int accessibility_custom_action_0=0x7f090003; + public static final int accessibility_custom_action_1=0x7f090004; + public static final int accessibility_custom_action_10=0x7f090005; + public static final int accessibility_custom_action_11=0x7f090006; + public static final int accessibility_custom_action_12=0x7f090007; + public static final int accessibility_custom_action_13=0x7f090008; + public static final int accessibility_custom_action_14=0x7f090009; + public static final int accessibility_custom_action_15=0x7f09000a; + public static final int accessibility_custom_action_16=0x7f09000b; + public static final int accessibility_custom_action_17=0x7f09000c; + public static final int accessibility_custom_action_18=0x7f09000d; + public static final int accessibility_custom_action_19=0x7f09000e; + public static final int accessibility_custom_action_2=0x7f09000f; + public static final int accessibility_custom_action_20=0x7f090010; + public static final int accessibility_custom_action_21=0x7f090011; + public static final int accessibility_custom_action_22=0x7f090012; + public static final int accessibility_custom_action_23=0x7f090013; + public static final int accessibility_custom_action_24=0x7f090014; + public static final int accessibility_custom_action_25=0x7f090015; + public static final int accessibility_custom_action_26=0x7f090016; + public static final int accessibility_custom_action_27=0x7f090017; + public static final int accessibility_custom_action_28=0x7f090018; + public static final int accessibility_custom_action_29=0x7f090019; + public static final int accessibility_custom_action_3=0x7f09001a; + public static final int accessibility_custom_action_30=0x7f09001b; + public static final int accessibility_custom_action_31=0x7f09001c; + public static final int accessibility_custom_action_4=0x7f09001d; + public static final int accessibility_custom_action_5=0x7f09001e; + public static final int accessibility_custom_action_6=0x7f09001f; + public static final int accessibility_custom_action_7=0x7f090020; + public static final int accessibility_custom_action_8=0x7f090021; + public static final int accessibility_custom_action_9=0x7f090022; + public static final int action0=0x7f090054; + public static final int action_container=0x7f090051; + public static final int action_divider=0x7f090058; + public static final int action_image=0x7f090052; + public static final int action_text=0x7f090053; + public static final int actions=0x7f090062; + public static final int adjust_height=0x7f090030; + public static final int adjust_width=0x7f090031; + public static final int all=0x7f09004b; + public static final int async=0x7f09004c; + public static final int auto=0x7f090036; + public static final int blocking=0x7f09004d; + public static final int bottom=0x7f09003d; + public static final int cancel_action=0x7f090055; + public static final int center=0x7f09003e; + public static final int center_horizontal=0x7f09003f; + public static final int center_vertical=0x7f090040; + public static final int chronometer=0x7f09005d; + public static final int clip_horizontal=0x7f090041; + public static final int clip_vertical=0x7f090042; + public static final int dark=0x7f090037; + public static final int dialog_button=0x7f090050; + public static final int end=0x7f090043; + public static final int end_padder=0x7f090064; + public static final int fill=0x7f090044; + public static final int fill_horizontal=0x7f090045; + public static final int fill_vertical=0x7f090046; + public static final int forever=0x7f09004e; + public static final int fragment_container_view_tag=0x7f090000; + public static final int hybrid=0x7f090039; + public static final int icon=0x7f09005f; + public static final int icon_group=0x7f090063; + public static final int icon_only=0x7f090033; + public static final int info=0x7f09005e; + public static final int italic=0x7f09004f; + public static final int left=0x7f090047; + public static final int light=0x7f090038; + public static final int line1=0x7f090023; + public static final int line3=0x7f090024; + public static final int media_actions=0x7f090057; + public static final int none=0x7f090032; + public static final int normal=0x7f09003a; + public static final int notification_background=0x7f090061; + public static final int notification_main_column=0x7f09005a; + public static final int notification_main_column_container=0x7f090059; + public static final int right=0x7f090048; + public static final int right_icon=0x7f090060; + public static final int right_side=0x7f09005b; + public static final int satellite=0x7f09003b; + public static final int standard=0x7f090034; + public static final int start=0x7f090049; + public static final int status_bar_latest_event_content=0x7f090056; + public static final int tag_accessibility_actions=0x7f090025; + public static final int tag_accessibility_clickable_spans=0x7f090026; + public static final int tag_accessibility_heading=0x7f090027; + public static final int tag_accessibility_pane_title=0x7f090028; + public static final int tag_screen_reader_focusable=0x7f090029; + public static final int tag_transition_group=0x7f09002a; + public static final int tag_unhandled_key_event_manager=0x7f09002b; + public static final int tag_unhandled_key_listeners=0x7f09002c; + public static final int terrain=0x7f09003c; + public static final int text=0x7f09002d; + public static final int text2=0x7f09002e; + public static final int time=0x7f09005c; + public static final int title=0x7f09002f; + public static final int top=0x7f09004a; + public static final int visible_removing_fragment_view_tag=0x7f090001; + public static final int wide=0x7f090035; + } + public static final class integer { + public static final int cancel_button_image_alpha=0x7f060001; + public static final int google_play_services_version=0x7f060000; + public static final int status_bar_notification_info_maxnum=0x7f060002; + } + public static final class layout { + public static final int custom_dialog=0x7f040000; + public static final int notification_action=0x7f040001; + public static final int notification_action_tombstone=0x7f040002; + public static final int notification_media_action=0x7f040003; + public static final int notification_media_cancel_action=0x7f040004; + public static final int notification_template_big_media=0x7f040005; + public static final int notification_template_big_media_custom=0x7f040006; + public static final int notification_template_big_media_narrow=0x7f040007; + public static final int notification_template_big_media_narrow_custom=0x7f040008; + public static final int notification_template_custom_big=0x7f040009; + public static final int notification_template_icon_group=0x7f04000a; + public static final int notification_template_lines_media=0x7f04000b; + public static final int notification_template_media=0x7f04000c; + public static final int notification_template_media_custom=0x7f04000d; + public static final int notification_template_part_chronometer=0x7f04000e; + public static final int notification_template_part_time=0x7f04000f; + } + public static final class mipmap { + public static final int background=0x7f030000; + public static final int foreground=0x7f030001; + public static final int ic_launcher=0x7f030002; + } + public static final class string { + public static final int common_google_play_services_enable_button=0x7f070001; + public static final int common_google_play_services_enable_text=0x7f070002; + public static final int common_google_play_services_enable_title=0x7f070003; + public static final int common_google_play_services_install_button=0x7f070004; + public static final int common_google_play_services_install_text=0x7f070005; + public static final int common_google_play_services_install_title=0x7f070006; + public static final int common_google_play_services_notification_channel_name=0x7f070007; + public static final int common_google_play_services_notification_ticker=0x7f070008; + public static final int common_google_play_services_unknown_issue=0x7f070000; + public static final int common_google_play_services_unsupported_text=0x7f070009; + public static final int common_google_play_services_update_button=0x7f07000a; + public static final int common_google_play_services_update_text=0x7f07000b; + public static final int common_google_play_services_update_title=0x7f07000c; + public static final int common_google_play_services_updating_text=0x7f07000d; + public static final int common_google_play_services_wear_update_text=0x7f07000e; + public static final int common_open_on_phone=0x7f07000f; + public static final int common_signin_button_text=0x7f070010; + public static final int common_signin_button_text_long=0x7f070011; + public static final int status_bar_notification_info_overflow=0x7f070012; + } + public static final class style { + public static final int DarkTheme=0x7f0a000d; + public static final int TextAppearance_Compat_Notification=0x7f0a0006; + public static final int TextAppearance_Compat_Notification_Info=0x7f0a0007; + public static final int TextAppearance_Compat_Notification_Info_Media=0x7f0a0001; + public static final int TextAppearance_Compat_Notification_Line2=0x7f0a000c; + public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0a0005; + public static final int TextAppearance_Compat_Notification_Media=0x7f0a0002; + public static final int TextAppearance_Compat_Notification_Time=0x7f0a0008; + public static final int TextAppearance_Compat_Notification_Time_Media=0x7f0a0003; + public static final int TextAppearance_Compat_Notification_Title=0x7f0a0009; + public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0a0004; + public static final int Widget_Compat_NotificationActionContainer=0x7f0a000a; + public static final int Widget_Compat_NotificationActionText=0x7f0a000b; + public static final int Widget_Support_CoordinatorLayout=0x7f0a0000; + } + public static final class styleable { + /** Attributes that can be used with a ColorStateListItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ColorStateListItem_alpha b4a.rocklogster:alpha} Alpha multiplier applied to the base color.
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_android_color android:color} Base color for this state.
+ @see #ColorStateListItem_alpha + @see #ColorStateListItem_android_alpha + @see #ColorStateListItem_android_color + */ + public static final int[] ColorStateListItem = { + 0x010101a5, 0x0101031f, 0x7f010027 + }; + /** +

+ @attr description + Alpha multiplier applied to the base color. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:alpha + */ + public static final int ColorStateListItem_alpha = 2; + /** +

This symbol is the offset where the {@link android.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha = 1; + /** +

+ @attr description + Base color for this state. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#color}. + @attr name android:color + */ + public static final int ColorStateListItem_android_color = 0; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines b4a.rocklogster:keylines} A reference to an array of integers representing the + locations of horizontal keylines in dp from the starting edge.
{@link #CoordinatorLayout_statusBarBackground b4a.rocklogster:statusBarBackground} Drawable to display behind the status bar when the view is set to draw behind it.
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f01001f, 0x7f010020 + }; + /** +

+ @attr description + A reference to an array of integers representing the + locations of horizontal keylines in dp from the starting edge. + Child views can refer to these keylines for alignment using + layout_keyline="index" where index is a 0-based index into + this array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:keylines + */ + public static final int CoordinatorLayout_keylines = 0; + /** +

+ @attr description + Drawable to display behind the status bar when the view is set to draw behind it. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This is a private symbol. + @attr name b4a.rocklogster:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_Layout. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor b4a.rocklogster:layout_anchor} The id of an anchor view that this view should position relative to.
{@link #CoordinatorLayout_Layout_layout_anchorGravity b4a.rocklogster:layout_anchorGravity} Specifies how an object should position relative to an anchor, on both the X and Y axes, + within its parent's bounds.
{@link #CoordinatorLayout_Layout_layout_behavior b4a.rocklogster:layout_behavior} The class name of a Behavior class defining special runtime behavior + for this child view.
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges b4a.rocklogster:layout_dodgeInsetEdges} Specifies how this view dodges the inset edges of the CoordinatorLayout.
{@link #CoordinatorLayout_Layout_layout_insetEdge b4a.rocklogster:layout_insetEdge} Specifies how this view insets the CoordinatorLayout and make some other views + dodge it.
{@link #CoordinatorLayout_Layout_layout_keyline b4a.rocklogster:layout_keyline} The index of a keyline this view should position relative to.
+ @see #CoordinatorLayout_Layout_android_layout_gravity + @see #CoordinatorLayout_Layout_layout_anchor + @see #CoordinatorLayout_Layout_layout_anchorGravity + @see #CoordinatorLayout_Layout_layout_behavior + @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + @see #CoordinatorLayout_Layout_layout_insetEdge + @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout = { + 0x010100b3, 0x7f010021, 0x7f010022, 0x7f010023, + 0x7f010024, 0x7f010025, 0x7f010026 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + /** +

+ @attr description + The id of an anchor view that this view should position relative to. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor = 2; + /** +

+ @attr description + Specifies how an object should position relative to an anchor, on both the X and Y axes, + within its parent's bounds. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+

This is a private symbol. + @attr name b4a.rocklogster:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; + /** +

+ @attr description + The class name of a Behavior class defining special runtime behavior + for this child view. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior = 1; + /** +

+ @attr description + Specifies how this view dodges the inset edges of the CoordinatorLayout. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0 Don't dodge any edges
top0x30 Dodge the top inset edge.
bottom0x50 Dodge the bottom inset edge.
left0x03 Dodge the left inset edge.
right0x05 Dodge the right inset edge.
start0x00800003 Dodge the start inset edge.
end0x00800005 Dodge the end inset edge.
all0x77 Dodge all the inset edges.
+

This is a private symbol. + @attr name b4a.rocklogster:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; + /** +

+ @attr description + Specifies how this view insets the CoordinatorLayout and make some other views + dodge it. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0 Don't inset.
top0x30 Inset the top edge.
bottom0x50 Inset the bottom edge.
left0x03 Inset the left edge.
right0x05 Inset the right edge.
start0x00800003 Inset the start edge.
end0x00800005 Inset the end edge.
+

This is a private symbol. + @attr name b4a.rocklogster:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + /** +

+ @attr description + The index of a keyline this view should position relative to. + android:layout_gravity will affect how the view aligns to the + specified keyline. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline = 3; + /** Attributes that can be used with a FontFamily. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #FontFamily_fontProviderAuthority b4a.rocklogster:fontProviderAuthority} The authority of the Font Provider to be used for the request.
{@link #FontFamily_fontProviderCerts b4a.rocklogster:fontProviderCerts} The sets of hashes for the certificates the provider should be signed with.
{@link #FontFamily_fontProviderFetchStrategy b4a.rocklogster:fontProviderFetchStrategy} The strategy to be used when fetching font data from a font provider in XML layouts.
{@link #FontFamily_fontProviderFetchTimeout b4a.rocklogster:fontProviderFetchTimeout} The length of the timeout during fetching.
{@link #FontFamily_fontProviderPackage b4a.rocklogster:fontProviderPackage} The package for the Font Provider to be used for the request.
{@link #FontFamily_fontProviderQuery b4a.rocklogster:fontProviderQuery} The query to be sent over to the provider.
+ @see #FontFamily_fontProviderAuthority + @see #FontFamily_fontProviderCerts + @see #FontFamily_fontProviderFetchStrategy + @see #FontFamily_fontProviderFetchTimeout + @see #FontFamily_fontProviderPackage + @see #FontFamily_fontProviderQuery + */ + public static final int[] FontFamily = { + 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, + 0x7f01002c, 0x7f01002d + }; + /** +

+ @attr description + The authority of the Font Provider to be used for the request. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority = 0; + /** +

+ @attr description + The sets of hashes for the certificates the provider should be signed with. This is + used to verify the identity of the provider, and is only required if the provider is not + part of the system image. This value may point to one list or a list of lists, where each + individual list represents one collection of signature hashes. Refer to your font provider's + documentation for these values. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts = 3; + /** +

+ @attr description + The strategy to be used when fetching font data from a font provider in XML layouts. + This attribute is ignored when the resource is loaded from code, as it is equivalent to the + choice of API between {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and + {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} + (async). + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0 The blocking font fetch works as follows. + First, check the local cache, then if the requested font is not cached, request the + font from the provider and wait until it is finished. You can change the length of + the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the + default typeface will be used instead.
async1 The async font fetch works as follows. + First, check the local cache, then if the requeted font is not cached, trigger a + request the font and continue with layout inflation. Once the font fetch succeeds, the + target text view will be refreshed with the downloaded font data. The + fontProviderFetchTimeout will be ignored if async loading is specified.
+

This is a private symbol. + @attr name b4a.rocklogster:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy = 4; + /** +

+ @attr description + The length of the timeout during fetching. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1 A special value for the timeout. In this case, the blocking font fetching will not + timeout and wait until a reply is received from the font provider.
+

This is a private symbol. + @attr name b4a.rocklogster:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout = 5; + /** +

+ @attr description + The package for the Font Provider to be used for the request. This is used to verify + the identity of the provider. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage = 1; + /** +

+ @attr description + The query to be sent over to the provider. Refer to your font provider's documentation + on the format of this string. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery = 2; + /** Attributes that can be used with a FontFamilyFont. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #FontFamilyFont_android_font android:font}
{@link #FontFamilyFont_android_fontStyle android:fontStyle} References to the framework attrs
{@link #FontFamilyFont_android_fontVariationSettings android:fontVariationSettings}
{@link #FontFamilyFont_android_fontWeight android:fontWeight}
{@link #FontFamilyFont_android_ttcIndex android:ttcIndex}
{@link #FontFamilyFont_font b4a.rocklogster:font} The reference to the font file to be used.
{@link #FontFamilyFont_fontStyle b4a.rocklogster:fontStyle} The style of the given font file.
{@link #FontFamilyFont_fontVariationSettings b4a.rocklogster:fontVariationSettings} The variation settings to be applied to the font.
{@link #FontFamilyFont_fontWeight b4a.rocklogster:fontWeight} The weight of the given font file.
{@link #FontFamilyFont_ttcIndex b4a.rocklogster:ttcIndex} The index of the font in the tcc font file.
+ @see #FontFamilyFont_android_font + @see #FontFamilyFont_android_fontStyle + @see #FontFamilyFont_android_fontVariationSettings + @see #FontFamilyFont_android_fontWeight + @see #FontFamilyFont_android_ttcIndex + @see #FontFamilyFont_font + @see #FontFamilyFont_fontStyle + @see #FontFamilyFont_fontVariationSettings + @see #FontFamilyFont_fontWeight + @see #FontFamilyFont_ttcIndex + */ + public static final int[] FontFamilyFont = { + 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, + 0x01010570, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010032 + }; + /** +

This symbol is the offset where the {@link android.R.attr#font} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:font + */ + public static final int FontFamilyFont_android_font = 0; + /** +

+ @attr description + References to the framework attrs +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fontStyle}. + @attr name android:fontStyle + */ + public static final int FontFamilyFont_android_fontStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#fontVariationSettings} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:fontVariationSettings + */ + public static final int FontFamilyFont_android_fontVariationSettings = 4; + /** +

This symbol is the offset where the {@link android.R.attr#fontWeight} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:fontWeight + */ + public static final int FontFamilyFont_android_fontWeight = 1; + /** +

This symbol is the offset where the {@link android.R.attr#ttcIndex} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:ttcIndex + */ + public static final int FontFamilyFont_android_ttcIndex = 3; + /** +

+ @attr description + The reference to the font file to be used. This should be a file in the res/font folder + and should therefore have an R reference value. E.g. @font/myfont + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:font + */ + public static final int FontFamilyFont_font = 6; + /** +

+ @attr description + The style of the given font file. This will be used when the font is being loaded into + the font stack and will override any style information in the font's header tables. If + unspecified, the value in the font's header tables will be used. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+

This is a private symbol. + @attr name b4a.rocklogster:fontStyle + */ + public static final int FontFamilyFont_fontStyle = 5; + /** +

+ @attr description + The variation settings to be applied to the font. The string should be in the following + format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be + used, or the font used does not support variation settings, this attribute needs not be + specified. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontVariationSettings + */ + public static final int FontFamilyFont_fontVariationSettings = 8; + /** +

+ @attr description + The weight of the given font file. This will be used when the font is being loaded into + the font stack and will override any weight information in the font's header tables. Must + be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most + common values are 400 for regular weight and 700 for bold weight. If unspecified, the value + in the font's header tables will be used. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontWeight + */ + public static final int FontFamilyFont_fontWeight = 7; + /** +

+ @attr description + The index of the font in the tcc font file. If the font file referenced is not in the + tcc format, this attribute needs not be specified. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:ttcIndex + */ + public static final int FontFamilyFont_ttcIndex = 9; + /** Attributes that can be used with a Fragment. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #Fragment_android_id android:id}
{@link #Fragment_android_name android:name}
{@link #Fragment_android_tag android:tag}
+ @see #Fragment_android_id + @see #Fragment_android_name + @see #Fragment_android_tag + */ + public static final int[] Fragment = { + 0x01010003, 0x010100d0, 0x010100d1 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #Fragment} array. + @attr name android:id + */ + public static final int Fragment_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#name} + attribute's value can be found in the {@link #Fragment} array. + @attr name android:name + */ + public static final int Fragment_android_name = 0; + /** +

This symbol is the offset where the {@link android.R.attr#tag} + attribute's value can be found in the {@link #Fragment} array. + @attr name android:tag + */ + public static final int Fragment_android_tag = 2; + /** Attributes that can be used with a FragmentContainerView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #FragmentContainerView_android_name android:name}
{@link #FragmentContainerView_android_tag android:tag}
+ @see #FragmentContainerView_android_name + @see #FragmentContainerView_android_tag + */ + public static final int[] FragmentContainerView = { + 0x01010003, 0x010100d1 + }; + /** +

This symbol is the offset where the {@link android.R.attr#name} + attribute's value can be found in the {@link #FragmentContainerView} array. + @attr name android:name + */ + public static final int FragmentContainerView_android_name = 0; + /** +

This symbol is the offset where the {@link android.R.attr#tag} + attribute's value can be found in the {@link #FragmentContainerView} array. + @attr name android:tag + */ + public static final int FragmentContainerView_android_tag = 1; + /** Attributes that can be used with a GradientColor. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + +
AttributeDescription
{@link #GradientColor_android_centerColor android:centerColor} Optional center color.
{@link #GradientColor_android_centerX android:centerX} Only applied to SweepGradient / RadialGradient + X coordinate of the center of the gradient within the path.
{@link #GradientColor_android_centerY android:centerY} Y coordinate of the center of the gradient within the path.
{@link #GradientColor_android_endColor android:endColor} End color of the gradient.
{@link #GradientColor_android_endX android:endX} X coordinate of the end point origin of the gradient.
{@link #GradientColor_android_endY android:endY} Y coordinate of the end point of the gradient within the shape.
{@link #GradientColor_android_gradientRadius android:gradientRadius} Only applied to RadialGradient + Radius of the gradient, used only with radial gradient.
{@link #GradientColor_android_startColor android:startColor} Start color of the gradient.
{@link #GradientColor_android_startX android:startX} LinearGradient specific + X coordinate of the start point origin of the gradient.
{@link #GradientColor_android_startY android:startY} Y coordinate of the start point of the gradient within the shape.
{@link #GradientColor_android_tileMode android:tileMode} Defines the tile mode of the gradient.
{@link #GradientColor_android_type android:type} Type of gradient.
+ @see #GradientColor_android_centerColor + @see #GradientColor_android_centerX + @see #GradientColor_android_centerY + @see #GradientColor_android_endColor + @see #GradientColor_android_endX + @see #GradientColor_android_endY + @see #GradientColor_android_gradientRadius + @see #GradientColor_android_startColor + @see #GradientColor_android_startX + @see #GradientColor_android_startY + @see #GradientColor_android_tileMode + @see #GradientColor_android_type + */ + public static final int[] GradientColor = { + 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, + 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, + 0x01010510, 0x01010511, 0x01010512, 0x01010513 + }; + /** +

+ @attr description + Optional center color. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerColor}. + @attr name android:centerColor + */ + public static final int GradientColor_android_centerColor = 7; + /** +

+ @attr description + Only applied to SweepGradient / RadialGradient + X coordinate of the center of the gradient within the path. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerX}. + @attr name android:centerX + */ + public static final int GradientColor_android_centerX = 3; + /** +

+ @attr description + Y coordinate of the center of the gradient within the path. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerY}. + @attr name android:centerY + */ + public static final int GradientColor_android_centerY = 4; + /** +

+ @attr description + End color of the gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#endColor}. + @attr name android:endColor + */ + public static final int GradientColor_android_endColor = 1; + /** +

+ @attr description + X coordinate of the end point origin of the gradient. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#endX}. + @attr name android:endX + */ + public static final int GradientColor_android_endX = 10; + /** +

+ @attr description + Y coordinate of the end point of the gradient within the shape. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#endY}. + @attr name android:endY + */ + public static final int GradientColor_android_endY = 11; + /** +

+ @attr description + Only applied to RadialGradient + Radius of the gradient, used only with radial gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#gradientRadius}. + @attr name android:gradientRadius + */ + public static final int GradientColor_android_gradientRadius = 5; + /** +

+ @attr description + Start color of the gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startColor}. + @attr name android:startColor + */ + public static final int GradientColor_android_startColor = 0; + /** +

+ @attr description + LinearGradient specific + X coordinate of the start point origin of the gradient. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startX}. + @attr name android:startX + */ + public static final int GradientColor_android_startX = 8; + /** +

+ @attr description + Y coordinate of the start point of the gradient within the shape. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startY}. + @attr name android:startY + */ + public static final int GradientColor_android_startY = 9; + /** +

+ @attr description + Defines the tile mode of the gradient. SweepGradient doesn't support tiling. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#tileMode}. + @attr name android:tileMode + */ + public static final int GradientColor_android_tileMode = 6; + /** +

+ @attr description + Type of gradient. The default type is linear. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#type}. + @attr name android:type + */ + public static final int GradientColor_android_type = 2; + /** Attributes that can be used with a GradientColorItem. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #GradientColorItem_android_color android:color} The current color for the offset inside the gradient.
{@link #GradientColorItem_android_offset android:offset} The offset (or ratio) of this current color item inside the gradient.
+ @see #GradientColorItem_android_color + @see #GradientColorItem_android_offset + */ + public static final int[] GradientColorItem = { + 0x010101a5, 0x01010514 + }; + /** +

+ @attr description + The current color for the offset inside the gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#color}. + @attr name android:color + */ + public static final int GradientColorItem_android_color = 0; + /** +

+ @attr description + The offset (or ratio) of this current color item inside the gradient. + The value is only meaningful when it is between 0 and 1. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#offset}. + @attr name android:offset + */ + public static final int GradientColorItem_android_offset = 1; + /** Attributes that can be used with a LoadingImageView. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #LoadingImageView_circleCrop b4a.rocklogster:circleCrop}
{@link #LoadingImageView_imageAspectRatio b4a.rocklogster:imageAspectRatio}
{@link #LoadingImageView_imageAspectRatioAdjust b4a.rocklogster:imageAspectRatioAdjust}
+ @see #LoadingImageView_circleCrop + @see #LoadingImageView_imageAspectRatio + @see #LoadingImageView_imageAspectRatioAdjust + */ + public static final int[] LoadingImageView = { + 0x7f010000, 0x7f010001, 0x7f010002 + }; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#circleCrop} + attribute's value can be found in the {@link #LoadingImageView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:circleCrop + */ + public static final int LoadingImageView_circleCrop = 2; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#imageAspectRatio} + attribute's value can be found in the {@link #LoadingImageView} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:imageAspectRatio + */ + public static final int LoadingImageView_imageAspectRatio = 1; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#imageAspectRatioAdjust} + attribute's value can be found in the {@link #LoadingImageView} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
adjust_width1
adjust_height2
+ @attr name b4a.rocklogster:imageAspectRatioAdjust + */ + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + /** Attributes that can be used with a MapAttrs. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MapAttrs_ambientEnabled b4a.rocklogster:ambientEnabled}
{@link #MapAttrs_cameraBearing b4a.rocklogster:cameraBearing}
{@link #MapAttrs_cameraMaxZoomPreference b4a.rocklogster:cameraMaxZoomPreference}
{@link #MapAttrs_cameraMinZoomPreference b4a.rocklogster:cameraMinZoomPreference}
{@link #MapAttrs_cameraTargetLat b4a.rocklogster:cameraTargetLat}
{@link #MapAttrs_cameraTargetLng b4a.rocklogster:cameraTargetLng}
{@link #MapAttrs_cameraTilt b4a.rocklogster:cameraTilt}
{@link #MapAttrs_cameraZoom b4a.rocklogster:cameraZoom}
{@link #MapAttrs_latLngBoundsNorthEastLatitude b4a.rocklogster:latLngBoundsNorthEastLatitude}
{@link #MapAttrs_latLngBoundsNorthEastLongitude b4a.rocklogster:latLngBoundsNorthEastLongitude}
{@link #MapAttrs_latLngBoundsSouthWestLatitude b4a.rocklogster:latLngBoundsSouthWestLatitude}
{@link #MapAttrs_latLngBoundsSouthWestLongitude b4a.rocklogster:latLngBoundsSouthWestLongitude}
{@link #MapAttrs_liteMode b4a.rocklogster:liteMode}
{@link #MapAttrs_mapType b4a.rocklogster:mapType}
{@link #MapAttrs_uiCompass b4a.rocklogster:uiCompass}
{@link #MapAttrs_uiMapToolbar b4a.rocklogster:uiMapToolbar}
{@link #MapAttrs_uiRotateGestures b4a.rocklogster:uiRotateGestures}
{@link #MapAttrs_uiScrollGestures b4a.rocklogster:uiScrollGestures}
{@link #MapAttrs_uiScrollGesturesDuringRotateOrZoom b4a.rocklogster:uiScrollGesturesDuringRotateOrZoom}
{@link #MapAttrs_uiTiltGestures b4a.rocklogster:uiTiltGestures}
{@link #MapAttrs_uiZoomControls b4a.rocklogster:uiZoomControls}
{@link #MapAttrs_uiZoomGestures b4a.rocklogster:uiZoomGestures}
{@link #MapAttrs_useViewLifecycle b4a.rocklogster:useViewLifecycle}
{@link #MapAttrs_zOrderOnTop b4a.rocklogster:zOrderOnTop}
+ @see #MapAttrs_ambientEnabled + @see #MapAttrs_cameraBearing + @see #MapAttrs_cameraMaxZoomPreference + @see #MapAttrs_cameraMinZoomPreference + @see #MapAttrs_cameraTargetLat + @see #MapAttrs_cameraTargetLng + @see #MapAttrs_cameraTilt + @see #MapAttrs_cameraZoom + @see #MapAttrs_latLngBoundsNorthEastLatitude + @see #MapAttrs_latLngBoundsNorthEastLongitude + @see #MapAttrs_latLngBoundsSouthWestLatitude + @see #MapAttrs_latLngBoundsSouthWestLongitude + @see #MapAttrs_liteMode + @see #MapAttrs_mapType + @see #MapAttrs_uiCompass + @see #MapAttrs_uiMapToolbar + @see #MapAttrs_uiRotateGestures + @see #MapAttrs_uiScrollGestures + @see #MapAttrs_uiScrollGesturesDuringRotateOrZoom + @see #MapAttrs_uiTiltGestures + @see #MapAttrs_uiZoomControls + @see #MapAttrs_uiZoomGestures + @see #MapAttrs_useViewLifecycle + @see #MapAttrs_zOrderOnTop + */ + public static final int[] MapAttrs = { + 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, + 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, + 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, + 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, + 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, + 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d + }; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#ambientEnabled} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:ambientEnabled + */ + public static final int MapAttrs_ambientEnabled = 17; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraBearing} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraBearing + */ + public static final int MapAttrs_cameraBearing = 1; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraMaxZoomPreference} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraMaxZoomPreference + */ + public static final int MapAttrs_cameraMaxZoomPreference = 19; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraMinZoomPreference} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraMinZoomPreference + */ + public static final int MapAttrs_cameraMinZoomPreference = 18; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraTargetLat} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraTargetLat + */ + public static final int MapAttrs_cameraTargetLat = 2; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraTargetLng} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraTargetLng + */ + public static final int MapAttrs_cameraTargetLng = 3; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraTilt} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraTilt + */ + public static final int MapAttrs_cameraTilt = 4; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraZoom} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraZoom + */ + public static final int MapAttrs_cameraZoom = 5; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsNorthEastLatitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsNorthEastLatitude + */ + public static final int MapAttrs_latLngBoundsNorthEastLatitude = 22; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsNorthEastLongitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsNorthEastLongitude + */ + public static final int MapAttrs_latLngBoundsNorthEastLongitude = 23; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsSouthWestLatitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsSouthWestLatitude + */ + public static final int MapAttrs_latLngBoundsSouthWestLatitude = 20; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsSouthWestLongitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsSouthWestLongitude + */ + public static final int MapAttrs_latLngBoundsSouthWestLongitude = 21; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#liteMode} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:liteMode + */ + public static final int MapAttrs_liteMode = 6; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#mapType} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
none0
normal1
satellite2
terrain3
hybrid4
+ @attr name b4a.rocklogster:mapType + */ + public static final int MapAttrs_mapType = 0; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiCompass} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiCompass + */ + public static final int MapAttrs_uiCompass = 7; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiMapToolbar} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiMapToolbar + */ + public static final int MapAttrs_uiMapToolbar = 16; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiRotateGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiRotateGestures + */ + public static final int MapAttrs_uiRotateGestures = 8; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiScrollGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiScrollGestures + */ + public static final int MapAttrs_uiScrollGestures = 9; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiScrollGesturesDuringRotateOrZoom} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiScrollGesturesDuringRotateOrZoom + */ + public static final int MapAttrs_uiScrollGesturesDuringRotateOrZoom = 10; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiTiltGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiTiltGestures + */ + public static final int MapAttrs_uiTiltGestures = 11; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiZoomControls} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiZoomControls + */ + public static final int MapAttrs_uiZoomControls = 12; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiZoomGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiZoomGestures + */ + public static final int MapAttrs_uiZoomGestures = 13; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#useViewLifecycle} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:useViewLifecycle + */ + public static final int MapAttrs_useViewLifecycle = 14; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#zOrderOnTop} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:zOrderOnTop + */ + public static final int MapAttrs_zOrderOnTop = 15; + /** Attributes that can be used with a SignInButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SignInButton_buttonSize b4a.rocklogster:buttonSize}
{@link #SignInButton_colorScheme b4a.rocklogster:colorScheme}
{@link #SignInButton_scopeUris b4a.rocklogster:scopeUris}
+ @see #SignInButton_buttonSize + @see #SignInButton_colorScheme + @see #SignInButton_scopeUris + */ + public static final int[] SignInButton = { + 0x7f010003, 0x7f010004, 0x7f010005 + }; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#buttonSize} + attribute's value can be found in the {@link #SignInButton} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
standard0
wide1
icon_only2
+ @attr name b4a.rocklogster:buttonSize + */ + public static final int SignInButton_buttonSize = 0; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#colorScheme} + attribute's value can be found in the {@link #SignInButton} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
dark0
light1
auto2
+ @attr name b4a.rocklogster:colorScheme + */ + public static final int SignInButton_colorScheme = 1; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#scopeUris} + attribute's value can be found in the {@link #SignInButton} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. + @attr name b4a.rocklogster:scopeUris + */ + public static final int SignInButton_scopeUris = 2; + }; +} diff --git a/Objects/gen/androidx/media/R.java b/Objects/gen/androidx/media/R.java new file mode 100644 index 0000000..3d800a6 --- /dev/null +++ b/Objects/gen/androidx/media/R.java @@ -0,0 +1,2150 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package androidx.media; + +public final class R { + public static final class anim { + public static final int fragment_close_enter=0x7f050000; + public static final int fragment_close_exit=0x7f050001; + public static final int fragment_fade_enter=0x7f050002; + public static final int fragment_fade_exit=0x7f050003; + public static final int fragment_fast_out_extra_slow_in=0x7f050004; + public static final int fragment_open_enter=0x7f050005; + public static final int fragment_open_exit=0x7f050006; + } + public static final class attr { + /** Alpha multiplier applied to the base color. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alpha=0x7f010027; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int ambientEnabled=0x7f010017; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
standard0
wide1
icon_only2
+ */ + public static final int buttonSize=0x7f010003; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraBearing=0x7f010007; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraMaxZoomPreference=0x7f010019; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraMinZoomPreference=0x7f010018; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraTargetLat=0x7f010008; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraTargetLng=0x7f010009; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraTilt=0x7f01000a; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraZoom=0x7f01000b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int circleCrop=0x7f010002; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
dark0
light1
auto2
+ */ + public static final int colorScheme=0x7f010004; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int coordinatorLayoutStyle=0x7f01001e; + /** The reference to the font file to be used. This should be a file in the res/font folder + and should therefore have an R reference value. E.g. @font/myfont +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int font=0x7f01002f; + /** The authority of the Font Provider to be used for the request. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderAuthority=0x7f010028; + /** The sets of hashes for the certificates the provider should be signed with. This is + used to verify the identity of the provider, and is only required if the provider is not + part of the system image. This value may point to one list or a list of lists, where each + individual list represents one collection of signature hashes. Refer to your font provider's + documentation for these values. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fontProviderCerts=0x7f01002b; + /** The strategy to be used when fetching font data from a font provider in XML layouts. + This attribute is ignored when the resource is loaded from code, as it is equivalent to the + choice of API between {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and + {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} + (async). +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0 The blocking font fetch works as follows. + First, check the local cache, then if the requested font is not cached, request the + font from the provider and wait until it is finished. You can change the length of + the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the + default typeface will be used instead.
async1 The async font fetch works as follows. + First, check the local cache, then if the requeted font is not cached, trigger a + request the font and continue with layout inflation. Once the font fetch succeeds, the + target text view will be refreshed with the downloaded font data. The + fontProviderFetchTimeout will be ignored if async loading is specified.
+ */ + public static final int fontProviderFetchStrategy=0x7f01002c; + /** The length of the timeout during fetching. +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1 A special value for the timeout. In this case, the blocking font fetching will not + timeout and wait until a reply is received from the font provider.
+ */ + public static final int fontProviderFetchTimeout=0x7f01002d; + /** The package for the Font Provider to be used for the request. This is used to verify + the identity of the provider. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderPackage=0x7f010029; + /** The query to be sent over to the provider. Refer to your font provider's documentation + on the format of this string. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderQuery=0x7f01002a; + /** The style of the given font file. This will be used when the font is being loaded into + the font stack and will override any style information in the font's header tables. If + unspecified, the value in the font's header tables will be used. +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ */ + public static final int fontStyle=0x7f01002e; + /** The variation settings to be applied to the font. The string should be in the following + format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be + used, or the font used does not support variation settings, this attribute needs not be + specified. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontVariationSettings=0x7f010031; + /** The weight of the given font file. This will be used when the font is being loaded into + the font stack and will override any weight information in the font's header tables. Must + be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most + common values are 400 for regular weight and 700 for bold weight. If unspecified, the value + in the font's header tables will be used. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontWeight=0x7f010030; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int imageAspectRatio=0x7f010001; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
adjust_width1
adjust_height2
+ */ + public static final int imageAspectRatioAdjust=0x7f010000; + /** A reference to an array of integers representing the + locations of horizontal keylines in dp from the starting edge. + Child views can refer to these keylines for alignment using + layout_keyline="index" where index is a 0-based index into + this array. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keylines=0x7f01001f; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsNorthEastLatitude=0x7f01001c; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsNorthEastLongitude=0x7f01001d; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsSouthWestLatitude=0x7f01001a; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsSouthWestLongitude=0x7f01001b; + /** The id of an anchor view that this view should position relative to. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_anchor=0x7f010022; + /** Specifies how an object should position relative to an anchor, on both the X and Y axes, + within its parent's bounds. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+ */ + public static final int layout_anchorGravity=0x7f010024; + /** The class name of a Behavior class defining special runtime behavior + for this child view. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_behavior=0x7f010021; + /** Specifies how this view dodges the inset edges of the CoordinatorLayout. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0 Don't dodge any edges
top0x30 Dodge the top inset edge.
bottom0x50 Dodge the bottom inset edge.
left0x03 Dodge the left inset edge.
right0x05 Dodge the right inset edge.
start0x00800003 Dodge the start inset edge.
end0x00800005 Dodge the end inset edge.
all0x77 Dodge all the inset edges.
+ */ + public static final int layout_dodgeInsetEdges=0x7f010026; + /** Specifies how this view insets the CoordinatorLayout and make some other views + dodge it. +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0 Don't inset.
top0x30 Inset the top edge.
bottom0x50 Inset the bottom edge.
left0x03 Inset the left edge.
right0x05 Inset the right edge.
start0x00800003 Inset the start edge.
end0x00800005 Inset the end edge.
+ */ + public static final int layout_insetEdge=0x7f010025; + /** The index of a keyline this view should position relative to. + android:layout_gravity will affect how the view aligns to the + specified keyline. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_keyline=0x7f010023; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int liteMode=0x7f01000c; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
none0
normal1
satellite2
terrain3
hybrid4
+ */ + public static final int mapType=0x7f010006; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. + */ + public static final int scopeUris=0x7f010005; + /** Drawable to display behind the status bar when the view is set to draw behind it. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int statusBarBackground=0x7f010020; + /** The index of the font in the tcc font file. If the font file referenced is not in the + tcc format, this attribute needs not be specified. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int ttcIndex=0x7f010032; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiCompass=0x7f01000d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiMapToolbar=0x7f010016; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiRotateGestures=0x7f01000e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiScrollGestures=0x7f01000f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiScrollGesturesDuringRotateOrZoom=0x7f010010; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiTiltGestures=0x7f010011; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiZoomControls=0x7f010012; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiZoomGestures=0x7f010013; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useViewLifecycle=0x7f010014; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int zOrderOnTop=0x7f010015; + } + public static final class color { + public static final int common_google_signin_btn_text_dark=0x7f08000f; + public static final int common_google_signin_btn_text_dark_default=0x7f080000; + public static final int common_google_signin_btn_text_dark_disabled=0x7f080001; + public static final int common_google_signin_btn_text_dark_focused=0x7f080002; + public static final int common_google_signin_btn_text_dark_pressed=0x7f080003; + public static final int common_google_signin_btn_text_light=0x7f080010; + public static final int common_google_signin_btn_text_light_default=0x7f080004; + public static final int common_google_signin_btn_text_light_disabled=0x7f080005; + public static final int common_google_signin_btn_text_light_focused=0x7f080006; + public static final int common_google_signin_btn_text_light_pressed=0x7f080007; + public static final int common_google_signin_btn_tint=0x7f080011; + public static final int notification_action_color_filter=0x7f08000b; + public static final int notification_icon_bg_color=0x7f08000c; + public static final int notification_material_background_media_default_color=0x7f080008; + public static final int primary_text_default_material_dark=0x7f080009; + public static final int ripple_material_light=0x7f08000d; + public static final int secondary_text_default_material_dark=0x7f08000a; + public static final int secondary_text_default_material_light=0x7f08000e; + } + public static final class dimen { + public static final int compat_button_inset_horizontal_material=0x7f0b0008; + public static final int compat_button_inset_vertical_material=0x7f0b0009; + public static final int compat_button_padding_horizontal_material=0x7f0b000a; + public static final int compat_button_padding_vertical_material=0x7f0b000b; + public static final int compat_control_corner_material=0x7f0b000c; + public static final int compat_notification_large_icon_max_height=0x7f0b000d; + public static final int compat_notification_large_icon_max_width=0x7f0b000e; + public static final int notification_action_icon_size=0x7f0b000f; + public static final int notification_action_text_size=0x7f0b0010; + public static final int notification_big_circle_margin=0x7f0b0011; + public static final int notification_content_margin_start=0x7f0b0005; + public static final int notification_large_icon_height=0x7f0b0012; + public static final int notification_large_icon_width=0x7f0b0013; + public static final int notification_main_column_padding_top=0x7f0b0006; + public static final int notification_media_narrow_margin=0x7f0b0007; + public static final int notification_right_icon_size=0x7f0b0014; + public static final int notification_right_side_padding_top=0x7f0b0004; + public static final int notification_small_icon_background_padding=0x7f0b0015; + public static final int notification_small_icon_size_as_large=0x7f0b0016; + public static final int notification_subtext_size=0x7f0b0017; + public static final int notification_top_pad=0x7f0b0018; + public static final int notification_top_pad_large_text=0x7f0b0019; + public static final int subtitle_corner_radius=0x7f0b0000; + public static final int subtitle_outline_width=0x7f0b0001; + public static final int subtitle_shadow_offset=0x7f0b0002; + public static final int subtitle_shadow_radius=0x7f0b0003; + } + public static final class drawable { + public static final int common_full_open_on_phone=0x7f020000; + public static final int common_google_signin_btn_icon_dark=0x7f020001; + public static final int common_google_signin_btn_icon_dark_focused=0x7f020002; + public static final int common_google_signin_btn_icon_dark_normal=0x7f020003; + public static final int common_google_signin_btn_icon_dark_normal_background=0x7f020004; + public static final int common_google_signin_btn_icon_disabled=0x7f020005; + public static final int common_google_signin_btn_icon_light=0x7f020006; + public static final int common_google_signin_btn_icon_light_focused=0x7f020007; + public static final int common_google_signin_btn_icon_light_normal=0x7f020008; + public static final int common_google_signin_btn_icon_light_normal_background=0x7f020009; + public static final int common_google_signin_btn_text_dark=0x7f02000a; + public static final int common_google_signin_btn_text_dark_focused=0x7f02000b; + public static final int common_google_signin_btn_text_dark_normal=0x7f02000c; + public static final int common_google_signin_btn_text_dark_normal_background=0x7f02000d; + public static final int common_google_signin_btn_text_disabled=0x7f02000e; + public static final int common_google_signin_btn_text_light=0x7f02000f; + public static final int common_google_signin_btn_text_light_focused=0x7f020010; + public static final int common_google_signin_btn_text_light_normal=0x7f020011; + public static final int common_google_signin_btn_text_light_normal_background=0x7f020012; + public static final int googleg_disabled_color_18=0x7f020013; + public static final int googleg_standard_color_18=0x7f020014; + public static final int icon=0x7f020015; + public static final int notification_action_background=0x7f020016; + public static final int notification_bg=0x7f020017; + public static final int notification_bg_low=0x7f020018; + public static final int notification_bg_low_normal=0x7f020019; + public static final int notification_bg_low_pressed=0x7f02001a; + public static final int notification_bg_normal=0x7f02001b; + public static final int notification_bg_normal_pressed=0x7f02001c; + public static final int notification_icon_background=0x7f02001d; + public static final int notification_template_icon_bg=0x7f020020; + public static final int notification_template_icon_low_bg=0x7f020021; + public static final int notification_tile_bg=0x7f02001e; + public static final int notify_panel_notification_icon_bg=0x7f02001f; + } + public static final class id { + public static final int accessibility_action_clickable_span=0x7f090002; + public static final int accessibility_custom_action_0=0x7f090003; + public static final int accessibility_custom_action_1=0x7f090004; + public static final int accessibility_custom_action_10=0x7f090005; + public static final int accessibility_custom_action_11=0x7f090006; + public static final int accessibility_custom_action_12=0x7f090007; + public static final int accessibility_custom_action_13=0x7f090008; + public static final int accessibility_custom_action_14=0x7f090009; + public static final int accessibility_custom_action_15=0x7f09000a; + public static final int accessibility_custom_action_16=0x7f09000b; + public static final int accessibility_custom_action_17=0x7f09000c; + public static final int accessibility_custom_action_18=0x7f09000d; + public static final int accessibility_custom_action_19=0x7f09000e; + public static final int accessibility_custom_action_2=0x7f09000f; + public static final int accessibility_custom_action_20=0x7f090010; + public static final int accessibility_custom_action_21=0x7f090011; + public static final int accessibility_custom_action_22=0x7f090012; + public static final int accessibility_custom_action_23=0x7f090013; + public static final int accessibility_custom_action_24=0x7f090014; + public static final int accessibility_custom_action_25=0x7f090015; + public static final int accessibility_custom_action_26=0x7f090016; + public static final int accessibility_custom_action_27=0x7f090017; + public static final int accessibility_custom_action_28=0x7f090018; + public static final int accessibility_custom_action_29=0x7f090019; + public static final int accessibility_custom_action_3=0x7f09001a; + public static final int accessibility_custom_action_30=0x7f09001b; + public static final int accessibility_custom_action_31=0x7f09001c; + public static final int accessibility_custom_action_4=0x7f09001d; + public static final int accessibility_custom_action_5=0x7f09001e; + public static final int accessibility_custom_action_6=0x7f09001f; + public static final int accessibility_custom_action_7=0x7f090020; + public static final int accessibility_custom_action_8=0x7f090021; + public static final int accessibility_custom_action_9=0x7f090022; + public static final int action0=0x7f090054; + public static final int action_container=0x7f090051; + public static final int action_divider=0x7f090058; + public static final int action_image=0x7f090052; + public static final int action_text=0x7f090053; + public static final int actions=0x7f090062; + public static final int adjust_height=0x7f090030; + public static final int adjust_width=0x7f090031; + public static final int all=0x7f09004b; + public static final int async=0x7f09004c; + public static final int auto=0x7f090036; + public static final int blocking=0x7f09004d; + public static final int bottom=0x7f09003d; + public static final int cancel_action=0x7f090055; + public static final int center=0x7f09003e; + public static final int center_horizontal=0x7f09003f; + public static final int center_vertical=0x7f090040; + public static final int chronometer=0x7f09005d; + public static final int clip_horizontal=0x7f090041; + public static final int clip_vertical=0x7f090042; + public static final int dark=0x7f090037; + public static final int dialog_button=0x7f090050; + public static final int end=0x7f090043; + public static final int end_padder=0x7f090064; + public static final int fill=0x7f090044; + public static final int fill_horizontal=0x7f090045; + public static final int fill_vertical=0x7f090046; + public static final int forever=0x7f09004e; + public static final int fragment_container_view_tag=0x7f090000; + public static final int hybrid=0x7f090039; + public static final int icon=0x7f09005f; + public static final int icon_group=0x7f090063; + public static final int icon_only=0x7f090033; + public static final int info=0x7f09005e; + public static final int italic=0x7f09004f; + public static final int left=0x7f090047; + public static final int light=0x7f090038; + public static final int line1=0x7f090023; + public static final int line3=0x7f090024; + public static final int media_actions=0x7f090057; + public static final int none=0x7f090032; + public static final int normal=0x7f09003a; + public static final int notification_background=0x7f090061; + public static final int notification_main_column=0x7f09005a; + public static final int notification_main_column_container=0x7f090059; + public static final int right=0x7f090048; + public static final int right_icon=0x7f090060; + public static final int right_side=0x7f09005b; + public static final int satellite=0x7f09003b; + public static final int standard=0x7f090034; + public static final int start=0x7f090049; + public static final int status_bar_latest_event_content=0x7f090056; + public static final int tag_accessibility_actions=0x7f090025; + public static final int tag_accessibility_clickable_spans=0x7f090026; + public static final int tag_accessibility_heading=0x7f090027; + public static final int tag_accessibility_pane_title=0x7f090028; + public static final int tag_screen_reader_focusable=0x7f090029; + public static final int tag_transition_group=0x7f09002a; + public static final int tag_unhandled_key_event_manager=0x7f09002b; + public static final int tag_unhandled_key_listeners=0x7f09002c; + public static final int terrain=0x7f09003c; + public static final int text=0x7f09002d; + public static final int text2=0x7f09002e; + public static final int time=0x7f09005c; + public static final int title=0x7f09002f; + public static final int top=0x7f09004a; + public static final int visible_removing_fragment_view_tag=0x7f090001; + public static final int wide=0x7f090035; + } + public static final class integer { + public static final int cancel_button_image_alpha=0x7f060001; + public static final int google_play_services_version=0x7f060000; + public static final int status_bar_notification_info_maxnum=0x7f060002; + } + public static final class layout { + public static final int custom_dialog=0x7f040000; + public static final int notification_action=0x7f040001; + public static final int notification_action_tombstone=0x7f040002; + public static final int notification_media_action=0x7f040003; + public static final int notification_media_cancel_action=0x7f040004; + public static final int notification_template_big_media=0x7f040005; + public static final int notification_template_big_media_custom=0x7f040006; + public static final int notification_template_big_media_narrow=0x7f040007; + public static final int notification_template_big_media_narrow_custom=0x7f040008; + public static final int notification_template_custom_big=0x7f040009; + public static final int notification_template_icon_group=0x7f04000a; + public static final int notification_template_lines_media=0x7f04000b; + public static final int notification_template_media=0x7f04000c; + public static final int notification_template_media_custom=0x7f04000d; + public static final int notification_template_part_chronometer=0x7f04000e; + public static final int notification_template_part_time=0x7f04000f; + } + public static final class mipmap { + public static final int background=0x7f030000; + public static final int foreground=0x7f030001; + public static final int ic_launcher=0x7f030002; + } + public static final class string { + public static final int common_google_play_services_enable_button=0x7f070001; + public static final int common_google_play_services_enable_text=0x7f070002; + public static final int common_google_play_services_enable_title=0x7f070003; + public static final int common_google_play_services_install_button=0x7f070004; + public static final int common_google_play_services_install_text=0x7f070005; + public static final int common_google_play_services_install_title=0x7f070006; + public static final int common_google_play_services_notification_channel_name=0x7f070007; + public static final int common_google_play_services_notification_ticker=0x7f070008; + public static final int common_google_play_services_unknown_issue=0x7f070000; + public static final int common_google_play_services_unsupported_text=0x7f070009; + public static final int common_google_play_services_update_button=0x7f07000a; + public static final int common_google_play_services_update_text=0x7f07000b; + public static final int common_google_play_services_update_title=0x7f07000c; + public static final int common_google_play_services_updating_text=0x7f07000d; + public static final int common_google_play_services_wear_update_text=0x7f07000e; + public static final int common_open_on_phone=0x7f07000f; + public static final int common_signin_button_text=0x7f070010; + public static final int common_signin_button_text_long=0x7f070011; + public static final int status_bar_notification_info_overflow=0x7f070012; + } + public static final class style { + public static final int DarkTheme=0x7f0a000d; + public static final int TextAppearance_Compat_Notification=0x7f0a0006; + public static final int TextAppearance_Compat_Notification_Info=0x7f0a0007; + public static final int TextAppearance_Compat_Notification_Info_Media=0x7f0a0001; + public static final int TextAppearance_Compat_Notification_Line2=0x7f0a000c; + public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0a0005; + public static final int TextAppearance_Compat_Notification_Media=0x7f0a0002; + public static final int TextAppearance_Compat_Notification_Time=0x7f0a0008; + public static final int TextAppearance_Compat_Notification_Time_Media=0x7f0a0003; + public static final int TextAppearance_Compat_Notification_Title=0x7f0a0009; + public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0a0004; + public static final int Widget_Compat_NotificationActionContainer=0x7f0a000a; + public static final int Widget_Compat_NotificationActionText=0x7f0a000b; + public static final int Widget_Support_CoordinatorLayout=0x7f0a0000; + } + public static final class styleable { + /** Attributes that can be used with a ColorStateListItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ColorStateListItem_alpha b4a.rocklogster:alpha} Alpha multiplier applied to the base color.
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_android_color android:color} Base color for this state.
+ @see #ColorStateListItem_alpha + @see #ColorStateListItem_android_alpha + @see #ColorStateListItem_android_color + */ + public static final int[] ColorStateListItem = { + 0x010101a5, 0x0101031f, 0x7f010027 + }; + /** +

+ @attr description + Alpha multiplier applied to the base color. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:alpha + */ + public static final int ColorStateListItem_alpha = 2; + /** +

This symbol is the offset where the {@link android.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha = 1; + /** +

+ @attr description + Base color for this state. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#color}. + @attr name android:color + */ + public static final int ColorStateListItem_android_color = 0; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines b4a.rocklogster:keylines} A reference to an array of integers representing the + locations of horizontal keylines in dp from the starting edge.
{@link #CoordinatorLayout_statusBarBackground b4a.rocklogster:statusBarBackground} Drawable to display behind the status bar when the view is set to draw behind it.
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f01001f, 0x7f010020 + }; + /** +

+ @attr description + A reference to an array of integers representing the + locations of horizontal keylines in dp from the starting edge. + Child views can refer to these keylines for alignment using + layout_keyline="index" where index is a 0-based index into + this array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:keylines + */ + public static final int CoordinatorLayout_keylines = 0; + /** +

+ @attr description + Drawable to display behind the status bar when the view is set to draw behind it. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This is a private symbol. + @attr name b4a.rocklogster:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_Layout. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor b4a.rocklogster:layout_anchor} The id of an anchor view that this view should position relative to.
{@link #CoordinatorLayout_Layout_layout_anchorGravity b4a.rocklogster:layout_anchorGravity} Specifies how an object should position relative to an anchor, on both the X and Y axes, + within its parent's bounds.
{@link #CoordinatorLayout_Layout_layout_behavior b4a.rocklogster:layout_behavior} The class name of a Behavior class defining special runtime behavior + for this child view.
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges b4a.rocklogster:layout_dodgeInsetEdges} Specifies how this view dodges the inset edges of the CoordinatorLayout.
{@link #CoordinatorLayout_Layout_layout_insetEdge b4a.rocklogster:layout_insetEdge} Specifies how this view insets the CoordinatorLayout and make some other views + dodge it.
{@link #CoordinatorLayout_Layout_layout_keyline b4a.rocklogster:layout_keyline} The index of a keyline this view should position relative to.
+ @see #CoordinatorLayout_Layout_android_layout_gravity + @see #CoordinatorLayout_Layout_layout_anchor + @see #CoordinatorLayout_Layout_layout_anchorGravity + @see #CoordinatorLayout_Layout_layout_behavior + @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + @see #CoordinatorLayout_Layout_layout_insetEdge + @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout = { + 0x010100b3, 0x7f010021, 0x7f010022, 0x7f010023, + 0x7f010024, 0x7f010025, 0x7f010026 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + /** +

+ @attr description + The id of an anchor view that this view should position relative to. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor = 2; + /** +

+ @attr description + Specifies how an object should position relative to an anchor, on both the X and Y axes, + within its parent's bounds. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+

This is a private symbol. + @attr name b4a.rocklogster:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; + /** +

+ @attr description + The class name of a Behavior class defining special runtime behavior + for this child view. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior = 1; + /** +

+ @attr description + Specifies how this view dodges the inset edges of the CoordinatorLayout. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0 Don't dodge any edges
top0x30 Dodge the top inset edge.
bottom0x50 Dodge the bottom inset edge.
left0x03 Dodge the left inset edge.
right0x05 Dodge the right inset edge.
start0x00800003 Dodge the start inset edge.
end0x00800005 Dodge the end inset edge.
all0x77 Dodge all the inset edges.
+

This is a private symbol. + @attr name b4a.rocklogster:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; + /** +

+ @attr description + Specifies how this view insets the CoordinatorLayout and make some other views + dodge it. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0 Don't inset.
top0x30 Inset the top edge.
bottom0x50 Inset the bottom edge.
left0x03 Inset the left edge.
right0x05 Inset the right edge.
start0x00800003 Inset the start edge.
end0x00800005 Inset the end edge.
+

This is a private symbol. + @attr name b4a.rocklogster:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + /** +

+ @attr description + The index of a keyline this view should position relative to. + android:layout_gravity will affect how the view aligns to the + specified keyline. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline = 3; + /** Attributes that can be used with a FontFamily. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #FontFamily_fontProviderAuthority b4a.rocklogster:fontProviderAuthority} The authority of the Font Provider to be used for the request.
{@link #FontFamily_fontProviderCerts b4a.rocklogster:fontProviderCerts} The sets of hashes for the certificates the provider should be signed with.
{@link #FontFamily_fontProviderFetchStrategy b4a.rocklogster:fontProviderFetchStrategy} The strategy to be used when fetching font data from a font provider in XML layouts.
{@link #FontFamily_fontProviderFetchTimeout b4a.rocklogster:fontProviderFetchTimeout} The length of the timeout during fetching.
{@link #FontFamily_fontProviderPackage b4a.rocklogster:fontProviderPackage} The package for the Font Provider to be used for the request.
{@link #FontFamily_fontProviderQuery b4a.rocklogster:fontProviderQuery} The query to be sent over to the provider.
+ @see #FontFamily_fontProviderAuthority + @see #FontFamily_fontProviderCerts + @see #FontFamily_fontProviderFetchStrategy + @see #FontFamily_fontProviderFetchTimeout + @see #FontFamily_fontProviderPackage + @see #FontFamily_fontProviderQuery + */ + public static final int[] FontFamily = { + 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, + 0x7f01002c, 0x7f01002d + }; + /** +

+ @attr description + The authority of the Font Provider to be used for the request. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority = 0; + /** +

+ @attr description + The sets of hashes for the certificates the provider should be signed with. This is + used to verify the identity of the provider, and is only required if the provider is not + part of the system image. This value may point to one list or a list of lists, where each + individual list represents one collection of signature hashes. Refer to your font provider's + documentation for these values. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts = 3; + /** +

+ @attr description + The strategy to be used when fetching font data from a font provider in XML layouts. + This attribute is ignored when the resource is loaded from code, as it is equivalent to the + choice of API between {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and + {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} + (async). + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0 The blocking font fetch works as follows. + First, check the local cache, then if the requested font is not cached, request the + font from the provider and wait until it is finished. You can change the length of + the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the + default typeface will be used instead.
async1 The async font fetch works as follows. + First, check the local cache, then if the requeted font is not cached, trigger a + request the font and continue with layout inflation. Once the font fetch succeeds, the + target text view will be refreshed with the downloaded font data. The + fontProviderFetchTimeout will be ignored if async loading is specified.
+

This is a private symbol. + @attr name b4a.rocklogster:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy = 4; + /** +

+ @attr description + The length of the timeout during fetching. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1 A special value for the timeout. In this case, the blocking font fetching will not + timeout and wait until a reply is received from the font provider.
+

This is a private symbol. + @attr name b4a.rocklogster:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout = 5; + /** +

+ @attr description + The package for the Font Provider to be used for the request. This is used to verify + the identity of the provider. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage = 1; + /** +

+ @attr description + The query to be sent over to the provider. Refer to your font provider's documentation + on the format of this string. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery = 2; + /** Attributes that can be used with a FontFamilyFont. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #FontFamilyFont_android_font android:font}
{@link #FontFamilyFont_android_fontStyle android:fontStyle} References to the framework attrs
{@link #FontFamilyFont_android_fontVariationSettings android:fontVariationSettings}
{@link #FontFamilyFont_android_fontWeight android:fontWeight}
{@link #FontFamilyFont_android_ttcIndex android:ttcIndex}
{@link #FontFamilyFont_font b4a.rocklogster:font} The reference to the font file to be used.
{@link #FontFamilyFont_fontStyle b4a.rocklogster:fontStyle} The style of the given font file.
{@link #FontFamilyFont_fontVariationSettings b4a.rocklogster:fontVariationSettings} The variation settings to be applied to the font.
{@link #FontFamilyFont_fontWeight b4a.rocklogster:fontWeight} The weight of the given font file.
{@link #FontFamilyFont_ttcIndex b4a.rocklogster:ttcIndex} The index of the font in the tcc font file.
+ @see #FontFamilyFont_android_font + @see #FontFamilyFont_android_fontStyle + @see #FontFamilyFont_android_fontVariationSettings + @see #FontFamilyFont_android_fontWeight + @see #FontFamilyFont_android_ttcIndex + @see #FontFamilyFont_font + @see #FontFamilyFont_fontStyle + @see #FontFamilyFont_fontVariationSettings + @see #FontFamilyFont_fontWeight + @see #FontFamilyFont_ttcIndex + */ + public static final int[] FontFamilyFont = { + 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, + 0x01010570, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010032 + }; + /** +

This symbol is the offset where the {@link android.R.attr#font} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:font + */ + public static final int FontFamilyFont_android_font = 0; + /** +

+ @attr description + References to the framework attrs +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fontStyle}. + @attr name android:fontStyle + */ + public static final int FontFamilyFont_android_fontStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#fontVariationSettings} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:fontVariationSettings + */ + public static final int FontFamilyFont_android_fontVariationSettings = 4; + /** +

This symbol is the offset where the {@link android.R.attr#fontWeight} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:fontWeight + */ + public static final int FontFamilyFont_android_fontWeight = 1; + /** +

This symbol is the offset where the {@link android.R.attr#ttcIndex} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:ttcIndex + */ + public static final int FontFamilyFont_android_ttcIndex = 3; + /** +

+ @attr description + The reference to the font file to be used. This should be a file in the res/font folder + and should therefore have an R reference value. E.g. @font/myfont + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:font + */ + public static final int FontFamilyFont_font = 6; + /** +

+ @attr description + The style of the given font file. This will be used when the font is being loaded into + the font stack and will override any style information in the font's header tables. If + unspecified, the value in the font's header tables will be used. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+

This is a private symbol. + @attr name b4a.rocklogster:fontStyle + */ + public static final int FontFamilyFont_fontStyle = 5; + /** +

+ @attr description + The variation settings to be applied to the font. The string should be in the following + format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be + used, or the font used does not support variation settings, this attribute needs not be + specified. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontVariationSettings + */ + public static final int FontFamilyFont_fontVariationSettings = 8; + /** +

+ @attr description + The weight of the given font file. This will be used when the font is being loaded into + the font stack and will override any weight information in the font's header tables. Must + be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most + common values are 400 for regular weight and 700 for bold weight. If unspecified, the value + in the font's header tables will be used. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontWeight + */ + public static final int FontFamilyFont_fontWeight = 7; + /** +

+ @attr description + The index of the font in the tcc font file. If the font file referenced is not in the + tcc format, this attribute needs not be specified. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:ttcIndex + */ + public static final int FontFamilyFont_ttcIndex = 9; + /** Attributes that can be used with a Fragment. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #Fragment_android_id android:id}
{@link #Fragment_android_name android:name}
{@link #Fragment_android_tag android:tag}
+ @see #Fragment_android_id + @see #Fragment_android_name + @see #Fragment_android_tag + */ + public static final int[] Fragment = { + 0x01010003, 0x010100d0, 0x010100d1 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #Fragment} array. + @attr name android:id + */ + public static final int Fragment_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#name} + attribute's value can be found in the {@link #Fragment} array. + @attr name android:name + */ + public static final int Fragment_android_name = 0; + /** +

This symbol is the offset where the {@link android.R.attr#tag} + attribute's value can be found in the {@link #Fragment} array. + @attr name android:tag + */ + public static final int Fragment_android_tag = 2; + /** Attributes that can be used with a FragmentContainerView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #FragmentContainerView_android_name android:name}
{@link #FragmentContainerView_android_tag android:tag}
+ @see #FragmentContainerView_android_name + @see #FragmentContainerView_android_tag + */ + public static final int[] FragmentContainerView = { + 0x01010003, 0x010100d1 + }; + /** +

This symbol is the offset where the {@link android.R.attr#name} + attribute's value can be found in the {@link #FragmentContainerView} array. + @attr name android:name + */ + public static final int FragmentContainerView_android_name = 0; + /** +

This symbol is the offset where the {@link android.R.attr#tag} + attribute's value can be found in the {@link #FragmentContainerView} array. + @attr name android:tag + */ + public static final int FragmentContainerView_android_tag = 1; + /** Attributes that can be used with a GradientColor. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + +
AttributeDescription
{@link #GradientColor_android_centerColor android:centerColor} Optional center color.
{@link #GradientColor_android_centerX android:centerX} Only applied to SweepGradient / RadialGradient + X coordinate of the center of the gradient within the path.
{@link #GradientColor_android_centerY android:centerY} Y coordinate of the center of the gradient within the path.
{@link #GradientColor_android_endColor android:endColor} End color of the gradient.
{@link #GradientColor_android_endX android:endX} X coordinate of the end point origin of the gradient.
{@link #GradientColor_android_endY android:endY} Y coordinate of the end point of the gradient within the shape.
{@link #GradientColor_android_gradientRadius android:gradientRadius} Only applied to RadialGradient + Radius of the gradient, used only with radial gradient.
{@link #GradientColor_android_startColor android:startColor} Start color of the gradient.
{@link #GradientColor_android_startX android:startX} LinearGradient specific + X coordinate of the start point origin of the gradient.
{@link #GradientColor_android_startY android:startY} Y coordinate of the start point of the gradient within the shape.
{@link #GradientColor_android_tileMode android:tileMode} Defines the tile mode of the gradient.
{@link #GradientColor_android_type android:type} Type of gradient.
+ @see #GradientColor_android_centerColor + @see #GradientColor_android_centerX + @see #GradientColor_android_centerY + @see #GradientColor_android_endColor + @see #GradientColor_android_endX + @see #GradientColor_android_endY + @see #GradientColor_android_gradientRadius + @see #GradientColor_android_startColor + @see #GradientColor_android_startX + @see #GradientColor_android_startY + @see #GradientColor_android_tileMode + @see #GradientColor_android_type + */ + public static final int[] GradientColor = { + 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, + 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, + 0x01010510, 0x01010511, 0x01010512, 0x01010513 + }; + /** +

+ @attr description + Optional center color. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerColor}. + @attr name android:centerColor + */ + public static final int GradientColor_android_centerColor = 7; + /** +

+ @attr description + Only applied to SweepGradient / RadialGradient + X coordinate of the center of the gradient within the path. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerX}. + @attr name android:centerX + */ + public static final int GradientColor_android_centerX = 3; + /** +

+ @attr description + Y coordinate of the center of the gradient within the path. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerY}. + @attr name android:centerY + */ + public static final int GradientColor_android_centerY = 4; + /** +

+ @attr description + End color of the gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#endColor}. + @attr name android:endColor + */ + public static final int GradientColor_android_endColor = 1; + /** +

+ @attr description + X coordinate of the end point origin of the gradient. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#endX}. + @attr name android:endX + */ + public static final int GradientColor_android_endX = 10; + /** +

+ @attr description + Y coordinate of the end point of the gradient within the shape. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#endY}. + @attr name android:endY + */ + public static final int GradientColor_android_endY = 11; + /** +

+ @attr description + Only applied to RadialGradient + Radius of the gradient, used only with radial gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#gradientRadius}. + @attr name android:gradientRadius + */ + public static final int GradientColor_android_gradientRadius = 5; + /** +

+ @attr description + Start color of the gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startColor}. + @attr name android:startColor + */ + public static final int GradientColor_android_startColor = 0; + /** +

+ @attr description + LinearGradient specific + X coordinate of the start point origin of the gradient. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startX}. + @attr name android:startX + */ + public static final int GradientColor_android_startX = 8; + /** +

+ @attr description + Y coordinate of the start point of the gradient within the shape. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startY}. + @attr name android:startY + */ + public static final int GradientColor_android_startY = 9; + /** +

+ @attr description + Defines the tile mode of the gradient. SweepGradient doesn't support tiling. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#tileMode}. + @attr name android:tileMode + */ + public static final int GradientColor_android_tileMode = 6; + /** +

+ @attr description + Type of gradient. The default type is linear. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#type}. + @attr name android:type + */ + public static final int GradientColor_android_type = 2; + /** Attributes that can be used with a GradientColorItem. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #GradientColorItem_android_color android:color} The current color for the offset inside the gradient.
{@link #GradientColorItem_android_offset android:offset} The offset (or ratio) of this current color item inside the gradient.
+ @see #GradientColorItem_android_color + @see #GradientColorItem_android_offset + */ + public static final int[] GradientColorItem = { + 0x010101a5, 0x01010514 + }; + /** +

+ @attr description + The current color for the offset inside the gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#color}. + @attr name android:color + */ + public static final int GradientColorItem_android_color = 0; + /** +

+ @attr description + The offset (or ratio) of this current color item inside the gradient. + The value is only meaningful when it is between 0 and 1. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#offset}. + @attr name android:offset + */ + public static final int GradientColorItem_android_offset = 1; + /** Attributes that can be used with a LoadingImageView. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #LoadingImageView_circleCrop b4a.rocklogster:circleCrop}
{@link #LoadingImageView_imageAspectRatio b4a.rocklogster:imageAspectRatio}
{@link #LoadingImageView_imageAspectRatioAdjust b4a.rocklogster:imageAspectRatioAdjust}
+ @see #LoadingImageView_circleCrop + @see #LoadingImageView_imageAspectRatio + @see #LoadingImageView_imageAspectRatioAdjust + */ + public static final int[] LoadingImageView = { + 0x7f010000, 0x7f010001, 0x7f010002 + }; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#circleCrop} + attribute's value can be found in the {@link #LoadingImageView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:circleCrop + */ + public static final int LoadingImageView_circleCrop = 2; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#imageAspectRatio} + attribute's value can be found in the {@link #LoadingImageView} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:imageAspectRatio + */ + public static final int LoadingImageView_imageAspectRatio = 1; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#imageAspectRatioAdjust} + attribute's value can be found in the {@link #LoadingImageView} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
adjust_width1
adjust_height2
+ @attr name b4a.rocklogster:imageAspectRatioAdjust + */ + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + /** Attributes that can be used with a MapAttrs. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MapAttrs_ambientEnabled b4a.rocklogster:ambientEnabled}
{@link #MapAttrs_cameraBearing b4a.rocklogster:cameraBearing}
{@link #MapAttrs_cameraMaxZoomPreference b4a.rocklogster:cameraMaxZoomPreference}
{@link #MapAttrs_cameraMinZoomPreference b4a.rocklogster:cameraMinZoomPreference}
{@link #MapAttrs_cameraTargetLat b4a.rocklogster:cameraTargetLat}
{@link #MapAttrs_cameraTargetLng b4a.rocklogster:cameraTargetLng}
{@link #MapAttrs_cameraTilt b4a.rocklogster:cameraTilt}
{@link #MapAttrs_cameraZoom b4a.rocklogster:cameraZoom}
{@link #MapAttrs_latLngBoundsNorthEastLatitude b4a.rocklogster:latLngBoundsNorthEastLatitude}
{@link #MapAttrs_latLngBoundsNorthEastLongitude b4a.rocklogster:latLngBoundsNorthEastLongitude}
{@link #MapAttrs_latLngBoundsSouthWestLatitude b4a.rocklogster:latLngBoundsSouthWestLatitude}
{@link #MapAttrs_latLngBoundsSouthWestLongitude b4a.rocklogster:latLngBoundsSouthWestLongitude}
{@link #MapAttrs_liteMode b4a.rocklogster:liteMode}
{@link #MapAttrs_mapType b4a.rocklogster:mapType}
{@link #MapAttrs_uiCompass b4a.rocklogster:uiCompass}
{@link #MapAttrs_uiMapToolbar b4a.rocklogster:uiMapToolbar}
{@link #MapAttrs_uiRotateGestures b4a.rocklogster:uiRotateGestures}
{@link #MapAttrs_uiScrollGestures b4a.rocklogster:uiScrollGestures}
{@link #MapAttrs_uiScrollGesturesDuringRotateOrZoom b4a.rocklogster:uiScrollGesturesDuringRotateOrZoom}
{@link #MapAttrs_uiTiltGestures b4a.rocklogster:uiTiltGestures}
{@link #MapAttrs_uiZoomControls b4a.rocklogster:uiZoomControls}
{@link #MapAttrs_uiZoomGestures b4a.rocklogster:uiZoomGestures}
{@link #MapAttrs_useViewLifecycle b4a.rocklogster:useViewLifecycle}
{@link #MapAttrs_zOrderOnTop b4a.rocklogster:zOrderOnTop}
+ @see #MapAttrs_ambientEnabled + @see #MapAttrs_cameraBearing + @see #MapAttrs_cameraMaxZoomPreference + @see #MapAttrs_cameraMinZoomPreference + @see #MapAttrs_cameraTargetLat + @see #MapAttrs_cameraTargetLng + @see #MapAttrs_cameraTilt + @see #MapAttrs_cameraZoom + @see #MapAttrs_latLngBoundsNorthEastLatitude + @see #MapAttrs_latLngBoundsNorthEastLongitude + @see #MapAttrs_latLngBoundsSouthWestLatitude + @see #MapAttrs_latLngBoundsSouthWestLongitude + @see #MapAttrs_liteMode + @see #MapAttrs_mapType + @see #MapAttrs_uiCompass + @see #MapAttrs_uiMapToolbar + @see #MapAttrs_uiRotateGestures + @see #MapAttrs_uiScrollGestures + @see #MapAttrs_uiScrollGesturesDuringRotateOrZoom + @see #MapAttrs_uiTiltGestures + @see #MapAttrs_uiZoomControls + @see #MapAttrs_uiZoomGestures + @see #MapAttrs_useViewLifecycle + @see #MapAttrs_zOrderOnTop + */ + public static final int[] MapAttrs = { + 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, + 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, + 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, + 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, + 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, + 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d + }; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#ambientEnabled} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:ambientEnabled + */ + public static final int MapAttrs_ambientEnabled = 17; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraBearing} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraBearing + */ + public static final int MapAttrs_cameraBearing = 1; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraMaxZoomPreference} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraMaxZoomPreference + */ + public static final int MapAttrs_cameraMaxZoomPreference = 19; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraMinZoomPreference} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraMinZoomPreference + */ + public static final int MapAttrs_cameraMinZoomPreference = 18; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraTargetLat} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraTargetLat + */ + public static final int MapAttrs_cameraTargetLat = 2; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraTargetLng} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraTargetLng + */ + public static final int MapAttrs_cameraTargetLng = 3; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraTilt} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraTilt + */ + public static final int MapAttrs_cameraTilt = 4; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraZoom} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraZoom + */ + public static final int MapAttrs_cameraZoom = 5; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsNorthEastLatitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsNorthEastLatitude + */ + public static final int MapAttrs_latLngBoundsNorthEastLatitude = 22; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsNorthEastLongitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsNorthEastLongitude + */ + public static final int MapAttrs_latLngBoundsNorthEastLongitude = 23; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsSouthWestLatitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsSouthWestLatitude + */ + public static final int MapAttrs_latLngBoundsSouthWestLatitude = 20; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsSouthWestLongitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsSouthWestLongitude + */ + public static final int MapAttrs_latLngBoundsSouthWestLongitude = 21; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#liteMode} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:liteMode + */ + public static final int MapAttrs_liteMode = 6; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#mapType} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
none0
normal1
satellite2
terrain3
hybrid4
+ @attr name b4a.rocklogster:mapType + */ + public static final int MapAttrs_mapType = 0; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiCompass} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiCompass + */ + public static final int MapAttrs_uiCompass = 7; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiMapToolbar} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiMapToolbar + */ + public static final int MapAttrs_uiMapToolbar = 16; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiRotateGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiRotateGestures + */ + public static final int MapAttrs_uiRotateGestures = 8; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiScrollGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiScrollGestures + */ + public static final int MapAttrs_uiScrollGestures = 9; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiScrollGesturesDuringRotateOrZoom} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiScrollGesturesDuringRotateOrZoom + */ + public static final int MapAttrs_uiScrollGesturesDuringRotateOrZoom = 10; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiTiltGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiTiltGestures + */ + public static final int MapAttrs_uiTiltGestures = 11; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiZoomControls} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiZoomControls + */ + public static final int MapAttrs_uiZoomControls = 12; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiZoomGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiZoomGestures + */ + public static final int MapAttrs_uiZoomGestures = 13; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#useViewLifecycle} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:useViewLifecycle + */ + public static final int MapAttrs_useViewLifecycle = 14; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#zOrderOnTop} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:zOrderOnTop + */ + public static final int MapAttrs_zOrderOnTop = 15; + /** Attributes that can be used with a SignInButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SignInButton_buttonSize b4a.rocklogster:buttonSize}
{@link #SignInButton_colorScheme b4a.rocklogster:colorScheme}
{@link #SignInButton_scopeUris b4a.rocklogster:scopeUris}
+ @see #SignInButton_buttonSize + @see #SignInButton_colorScheme + @see #SignInButton_scopeUris + */ + public static final int[] SignInButton = { + 0x7f010003, 0x7f010004, 0x7f010005 + }; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#buttonSize} + attribute's value can be found in the {@link #SignInButton} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
standard0
wide1
icon_only2
+ @attr name b4a.rocklogster:buttonSize + */ + public static final int SignInButton_buttonSize = 0; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#colorScheme} + attribute's value can be found in the {@link #SignInButton} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
dark0
light1
auto2
+ @attr name b4a.rocklogster:colorScheme + */ + public static final int SignInButton_colorScheme = 1; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#scopeUris} + attribute's value can be found in the {@link #SignInButton} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. + @attr name b4a.rocklogster:scopeUris + */ + public static final int SignInButton_scopeUris = 2; + }; +} diff --git a/Objects/gen/b4a/rocklogster/R.java b/Objects/gen/b4a/rocklogster/R.java new file mode 100644 index 0000000..5b844ae --- /dev/null +++ b/Objects/gen/b4a/rocklogster/R.java @@ -0,0 +1,2150 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package b4a.rocklogster; + +public final class R { + public static final class anim { + public static final int fragment_close_enter=0x7f050000; + public static final int fragment_close_exit=0x7f050001; + public static final int fragment_fade_enter=0x7f050002; + public static final int fragment_fade_exit=0x7f050003; + public static final int fragment_fast_out_extra_slow_in=0x7f050004; + public static final int fragment_open_enter=0x7f050005; + public static final int fragment_open_exit=0x7f050006; + } + public static final class attr { + /** Alpha multiplier applied to the base color. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alpha=0x7f010027; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int ambientEnabled=0x7f010017; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
standard0
wide1
icon_only2
+ */ + public static final int buttonSize=0x7f010003; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraBearing=0x7f010007; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraMaxZoomPreference=0x7f010019; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraMinZoomPreference=0x7f010018; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraTargetLat=0x7f010008; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraTargetLng=0x7f010009; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraTilt=0x7f01000a; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraZoom=0x7f01000b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int circleCrop=0x7f010002; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
dark0
light1
auto2
+ */ + public static final int colorScheme=0x7f010004; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int coordinatorLayoutStyle=0x7f01001e; + /** The reference to the font file to be used. This should be a file in the res/font folder + and should therefore have an R reference value. E.g. @font/myfont +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int font=0x7f01002f; + /** The authority of the Font Provider to be used for the request. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderAuthority=0x7f010028; + /** The sets of hashes for the certificates the provider should be signed with. This is + used to verify the identity of the provider, and is only required if the provider is not + part of the system image. This value may point to one list or a list of lists, where each + individual list represents one collection of signature hashes. Refer to your font provider's + documentation for these values. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fontProviderCerts=0x7f01002b; + /** The strategy to be used when fetching font data from a font provider in XML layouts. + This attribute is ignored when the resource is loaded from code, as it is equivalent to the + choice of API between {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and + {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} + (async). +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0 The blocking font fetch works as follows. + First, check the local cache, then if the requested font is not cached, request the + font from the provider and wait until it is finished. You can change the length of + the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the + default typeface will be used instead.
async1 The async font fetch works as follows. + First, check the local cache, then if the requeted font is not cached, trigger a + request the font and continue with layout inflation. Once the font fetch succeeds, the + target text view will be refreshed with the downloaded font data. The + fontProviderFetchTimeout will be ignored if async loading is specified.
+ */ + public static final int fontProviderFetchStrategy=0x7f01002c; + /** The length of the timeout during fetching. +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1 A special value for the timeout. In this case, the blocking font fetching will not + timeout and wait until a reply is received from the font provider.
+ */ + public static final int fontProviderFetchTimeout=0x7f01002d; + /** The package for the Font Provider to be used for the request. This is used to verify + the identity of the provider. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderPackage=0x7f010029; + /** The query to be sent over to the provider. Refer to your font provider's documentation + on the format of this string. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderQuery=0x7f01002a; + /** The style of the given font file. This will be used when the font is being loaded into + the font stack and will override any style information in the font's header tables. If + unspecified, the value in the font's header tables will be used. +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ */ + public static final int fontStyle=0x7f01002e; + /** The variation settings to be applied to the font. The string should be in the following + format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be + used, or the font used does not support variation settings, this attribute needs not be + specified. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontVariationSettings=0x7f010031; + /** The weight of the given font file. This will be used when the font is being loaded into + the font stack and will override any weight information in the font's header tables. Must + be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most + common values are 400 for regular weight and 700 for bold weight. If unspecified, the value + in the font's header tables will be used. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontWeight=0x7f010030; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int imageAspectRatio=0x7f010001; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
adjust_width1
adjust_height2
+ */ + public static final int imageAspectRatioAdjust=0x7f010000; + /** A reference to an array of integers representing the + locations of horizontal keylines in dp from the starting edge. + Child views can refer to these keylines for alignment using + layout_keyline="index" where index is a 0-based index into + this array. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keylines=0x7f01001f; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsNorthEastLatitude=0x7f01001c; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsNorthEastLongitude=0x7f01001d; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsSouthWestLatitude=0x7f01001a; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsSouthWestLongitude=0x7f01001b; + /** The id of an anchor view that this view should position relative to. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_anchor=0x7f010022; + /** Specifies how an object should position relative to an anchor, on both the X and Y axes, + within its parent's bounds. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+ */ + public static final int layout_anchorGravity=0x7f010024; + /** The class name of a Behavior class defining special runtime behavior + for this child view. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_behavior=0x7f010021; + /** Specifies how this view dodges the inset edges of the CoordinatorLayout. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0 Don't dodge any edges
top0x30 Dodge the top inset edge.
bottom0x50 Dodge the bottom inset edge.
left0x03 Dodge the left inset edge.
right0x05 Dodge the right inset edge.
start0x00800003 Dodge the start inset edge.
end0x00800005 Dodge the end inset edge.
all0x77 Dodge all the inset edges.
+ */ + public static final int layout_dodgeInsetEdges=0x7f010026; + /** Specifies how this view insets the CoordinatorLayout and make some other views + dodge it. +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0 Don't inset.
top0x30 Inset the top edge.
bottom0x50 Inset the bottom edge.
left0x03 Inset the left edge.
right0x05 Inset the right edge.
start0x00800003 Inset the start edge.
end0x00800005 Inset the end edge.
+ */ + public static final int layout_insetEdge=0x7f010025; + /** The index of a keyline this view should position relative to. + android:layout_gravity will affect how the view aligns to the + specified keyline. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_keyline=0x7f010023; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int liteMode=0x7f01000c; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
none0
normal1
satellite2
terrain3
hybrid4
+ */ + public static final int mapType=0x7f010006; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. + */ + public static final int scopeUris=0x7f010005; + /** Drawable to display behind the status bar when the view is set to draw behind it. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int statusBarBackground=0x7f010020; + /** The index of the font in the tcc font file. If the font file referenced is not in the + tcc format, this attribute needs not be specified. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int ttcIndex=0x7f010032; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiCompass=0x7f01000d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiMapToolbar=0x7f010016; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiRotateGestures=0x7f01000e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiScrollGestures=0x7f01000f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiScrollGesturesDuringRotateOrZoom=0x7f010010; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiTiltGestures=0x7f010011; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiZoomControls=0x7f010012; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiZoomGestures=0x7f010013; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useViewLifecycle=0x7f010014; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int zOrderOnTop=0x7f010015; + } + public static final class color { + public static final int common_google_signin_btn_text_dark=0x7f08000f; + public static final int common_google_signin_btn_text_dark_default=0x7f080000; + public static final int common_google_signin_btn_text_dark_disabled=0x7f080001; + public static final int common_google_signin_btn_text_dark_focused=0x7f080002; + public static final int common_google_signin_btn_text_dark_pressed=0x7f080003; + public static final int common_google_signin_btn_text_light=0x7f080010; + public static final int common_google_signin_btn_text_light_default=0x7f080004; + public static final int common_google_signin_btn_text_light_disabled=0x7f080005; + public static final int common_google_signin_btn_text_light_focused=0x7f080006; + public static final int common_google_signin_btn_text_light_pressed=0x7f080007; + public static final int common_google_signin_btn_tint=0x7f080011; + public static final int notification_action_color_filter=0x7f08000b; + public static final int notification_icon_bg_color=0x7f08000c; + public static final int notification_material_background_media_default_color=0x7f080008; + public static final int primary_text_default_material_dark=0x7f080009; + public static final int ripple_material_light=0x7f08000d; + public static final int secondary_text_default_material_dark=0x7f08000a; + public static final int secondary_text_default_material_light=0x7f08000e; + } + public static final class dimen { + public static final int compat_button_inset_horizontal_material=0x7f0b0008; + public static final int compat_button_inset_vertical_material=0x7f0b0009; + public static final int compat_button_padding_horizontal_material=0x7f0b000a; + public static final int compat_button_padding_vertical_material=0x7f0b000b; + public static final int compat_control_corner_material=0x7f0b000c; + public static final int compat_notification_large_icon_max_height=0x7f0b000d; + public static final int compat_notification_large_icon_max_width=0x7f0b000e; + public static final int notification_action_icon_size=0x7f0b000f; + public static final int notification_action_text_size=0x7f0b0010; + public static final int notification_big_circle_margin=0x7f0b0011; + public static final int notification_content_margin_start=0x7f0b0005; + public static final int notification_large_icon_height=0x7f0b0012; + public static final int notification_large_icon_width=0x7f0b0013; + public static final int notification_main_column_padding_top=0x7f0b0006; + public static final int notification_media_narrow_margin=0x7f0b0007; + public static final int notification_right_icon_size=0x7f0b0014; + public static final int notification_right_side_padding_top=0x7f0b0004; + public static final int notification_small_icon_background_padding=0x7f0b0015; + public static final int notification_small_icon_size_as_large=0x7f0b0016; + public static final int notification_subtext_size=0x7f0b0017; + public static final int notification_top_pad=0x7f0b0018; + public static final int notification_top_pad_large_text=0x7f0b0019; + public static final int subtitle_corner_radius=0x7f0b0000; + public static final int subtitle_outline_width=0x7f0b0001; + public static final int subtitle_shadow_offset=0x7f0b0002; + public static final int subtitle_shadow_radius=0x7f0b0003; + } + public static final class drawable { + public static final int common_full_open_on_phone=0x7f020000; + public static final int common_google_signin_btn_icon_dark=0x7f020001; + public static final int common_google_signin_btn_icon_dark_focused=0x7f020002; + public static final int common_google_signin_btn_icon_dark_normal=0x7f020003; + public static final int common_google_signin_btn_icon_dark_normal_background=0x7f020004; + public static final int common_google_signin_btn_icon_disabled=0x7f020005; + public static final int common_google_signin_btn_icon_light=0x7f020006; + public static final int common_google_signin_btn_icon_light_focused=0x7f020007; + public static final int common_google_signin_btn_icon_light_normal=0x7f020008; + public static final int common_google_signin_btn_icon_light_normal_background=0x7f020009; + public static final int common_google_signin_btn_text_dark=0x7f02000a; + public static final int common_google_signin_btn_text_dark_focused=0x7f02000b; + public static final int common_google_signin_btn_text_dark_normal=0x7f02000c; + public static final int common_google_signin_btn_text_dark_normal_background=0x7f02000d; + public static final int common_google_signin_btn_text_disabled=0x7f02000e; + public static final int common_google_signin_btn_text_light=0x7f02000f; + public static final int common_google_signin_btn_text_light_focused=0x7f020010; + public static final int common_google_signin_btn_text_light_normal=0x7f020011; + public static final int common_google_signin_btn_text_light_normal_background=0x7f020012; + public static final int googleg_disabled_color_18=0x7f020013; + public static final int googleg_standard_color_18=0x7f020014; + public static final int icon=0x7f020015; + public static final int notification_action_background=0x7f020016; + public static final int notification_bg=0x7f020017; + public static final int notification_bg_low=0x7f020018; + public static final int notification_bg_low_normal=0x7f020019; + public static final int notification_bg_low_pressed=0x7f02001a; + public static final int notification_bg_normal=0x7f02001b; + public static final int notification_bg_normal_pressed=0x7f02001c; + public static final int notification_icon_background=0x7f02001d; + public static final int notification_template_icon_bg=0x7f020020; + public static final int notification_template_icon_low_bg=0x7f020021; + public static final int notification_tile_bg=0x7f02001e; + public static final int notify_panel_notification_icon_bg=0x7f02001f; + } + public static final class id { + public static final int accessibility_action_clickable_span=0x7f090002; + public static final int accessibility_custom_action_0=0x7f090003; + public static final int accessibility_custom_action_1=0x7f090004; + public static final int accessibility_custom_action_10=0x7f090005; + public static final int accessibility_custom_action_11=0x7f090006; + public static final int accessibility_custom_action_12=0x7f090007; + public static final int accessibility_custom_action_13=0x7f090008; + public static final int accessibility_custom_action_14=0x7f090009; + public static final int accessibility_custom_action_15=0x7f09000a; + public static final int accessibility_custom_action_16=0x7f09000b; + public static final int accessibility_custom_action_17=0x7f09000c; + public static final int accessibility_custom_action_18=0x7f09000d; + public static final int accessibility_custom_action_19=0x7f09000e; + public static final int accessibility_custom_action_2=0x7f09000f; + public static final int accessibility_custom_action_20=0x7f090010; + public static final int accessibility_custom_action_21=0x7f090011; + public static final int accessibility_custom_action_22=0x7f090012; + public static final int accessibility_custom_action_23=0x7f090013; + public static final int accessibility_custom_action_24=0x7f090014; + public static final int accessibility_custom_action_25=0x7f090015; + public static final int accessibility_custom_action_26=0x7f090016; + public static final int accessibility_custom_action_27=0x7f090017; + public static final int accessibility_custom_action_28=0x7f090018; + public static final int accessibility_custom_action_29=0x7f090019; + public static final int accessibility_custom_action_3=0x7f09001a; + public static final int accessibility_custom_action_30=0x7f09001b; + public static final int accessibility_custom_action_31=0x7f09001c; + public static final int accessibility_custom_action_4=0x7f09001d; + public static final int accessibility_custom_action_5=0x7f09001e; + public static final int accessibility_custom_action_6=0x7f09001f; + public static final int accessibility_custom_action_7=0x7f090020; + public static final int accessibility_custom_action_8=0x7f090021; + public static final int accessibility_custom_action_9=0x7f090022; + public static final int action0=0x7f090054; + public static final int action_container=0x7f090051; + public static final int action_divider=0x7f090058; + public static final int action_image=0x7f090052; + public static final int action_text=0x7f090053; + public static final int actions=0x7f090062; + public static final int adjust_height=0x7f090030; + public static final int adjust_width=0x7f090031; + public static final int all=0x7f09004b; + public static final int async=0x7f09004c; + public static final int auto=0x7f090036; + public static final int blocking=0x7f09004d; + public static final int bottom=0x7f09003d; + public static final int cancel_action=0x7f090055; + public static final int center=0x7f09003e; + public static final int center_horizontal=0x7f09003f; + public static final int center_vertical=0x7f090040; + public static final int chronometer=0x7f09005d; + public static final int clip_horizontal=0x7f090041; + public static final int clip_vertical=0x7f090042; + public static final int dark=0x7f090037; + public static final int dialog_button=0x7f090050; + public static final int end=0x7f090043; + public static final int end_padder=0x7f090064; + public static final int fill=0x7f090044; + public static final int fill_horizontal=0x7f090045; + public static final int fill_vertical=0x7f090046; + public static final int forever=0x7f09004e; + public static final int fragment_container_view_tag=0x7f090000; + public static final int hybrid=0x7f090039; + public static final int icon=0x7f09005f; + public static final int icon_group=0x7f090063; + public static final int icon_only=0x7f090033; + public static final int info=0x7f09005e; + public static final int italic=0x7f09004f; + public static final int left=0x7f090047; + public static final int light=0x7f090038; + public static final int line1=0x7f090023; + public static final int line3=0x7f090024; + public static final int media_actions=0x7f090057; + public static final int none=0x7f090032; + public static final int normal=0x7f09003a; + public static final int notification_background=0x7f090061; + public static final int notification_main_column=0x7f09005a; + public static final int notification_main_column_container=0x7f090059; + public static final int right=0x7f090048; + public static final int right_icon=0x7f090060; + public static final int right_side=0x7f09005b; + public static final int satellite=0x7f09003b; + public static final int standard=0x7f090034; + public static final int start=0x7f090049; + public static final int status_bar_latest_event_content=0x7f090056; + public static final int tag_accessibility_actions=0x7f090025; + public static final int tag_accessibility_clickable_spans=0x7f090026; + public static final int tag_accessibility_heading=0x7f090027; + public static final int tag_accessibility_pane_title=0x7f090028; + public static final int tag_screen_reader_focusable=0x7f090029; + public static final int tag_transition_group=0x7f09002a; + public static final int tag_unhandled_key_event_manager=0x7f09002b; + public static final int tag_unhandled_key_listeners=0x7f09002c; + public static final int terrain=0x7f09003c; + public static final int text=0x7f09002d; + public static final int text2=0x7f09002e; + public static final int time=0x7f09005c; + public static final int title=0x7f09002f; + public static final int top=0x7f09004a; + public static final int visible_removing_fragment_view_tag=0x7f090001; + public static final int wide=0x7f090035; + } + public static final class integer { + public static final int cancel_button_image_alpha=0x7f060001; + public static final int google_play_services_version=0x7f060000; + public static final int status_bar_notification_info_maxnum=0x7f060002; + } + public static final class layout { + public static final int custom_dialog=0x7f040000; + public static final int notification_action=0x7f040001; + public static final int notification_action_tombstone=0x7f040002; + public static final int notification_media_action=0x7f040003; + public static final int notification_media_cancel_action=0x7f040004; + public static final int notification_template_big_media=0x7f040005; + public static final int notification_template_big_media_custom=0x7f040006; + public static final int notification_template_big_media_narrow=0x7f040007; + public static final int notification_template_big_media_narrow_custom=0x7f040008; + public static final int notification_template_custom_big=0x7f040009; + public static final int notification_template_icon_group=0x7f04000a; + public static final int notification_template_lines_media=0x7f04000b; + public static final int notification_template_media=0x7f04000c; + public static final int notification_template_media_custom=0x7f04000d; + public static final int notification_template_part_chronometer=0x7f04000e; + public static final int notification_template_part_time=0x7f04000f; + } + public static final class mipmap { + public static final int background=0x7f030000; + public static final int foreground=0x7f030001; + public static final int ic_launcher=0x7f030002; + } + public static final class string { + public static final int common_google_play_services_enable_button=0x7f070001; + public static final int common_google_play_services_enable_text=0x7f070002; + public static final int common_google_play_services_enable_title=0x7f070003; + public static final int common_google_play_services_install_button=0x7f070004; + public static final int common_google_play_services_install_text=0x7f070005; + public static final int common_google_play_services_install_title=0x7f070006; + public static final int common_google_play_services_notification_channel_name=0x7f070007; + public static final int common_google_play_services_notification_ticker=0x7f070008; + public static final int common_google_play_services_unknown_issue=0x7f070000; + public static final int common_google_play_services_unsupported_text=0x7f070009; + public static final int common_google_play_services_update_button=0x7f07000a; + public static final int common_google_play_services_update_text=0x7f07000b; + public static final int common_google_play_services_update_title=0x7f07000c; + public static final int common_google_play_services_updating_text=0x7f07000d; + public static final int common_google_play_services_wear_update_text=0x7f07000e; + public static final int common_open_on_phone=0x7f07000f; + public static final int common_signin_button_text=0x7f070010; + public static final int common_signin_button_text_long=0x7f070011; + public static final int status_bar_notification_info_overflow=0x7f070012; + } + public static final class style { + public static final int DarkTheme=0x7f0a000d; + public static final int TextAppearance_Compat_Notification=0x7f0a0006; + public static final int TextAppearance_Compat_Notification_Info=0x7f0a0007; + public static final int TextAppearance_Compat_Notification_Info_Media=0x7f0a0001; + public static final int TextAppearance_Compat_Notification_Line2=0x7f0a000c; + public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0a0005; + public static final int TextAppearance_Compat_Notification_Media=0x7f0a0002; + public static final int TextAppearance_Compat_Notification_Time=0x7f0a0008; + public static final int TextAppearance_Compat_Notification_Time_Media=0x7f0a0003; + public static final int TextAppearance_Compat_Notification_Title=0x7f0a0009; + public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0a0004; + public static final int Widget_Compat_NotificationActionContainer=0x7f0a000a; + public static final int Widget_Compat_NotificationActionText=0x7f0a000b; + public static final int Widget_Support_CoordinatorLayout=0x7f0a0000; + } + public static final class styleable { + /** Attributes that can be used with a ColorStateListItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ColorStateListItem_alpha b4a.rocklogster:alpha} Alpha multiplier applied to the base color.
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_android_color android:color} Base color for this state.
+ @see #ColorStateListItem_alpha + @see #ColorStateListItem_android_alpha + @see #ColorStateListItem_android_color + */ + public static final int[] ColorStateListItem = { + 0x010101a5, 0x0101031f, 0x7f010027 + }; + /** +

+ @attr description + Alpha multiplier applied to the base color. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:alpha + */ + public static final int ColorStateListItem_alpha = 2; + /** +

This symbol is the offset where the {@link android.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha = 1; + /** +

+ @attr description + Base color for this state. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#color}. + @attr name android:color + */ + public static final int ColorStateListItem_android_color = 0; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines b4a.rocklogster:keylines} A reference to an array of integers representing the + locations of horizontal keylines in dp from the starting edge.
{@link #CoordinatorLayout_statusBarBackground b4a.rocklogster:statusBarBackground} Drawable to display behind the status bar when the view is set to draw behind it.
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f01001f, 0x7f010020 + }; + /** +

+ @attr description + A reference to an array of integers representing the + locations of horizontal keylines in dp from the starting edge. + Child views can refer to these keylines for alignment using + layout_keyline="index" where index is a 0-based index into + this array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:keylines + */ + public static final int CoordinatorLayout_keylines = 0; + /** +

+ @attr description + Drawable to display behind the status bar when the view is set to draw behind it. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This is a private symbol. + @attr name b4a.rocklogster:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_Layout. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor b4a.rocklogster:layout_anchor} The id of an anchor view that this view should position relative to.
{@link #CoordinatorLayout_Layout_layout_anchorGravity b4a.rocklogster:layout_anchorGravity} Specifies how an object should position relative to an anchor, on both the X and Y axes, + within its parent's bounds.
{@link #CoordinatorLayout_Layout_layout_behavior b4a.rocklogster:layout_behavior} The class name of a Behavior class defining special runtime behavior + for this child view.
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges b4a.rocklogster:layout_dodgeInsetEdges} Specifies how this view dodges the inset edges of the CoordinatorLayout.
{@link #CoordinatorLayout_Layout_layout_insetEdge b4a.rocklogster:layout_insetEdge} Specifies how this view insets the CoordinatorLayout and make some other views + dodge it.
{@link #CoordinatorLayout_Layout_layout_keyline b4a.rocklogster:layout_keyline} The index of a keyline this view should position relative to.
+ @see #CoordinatorLayout_Layout_android_layout_gravity + @see #CoordinatorLayout_Layout_layout_anchor + @see #CoordinatorLayout_Layout_layout_anchorGravity + @see #CoordinatorLayout_Layout_layout_behavior + @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + @see #CoordinatorLayout_Layout_layout_insetEdge + @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout = { + 0x010100b3, 0x7f010021, 0x7f010022, 0x7f010023, + 0x7f010024, 0x7f010025, 0x7f010026 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + /** +

+ @attr description + The id of an anchor view that this view should position relative to. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor = 2; + /** +

+ @attr description + Specifies how an object should position relative to an anchor, on both the X and Y axes, + within its parent's bounds. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+

This is a private symbol. + @attr name b4a.rocklogster:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; + /** +

+ @attr description + The class name of a Behavior class defining special runtime behavior + for this child view. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior = 1; + /** +

+ @attr description + Specifies how this view dodges the inset edges of the CoordinatorLayout. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0 Don't dodge any edges
top0x30 Dodge the top inset edge.
bottom0x50 Dodge the bottom inset edge.
left0x03 Dodge the left inset edge.
right0x05 Dodge the right inset edge.
start0x00800003 Dodge the start inset edge.
end0x00800005 Dodge the end inset edge.
all0x77 Dodge all the inset edges.
+

This is a private symbol. + @attr name b4a.rocklogster:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; + /** +

+ @attr description + Specifies how this view insets the CoordinatorLayout and make some other views + dodge it. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0 Don't inset.
top0x30 Inset the top edge.
bottom0x50 Inset the bottom edge.
left0x03 Inset the left edge.
right0x05 Inset the right edge.
start0x00800003 Inset the start edge.
end0x00800005 Inset the end edge.
+

This is a private symbol. + @attr name b4a.rocklogster:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + /** +

+ @attr description + The index of a keyline this view should position relative to. + android:layout_gravity will affect how the view aligns to the + specified keyline. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline = 3; + /** Attributes that can be used with a FontFamily. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #FontFamily_fontProviderAuthority b4a.rocklogster:fontProviderAuthority} The authority of the Font Provider to be used for the request.
{@link #FontFamily_fontProviderCerts b4a.rocklogster:fontProviderCerts} The sets of hashes for the certificates the provider should be signed with.
{@link #FontFamily_fontProviderFetchStrategy b4a.rocklogster:fontProviderFetchStrategy} The strategy to be used when fetching font data from a font provider in XML layouts.
{@link #FontFamily_fontProviderFetchTimeout b4a.rocklogster:fontProviderFetchTimeout} The length of the timeout during fetching.
{@link #FontFamily_fontProviderPackage b4a.rocklogster:fontProviderPackage} The package for the Font Provider to be used for the request.
{@link #FontFamily_fontProviderQuery b4a.rocklogster:fontProviderQuery} The query to be sent over to the provider.
+ @see #FontFamily_fontProviderAuthority + @see #FontFamily_fontProviderCerts + @see #FontFamily_fontProviderFetchStrategy + @see #FontFamily_fontProviderFetchTimeout + @see #FontFamily_fontProviderPackage + @see #FontFamily_fontProviderQuery + */ + public static final int[] FontFamily = { + 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, + 0x7f01002c, 0x7f01002d + }; + /** +

+ @attr description + The authority of the Font Provider to be used for the request. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority = 0; + /** +

+ @attr description + The sets of hashes for the certificates the provider should be signed with. This is + used to verify the identity of the provider, and is only required if the provider is not + part of the system image. This value may point to one list or a list of lists, where each + individual list represents one collection of signature hashes. Refer to your font provider's + documentation for these values. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts = 3; + /** +

+ @attr description + The strategy to be used when fetching font data from a font provider in XML layouts. + This attribute is ignored when the resource is loaded from code, as it is equivalent to the + choice of API between {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and + {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} + (async). + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0 The blocking font fetch works as follows. + First, check the local cache, then if the requested font is not cached, request the + font from the provider and wait until it is finished. You can change the length of + the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the + default typeface will be used instead.
async1 The async font fetch works as follows. + First, check the local cache, then if the requeted font is not cached, trigger a + request the font and continue with layout inflation. Once the font fetch succeeds, the + target text view will be refreshed with the downloaded font data. The + fontProviderFetchTimeout will be ignored if async loading is specified.
+

This is a private symbol. + @attr name b4a.rocklogster:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy = 4; + /** +

+ @attr description + The length of the timeout during fetching. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1 A special value for the timeout. In this case, the blocking font fetching will not + timeout and wait until a reply is received from the font provider.
+

This is a private symbol. + @attr name b4a.rocklogster:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout = 5; + /** +

+ @attr description + The package for the Font Provider to be used for the request. This is used to verify + the identity of the provider. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage = 1; + /** +

+ @attr description + The query to be sent over to the provider. Refer to your font provider's documentation + on the format of this string. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery = 2; + /** Attributes that can be used with a FontFamilyFont. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #FontFamilyFont_android_font android:font}
{@link #FontFamilyFont_android_fontStyle android:fontStyle} References to the framework attrs
{@link #FontFamilyFont_android_fontVariationSettings android:fontVariationSettings}
{@link #FontFamilyFont_android_fontWeight android:fontWeight}
{@link #FontFamilyFont_android_ttcIndex android:ttcIndex}
{@link #FontFamilyFont_font b4a.rocklogster:font} The reference to the font file to be used.
{@link #FontFamilyFont_fontStyle b4a.rocklogster:fontStyle} The style of the given font file.
{@link #FontFamilyFont_fontVariationSettings b4a.rocklogster:fontVariationSettings} The variation settings to be applied to the font.
{@link #FontFamilyFont_fontWeight b4a.rocklogster:fontWeight} The weight of the given font file.
{@link #FontFamilyFont_ttcIndex b4a.rocklogster:ttcIndex} The index of the font in the tcc font file.
+ @see #FontFamilyFont_android_font + @see #FontFamilyFont_android_fontStyle + @see #FontFamilyFont_android_fontVariationSettings + @see #FontFamilyFont_android_fontWeight + @see #FontFamilyFont_android_ttcIndex + @see #FontFamilyFont_font + @see #FontFamilyFont_fontStyle + @see #FontFamilyFont_fontVariationSettings + @see #FontFamilyFont_fontWeight + @see #FontFamilyFont_ttcIndex + */ + public static final int[] FontFamilyFont = { + 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, + 0x01010570, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010032 + }; + /** +

This symbol is the offset where the {@link android.R.attr#font} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:font + */ + public static final int FontFamilyFont_android_font = 0; + /** +

+ @attr description + References to the framework attrs +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fontStyle}. + @attr name android:fontStyle + */ + public static final int FontFamilyFont_android_fontStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#fontVariationSettings} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:fontVariationSettings + */ + public static final int FontFamilyFont_android_fontVariationSettings = 4; + /** +

This symbol is the offset where the {@link android.R.attr#fontWeight} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:fontWeight + */ + public static final int FontFamilyFont_android_fontWeight = 1; + /** +

This symbol is the offset where the {@link android.R.attr#ttcIndex} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:ttcIndex + */ + public static final int FontFamilyFont_android_ttcIndex = 3; + /** +

+ @attr description + The reference to the font file to be used. This should be a file in the res/font folder + and should therefore have an R reference value. E.g. @font/myfont + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:font + */ + public static final int FontFamilyFont_font = 6; + /** +

+ @attr description + The style of the given font file. This will be used when the font is being loaded into + the font stack and will override any style information in the font's header tables. If + unspecified, the value in the font's header tables will be used. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+

This is a private symbol. + @attr name b4a.rocklogster:fontStyle + */ + public static final int FontFamilyFont_fontStyle = 5; + /** +

+ @attr description + The variation settings to be applied to the font. The string should be in the following + format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be + used, or the font used does not support variation settings, this attribute needs not be + specified. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontVariationSettings + */ + public static final int FontFamilyFont_fontVariationSettings = 8; + /** +

+ @attr description + The weight of the given font file. This will be used when the font is being loaded into + the font stack and will override any weight information in the font's header tables. Must + be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most + common values are 400 for regular weight and 700 for bold weight. If unspecified, the value + in the font's header tables will be used. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontWeight + */ + public static final int FontFamilyFont_fontWeight = 7; + /** +

+ @attr description + The index of the font in the tcc font file. If the font file referenced is not in the + tcc format, this attribute needs not be specified. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:ttcIndex + */ + public static final int FontFamilyFont_ttcIndex = 9; + /** Attributes that can be used with a Fragment. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #Fragment_android_id android:id}
{@link #Fragment_android_name android:name}
{@link #Fragment_android_tag android:tag}
+ @see #Fragment_android_id + @see #Fragment_android_name + @see #Fragment_android_tag + */ + public static final int[] Fragment = { + 0x01010003, 0x010100d0, 0x010100d1 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #Fragment} array. + @attr name android:id + */ + public static final int Fragment_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#name} + attribute's value can be found in the {@link #Fragment} array. + @attr name android:name + */ + public static final int Fragment_android_name = 0; + /** +

This symbol is the offset where the {@link android.R.attr#tag} + attribute's value can be found in the {@link #Fragment} array. + @attr name android:tag + */ + public static final int Fragment_android_tag = 2; + /** Attributes that can be used with a FragmentContainerView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #FragmentContainerView_android_name android:name}
{@link #FragmentContainerView_android_tag android:tag}
+ @see #FragmentContainerView_android_name + @see #FragmentContainerView_android_tag + */ + public static final int[] FragmentContainerView = { + 0x01010003, 0x010100d1 + }; + /** +

This symbol is the offset where the {@link android.R.attr#name} + attribute's value can be found in the {@link #FragmentContainerView} array. + @attr name android:name + */ + public static final int FragmentContainerView_android_name = 0; + /** +

This symbol is the offset where the {@link android.R.attr#tag} + attribute's value can be found in the {@link #FragmentContainerView} array. + @attr name android:tag + */ + public static final int FragmentContainerView_android_tag = 1; + /** Attributes that can be used with a GradientColor. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + +
AttributeDescription
{@link #GradientColor_android_centerColor android:centerColor} Optional center color.
{@link #GradientColor_android_centerX android:centerX} Only applied to SweepGradient / RadialGradient + X coordinate of the center of the gradient within the path.
{@link #GradientColor_android_centerY android:centerY} Y coordinate of the center of the gradient within the path.
{@link #GradientColor_android_endColor android:endColor} End color of the gradient.
{@link #GradientColor_android_endX android:endX} X coordinate of the end point origin of the gradient.
{@link #GradientColor_android_endY android:endY} Y coordinate of the end point of the gradient within the shape.
{@link #GradientColor_android_gradientRadius android:gradientRadius} Only applied to RadialGradient + Radius of the gradient, used only with radial gradient.
{@link #GradientColor_android_startColor android:startColor} Start color of the gradient.
{@link #GradientColor_android_startX android:startX} LinearGradient specific + X coordinate of the start point origin of the gradient.
{@link #GradientColor_android_startY android:startY} Y coordinate of the start point of the gradient within the shape.
{@link #GradientColor_android_tileMode android:tileMode} Defines the tile mode of the gradient.
{@link #GradientColor_android_type android:type} Type of gradient.
+ @see #GradientColor_android_centerColor + @see #GradientColor_android_centerX + @see #GradientColor_android_centerY + @see #GradientColor_android_endColor + @see #GradientColor_android_endX + @see #GradientColor_android_endY + @see #GradientColor_android_gradientRadius + @see #GradientColor_android_startColor + @see #GradientColor_android_startX + @see #GradientColor_android_startY + @see #GradientColor_android_tileMode + @see #GradientColor_android_type + */ + public static final int[] GradientColor = { + 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, + 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, + 0x01010510, 0x01010511, 0x01010512, 0x01010513 + }; + /** +

+ @attr description + Optional center color. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerColor}. + @attr name android:centerColor + */ + public static final int GradientColor_android_centerColor = 7; + /** +

+ @attr description + Only applied to SweepGradient / RadialGradient + X coordinate of the center of the gradient within the path. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerX}. + @attr name android:centerX + */ + public static final int GradientColor_android_centerX = 3; + /** +

+ @attr description + Y coordinate of the center of the gradient within the path. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerY}. + @attr name android:centerY + */ + public static final int GradientColor_android_centerY = 4; + /** +

+ @attr description + End color of the gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#endColor}. + @attr name android:endColor + */ + public static final int GradientColor_android_endColor = 1; + /** +

+ @attr description + X coordinate of the end point origin of the gradient. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#endX}. + @attr name android:endX + */ + public static final int GradientColor_android_endX = 10; + /** +

+ @attr description + Y coordinate of the end point of the gradient within the shape. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#endY}. + @attr name android:endY + */ + public static final int GradientColor_android_endY = 11; + /** +

+ @attr description + Only applied to RadialGradient + Radius of the gradient, used only with radial gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#gradientRadius}. + @attr name android:gradientRadius + */ + public static final int GradientColor_android_gradientRadius = 5; + /** +

+ @attr description + Start color of the gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startColor}. + @attr name android:startColor + */ + public static final int GradientColor_android_startColor = 0; + /** +

+ @attr description + LinearGradient specific + X coordinate of the start point origin of the gradient. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startX}. + @attr name android:startX + */ + public static final int GradientColor_android_startX = 8; + /** +

+ @attr description + Y coordinate of the start point of the gradient within the shape. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startY}. + @attr name android:startY + */ + public static final int GradientColor_android_startY = 9; + /** +

+ @attr description + Defines the tile mode of the gradient. SweepGradient doesn't support tiling. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#tileMode}. + @attr name android:tileMode + */ + public static final int GradientColor_android_tileMode = 6; + /** +

+ @attr description + Type of gradient. The default type is linear. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#type}. + @attr name android:type + */ + public static final int GradientColor_android_type = 2; + /** Attributes that can be used with a GradientColorItem. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #GradientColorItem_android_color android:color} The current color for the offset inside the gradient.
{@link #GradientColorItem_android_offset android:offset} The offset (or ratio) of this current color item inside the gradient.
+ @see #GradientColorItem_android_color + @see #GradientColorItem_android_offset + */ + public static final int[] GradientColorItem = { + 0x010101a5, 0x01010514 + }; + /** +

+ @attr description + The current color for the offset inside the gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#color}. + @attr name android:color + */ + public static final int GradientColorItem_android_color = 0; + /** +

+ @attr description + The offset (or ratio) of this current color item inside the gradient. + The value is only meaningful when it is between 0 and 1. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#offset}. + @attr name android:offset + */ + public static final int GradientColorItem_android_offset = 1; + /** Attributes that can be used with a LoadingImageView. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #LoadingImageView_circleCrop b4a.rocklogster:circleCrop}
{@link #LoadingImageView_imageAspectRatio b4a.rocklogster:imageAspectRatio}
{@link #LoadingImageView_imageAspectRatioAdjust b4a.rocklogster:imageAspectRatioAdjust}
+ @see #LoadingImageView_circleCrop + @see #LoadingImageView_imageAspectRatio + @see #LoadingImageView_imageAspectRatioAdjust + */ + public static final int[] LoadingImageView = { + 0x7f010000, 0x7f010001, 0x7f010002 + }; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#circleCrop} + attribute's value can be found in the {@link #LoadingImageView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:circleCrop + */ + public static final int LoadingImageView_circleCrop = 2; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#imageAspectRatio} + attribute's value can be found in the {@link #LoadingImageView} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:imageAspectRatio + */ + public static final int LoadingImageView_imageAspectRatio = 1; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#imageAspectRatioAdjust} + attribute's value can be found in the {@link #LoadingImageView} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
adjust_width1
adjust_height2
+ @attr name b4a.rocklogster:imageAspectRatioAdjust + */ + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + /** Attributes that can be used with a MapAttrs. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MapAttrs_ambientEnabled b4a.rocklogster:ambientEnabled}
{@link #MapAttrs_cameraBearing b4a.rocklogster:cameraBearing}
{@link #MapAttrs_cameraMaxZoomPreference b4a.rocklogster:cameraMaxZoomPreference}
{@link #MapAttrs_cameraMinZoomPreference b4a.rocklogster:cameraMinZoomPreference}
{@link #MapAttrs_cameraTargetLat b4a.rocklogster:cameraTargetLat}
{@link #MapAttrs_cameraTargetLng b4a.rocklogster:cameraTargetLng}
{@link #MapAttrs_cameraTilt b4a.rocklogster:cameraTilt}
{@link #MapAttrs_cameraZoom b4a.rocklogster:cameraZoom}
{@link #MapAttrs_latLngBoundsNorthEastLatitude b4a.rocklogster:latLngBoundsNorthEastLatitude}
{@link #MapAttrs_latLngBoundsNorthEastLongitude b4a.rocklogster:latLngBoundsNorthEastLongitude}
{@link #MapAttrs_latLngBoundsSouthWestLatitude b4a.rocklogster:latLngBoundsSouthWestLatitude}
{@link #MapAttrs_latLngBoundsSouthWestLongitude b4a.rocklogster:latLngBoundsSouthWestLongitude}
{@link #MapAttrs_liteMode b4a.rocklogster:liteMode}
{@link #MapAttrs_mapType b4a.rocklogster:mapType}
{@link #MapAttrs_uiCompass b4a.rocklogster:uiCompass}
{@link #MapAttrs_uiMapToolbar b4a.rocklogster:uiMapToolbar}
{@link #MapAttrs_uiRotateGestures b4a.rocklogster:uiRotateGestures}
{@link #MapAttrs_uiScrollGestures b4a.rocklogster:uiScrollGestures}
{@link #MapAttrs_uiScrollGesturesDuringRotateOrZoom b4a.rocklogster:uiScrollGesturesDuringRotateOrZoom}
{@link #MapAttrs_uiTiltGestures b4a.rocklogster:uiTiltGestures}
{@link #MapAttrs_uiZoomControls b4a.rocklogster:uiZoomControls}
{@link #MapAttrs_uiZoomGestures b4a.rocklogster:uiZoomGestures}
{@link #MapAttrs_useViewLifecycle b4a.rocklogster:useViewLifecycle}
{@link #MapAttrs_zOrderOnTop b4a.rocklogster:zOrderOnTop}
+ @see #MapAttrs_ambientEnabled + @see #MapAttrs_cameraBearing + @see #MapAttrs_cameraMaxZoomPreference + @see #MapAttrs_cameraMinZoomPreference + @see #MapAttrs_cameraTargetLat + @see #MapAttrs_cameraTargetLng + @see #MapAttrs_cameraTilt + @see #MapAttrs_cameraZoom + @see #MapAttrs_latLngBoundsNorthEastLatitude + @see #MapAttrs_latLngBoundsNorthEastLongitude + @see #MapAttrs_latLngBoundsSouthWestLatitude + @see #MapAttrs_latLngBoundsSouthWestLongitude + @see #MapAttrs_liteMode + @see #MapAttrs_mapType + @see #MapAttrs_uiCompass + @see #MapAttrs_uiMapToolbar + @see #MapAttrs_uiRotateGestures + @see #MapAttrs_uiScrollGestures + @see #MapAttrs_uiScrollGesturesDuringRotateOrZoom + @see #MapAttrs_uiTiltGestures + @see #MapAttrs_uiZoomControls + @see #MapAttrs_uiZoomGestures + @see #MapAttrs_useViewLifecycle + @see #MapAttrs_zOrderOnTop + */ + public static final int[] MapAttrs = { + 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, + 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, + 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, + 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, + 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, + 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d + }; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#ambientEnabled} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:ambientEnabled + */ + public static final int MapAttrs_ambientEnabled = 17; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraBearing} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraBearing + */ + public static final int MapAttrs_cameraBearing = 1; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraMaxZoomPreference} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraMaxZoomPreference + */ + public static final int MapAttrs_cameraMaxZoomPreference = 19; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraMinZoomPreference} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraMinZoomPreference + */ + public static final int MapAttrs_cameraMinZoomPreference = 18; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraTargetLat} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraTargetLat + */ + public static final int MapAttrs_cameraTargetLat = 2; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraTargetLng} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraTargetLng + */ + public static final int MapAttrs_cameraTargetLng = 3; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraTilt} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraTilt + */ + public static final int MapAttrs_cameraTilt = 4; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraZoom} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraZoom + */ + public static final int MapAttrs_cameraZoom = 5; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsNorthEastLatitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsNorthEastLatitude + */ + public static final int MapAttrs_latLngBoundsNorthEastLatitude = 22; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsNorthEastLongitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsNorthEastLongitude + */ + public static final int MapAttrs_latLngBoundsNorthEastLongitude = 23; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsSouthWestLatitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsSouthWestLatitude + */ + public static final int MapAttrs_latLngBoundsSouthWestLatitude = 20; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsSouthWestLongitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsSouthWestLongitude + */ + public static final int MapAttrs_latLngBoundsSouthWestLongitude = 21; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#liteMode} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:liteMode + */ + public static final int MapAttrs_liteMode = 6; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#mapType} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
none0
normal1
satellite2
terrain3
hybrid4
+ @attr name b4a.rocklogster:mapType + */ + public static final int MapAttrs_mapType = 0; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiCompass} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiCompass + */ + public static final int MapAttrs_uiCompass = 7; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiMapToolbar} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiMapToolbar + */ + public static final int MapAttrs_uiMapToolbar = 16; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiRotateGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiRotateGestures + */ + public static final int MapAttrs_uiRotateGestures = 8; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiScrollGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiScrollGestures + */ + public static final int MapAttrs_uiScrollGestures = 9; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiScrollGesturesDuringRotateOrZoom} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiScrollGesturesDuringRotateOrZoom + */ + public static final int MapAttrs_uiScrollGesturesDuringRotateOrZoom = 10; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiTiltGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiTiltGestures + */ + public static final int MapAttrs_uiTiltGestures = 11; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiZoomControls} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiZoomControls + */ + public static final int MapAttrs_uiZoomControls = 12; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiZoomGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiZoomGestures + */ + public static final int MapAttrs_uiZoomGestures = 13; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#useViewLifecycle} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:useViewLifecycle + */ + public static final int MapAttrs_useViewLifecycle = 14; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#zOrderOnTop} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:zOrderOnTop + */ + public static final int MapAttrs_zOrderOnTop = 15; + /** Attributes that can be used with a SignInButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SignInButton_buttonSize b4a.rocklogster:buttonSize}
{@link #SignInButton_colorScheme b4a.rocklogster:colorScheme}
{@link #SignInButton_scopeUris b4a.rocklogster:scopeUris}
+ @see #SignInButton_buttonSize + @see #SignInButton_colorScheme + @see #SignInButton_scopeUris + */ + public static final int[] SignInButton = { + 0x7f010003, 0x7f010004, 0x7f010005 + }; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#buttonSize} + attribute's value can be found in the {@link #SignInButton} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
standard0
wide1
icon_only2
+ @attr name b4a.rocklogster:buttonSize + */ + public static final int SignInButton_buttonSize = 0; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#colorScheme} + attribute's value can be found in the {@link #SignInButton} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
dark0
light1
auto2
+ @attr name b4a.rocklogster:colorScheme + */ + public static final int SignInButton_colorScheme = 1; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#scopeUris} + attribute's value can be found in the {@link #SignInButton} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. + @attr name b4a.rocklogster:scopeUris + */ + public static final int SignInButton_scopeUris = 2; + }; +} diff --git a/Objects/gen/com/google/android/gms/base/R.java b/Objects/gen/com/google/android/gms/base/R.java new file mode 100644 index 0000000..c5037b4 --- /dev/null +++ b/Objects/gen/com/google/android/gms/base/R.java @@ -0,0 +1,2150 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package com.google.android.gms.base; + +public final class R { + public static final class anim { + public static final int fragment_close_enter=0x7f050000; + public static final int fragment_close_exit=0x7f050001; + public static final int fragment_fade_enter=0x7f050002; + public static final int fragment_fade_exit=0x7f050003; + public static final int fragment_fast_out_extra_slow_in=0x7f050004; + public static final int fragment_open_enter=0x7f050005; + public static final int fragment_open_exit=0x7f050006; + } + public static final class attr { + /** Alpha multiplier applied to the base color. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alpha=0x7f010027; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int ambientEnabled=0x7f010017; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
standard0
wide1
icon_only2
+ */ + public static final int buttonSize=0x7f010003; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraBearing=0x7f010007; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraMaxZoomPreference=0x7f010019; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraMinZoomPreference=0x7f010018; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraTargetLat=0x7f010008; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraTargetLng=0x7f010009; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraTilt=0x7f01000a; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraZoom=0x7f01000b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int circleCrop=0x7f010002; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
dark0
light1
auto2
+ */ + public static final int colorScheme=0x7f010004; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int coordinatorLayoutStyle=0x7f01001e; + /** The reference to the font file to be used. This should be a file in the res/font folder + and should therefore have an R reference value. E.g. @font/myfont +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int font=0x7f01002f; + /** The authority of the Font Provider to be used for the request. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderAuthority=0x7f010028; + /** The sets of hashes for the certificates the provider should be signed with. This is + used to verify the identity of the provider, and is only required if the provider is not + part of the system image. This value may point to one list or a list of lists, where each + individual list represents one collection of signature hashes. Refer to your font provider's + documentation for these values. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fontProviderCerts=0x7f01002b; + /** The strategy to be used when fetching font data from a font provider in XML layouts. + This attribute is ignored when the resource is loaded from code, as it is equivalent to the + choice of API between {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and + {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} + (async). +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0 The blocking font fetch works as follows. + First, check the local cache, then if the requested font is not cached, request the + font from the provider and wait until it is finished. You can change the length of + the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the + default typeface will be used instead.
async1 The async font fetch works as follows. + First, check the local cache, then if the requeted font is not cached, trigger a + request the font and continue with layout inflation. Once the font fetch succeeds, the + target text view will be refreshed with the downloaded font data. The + fontProviderFetchTimeout will be ignored if async loading is specified.
+ */ + public static final int fontProviderFetchStrategy=0x7f01002c; + /** The length of the timeout during fetching. +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1 A special value for the timeout. In this case, the blocking font fetching will not + timeout and wait until a reply is received from the font provider.
+ */ + public static final int fontProviderFetchTimeout=0x7f01002d; + /** The package for the Font Provider to be used for the request. This is used to verify + the identity of the provider. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderPackage=0x7f010029; + /** The query to be sent over to the provider. Refer to your font provider's documentation + on the format of this string. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderQuery=0x7f01002a; + /** The style of the given font file. This will be used when the font is being loaded into + the font stack and will override any style information in the font's header tables. If + unspecified, the value in the font's header tables will be used. +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ */ + public static final int fontStyle=0x7f01002e; + /** The variation settings to be applied to the font. The string should be in the following + format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be + used, or the font used does not support variation settings, this attribute needs not be + specified. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontVariationSettings=0x7f010031; + /** The weight of the given font file. This will be used when the font is being loaded into + the font stack and will override any weight information in the font's header tables. Must + be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most + common values are 400 for regular weight and 700 for bold weight. If unspecified, the value + in the font's header tables will be used. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontWeight=0x7f010030; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int imageAspectRatio=0x7f010001; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
adjust_width1
adjust_height2
+ */ + public static final int imageAspectRatioAdjust=0x7f010000; + /** A reference to an array of integers representing the + locations of horizontal keylines in dp from the starting edge. + Child views can refer to these keylines for alignment using + layout_keyline="index" where index is a 0-based index into + this array. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keylines=0x7f01001f; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsNorthEastLatitude=0x7f01001c; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsNorthEastLongitude=0x7f01001d; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsSouthWestLatitude=0x7f01001a; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsSouthWestLongitude=0x7f01001b; + /** The id of an anchor view that this view should position relative to. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_anchor=0x7f010022; + /** Specifies how an object should position relative to an anchor, on both the X and Y axes, + within its parent's bounds. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+ */ + public static final int layout_anchorGravity=0x7f010024; + /** The class name of a Behavior class defining special runtime behavior + for this child view. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_behavior=0x7f010021; + /** Specifies how this view dodges the inset edges of the CoordinatorLayout. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0 Don't dodge any edges
top0x30 Dodge the top inset edge.
bottom0x50 Dodge the bottom inset edge.
left0x03 Dodge the left inset edge.
right0x05 Dodge the right inset edge.
start0x00800003 Dodge the start inset edge.
end0x00800005 Dodge the end inset edge.
all0x77 Dodge all the inset edges.
+ */ + public static final int layout_dodgeInsetEdges=0x7f010026; + /** Specifies how this view insets the CoordinatorLayout and make some other views + dodge it. +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0 Don't inset.
top0x30 Inset the top edge.
bottom0x50 Inset the bottom edge.
left0x03 Inset the left edge.
right0x05 Inset the right edge.
start0x00800003 Inset the start edge.
end0x00800005 Inset the end edge.
+ */ + public static final int layout_insetEdge=0x7f010025; + /** The index of a keyline this view should position relative to. + android:layout_gravity will affect how the view aligns to the + specified keyline. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_keyline=0x7f010023; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int liteMode=0x7f01000c; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
none0
normal1
satellite2
terrain3
hybrid4
+ */ + public static final int mapType=0x7f010006; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. + */ + public static final int scopeUris=0x7f010005; + /** Drawable to display behind the status bar when the view is set to draw behind it. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int statusBarBackground=0x7f010020; + /** The index of the font in the tcc font file. If the font file referenced is not in the + tcc format, this attribute needs not be specified. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int ttcIndex=0x7f010032; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiCompass=0x7f01000d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiMapToolbar=0x7f010016; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiRotateGestures=0x7f01000e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiScrollGestures=0x7f01000f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiScrollGesturesDuringRotateOrZoom=0x7f010010; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiTiltGestures=0x7f010011; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiZoomControls=0x7f010012; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiZoomGestures=0x7f010013; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useViewLifecycle=0x7f010014; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int zOrderOnTop=0x7f010015; + } + public static final class color { + public static final int common_google_signin_btn_text_dark=0x7f08000f; + public static final int common_google_signin_btn_text_dark_default=0x7f080000; + public static final int common_google_signin_btn_text_dark_disabled=0x7f080001; + public static final int common_google_signin_btn_text_dark_focused=0x7f080002; + public static final int common_google_signin_btn_text_dark_pressed=0x7f080003; + public static final int common_google_signin_btn_text_light=0x7f080010; + public static final int common_google_signin_btn_text_light_default=0x7f080004; + public static final int common_google_signin_btn_text_light_disabled=0x7f080005; + public static final int common_google_signin_btn_text_light_focused=0x7f080006; + public static final int common_google_signin_btn_text_light_pressed=0x7f080007; + public static final int common_google_signin_btn_tint=0x7f080011; + public static final int notification_action_color_filter=0x7f08000b; + public static final int notification_icon_bg_color=0x7f08000c; + public static final int notification_material_background_media_default_color=0x7f080008; + public static final int primary_text_default_material_dark=0x7f080009; + public static final int ripple_material_light=0x7f08000d; + public static final int secondary_text_default_material_dark=0x7f08000a; + public static final int secondary_text_default_material_light=0x7f08000e; + } + public static final class dimen { + public static final int compat_button_inset_horizontal_material=0x7f0b0008; + public static final int compat_button_inset_vertical_material=0x7f0b0009; + public static final int compat_button_padding_horizontal_material=0x7f0b000a; + public static final int compat_button_padding_vertical_material=0x7f0b000b; + public static final int compat_control_corner_material=0x7f0b000c; + public static final int compat_notification_large_icon_max_height=0x7f0b000d; + public static final int compat_notification_large_icon_max_width=0x7f0b000e; + public static final int notification_action_icon_size=0x7f0b000f; + public static final int notification_action_text_size=0x7f0b0010; + public static final int notification_big_circle_margin=0x7f0b0011; + public static final int notification_content_margin_start=0x7f0b0005; + public static final int notification_large_icon_height=0x7f0b0012; + public static final int notification_large_icon_width=0x7f0b0013; + public static final int notification_main_column_padding_top=0x7f0b0006; + public static final int notification_media_narrow_margin=0x7f0b0007; + public static final int notification_right_icon_size=0x7f0b0014; + public static final int notification_right_side_padding_top=0x7f0b0004; + public static final int notification_small_icon_background_padding=0x7f0b0015; + public static final int notification_small_icon_size_as_large=0x7f0b0016; + public static final int notification_subtext_size=0x7f0b0017; + public static final int notification_top_pad=0x7f0b0018; + public static final int notification_top_pad_large_text=0x7f0b0019; + public static final int subtitle_corner_radius=0x7f0b0000; + public static final int subtitle_outline_width=0x7f0b0001; + public static final int subtitle_shadow_offset=0x7f0b0002; + public static final int subtitle_shadow_radius=0x7f0b0003; + } + public static final class drawable { + public static final int common_full_open_on_phone=0x7f020000; + public static final int common_google_signin_btn_icon_dark=0x7f020001; + public static final int common_google_signin_btn_icon_dark_focused=0x7f020002; + public static final int common_google_signin_btn_icon_dark_normal=0x7f020003; + public static final int common_google_signin_btn_icon_dark_normal_background=0x7f020004; + public static final int common_google_signin_btn_icon_disabled=0x7f020005; + public static final int common_google_signin_btn_icon_light=0x7f020006; + public static final int common_google_signin_btn_icon_light_focused=0x7f020007; + public static final int common_google_signin_btn_icon_light_normal=0x7f020008; + public static final int common_google_signin_btn_icon_light_normal_background=0x7f020009; + public static final int common_google_signin_btn_text_dark=0x7f02000a; + public static final int common_google_signin_btn_text_dark_focused=0x7f02000b; + public static final int common_google_signin_btn_text_dark_normal=0x7f02000c; + public static final int common_google_signin_btn_text_dark_normal_background=0x7f02000d; + public static final int common_google_signin_btn_text_disabled=0x7f02000e; + public static final int common_google_signin_btn_text_light=0x7f02000f; + public static final int common_google_signin_btn_text_light_focused=0x7f020010; + public static final int common_google_signin_btn_text_light_normal=0x7f020011; + public static final int common_google_signin_btn_text_light_normal_background=0x7f020012; + public static final int googleg_disabled_color_18=0x7f020013; + public static final int googleg_standard_color_18=0x7f020014; + public static final int icon=0x7f020015; + public static final int notification_action_background=0x7f020016; + public static final int notification_bg=0x7f020017; + public static final int notification_bg_low=0x7f020018; + public static final int notification_bg_low_normal=0x7f020019; + public static final int notification_bg_low_pressed=0x7f02001a; + public static final int notification_bg_normal=0x7f02001b; + public static final int notification_bg_normal_pressed=0x7f02001c; + public static final int notification_icon_background=0x7f02001d; + public static final int notification_template_icon_bg=0x7f020020; + public static final int notification_template_icon_low_bg=0x7f020021; + public static final int notification_tile_bg=0x7f02001e; + public static final int notify_panel_notification_icon_bg=0x7f02001f; + } + public static final class id { + public static final int accessibility_action_clickable_span=0x7f090002; + public static final int accessibility_custom_action_0=0x7f090003; + public static final int accessibility_custom_action_1=0x7f090004; + public static final int accessibility_custom_action_10=0x7f090005; + public static final int accessibility_custom_action_11=0x7f090006; + public static final int accessibility_custom_action_12=0x7f090007; + public static final int accessibility_custom_action_13=0x7f090008; + public static final int accessibility_custom_action_14=0x7f090009; + public static final int accessibility_custom_action_15=0x7f09000a; + public static final int accessibility_custom_action_16=0x7f09000b; + public static final int accessibility_custom_action_17=0x7f09000c; + public static final int accessibility_custom_action_18=0x7f09000d; + public static final int accessibility_custom_action_19=0x7f09000e; + public static final int accessibility_custom_action_2=0x7f09000f; + public static final int accessibility_custom_action_20=0x7f090010; + public static final int accessibility_custom_action_21=0x7f090011; + public static final int accessibility_custom_action_22=0x7f090012; + public static final int accessibility_custom_action_23=0x7f090013; + public static final int accessibility_custom_action_24=0x7f090014; + public static final int accessibility_custom_action_25=0x7f090015; + public static final int accessibility_custom_action_26=0x7f090016; + public static final int accessibility_custom_action_27=0x7f090017; + public static final int accessibility_custom_action_28=0x7f090018; + public static final int accessibility_custom_action_29=0x7f090019; + public static final int accessibility_custom_action_3=0x7f09001a; + public static final int accessibility_custom_action_30=0x7f09001b; + public static final int accessibility_custom_action_31=0x7f09001c; + public static final int accessibility_custom_action_4=0x7f09001d; + public static final int accessibility_custom_action_5=0x7f09001e; + public static final int accessibility_custom_action_6=0x7f09001f; + public static final int accessibility_custom_action_7=0x7f090020; + public static final int accessibility_custom_action_8=0x7f090021; + public static final int accessibility_custom_action_9=0x7f090022; + public static final int action0=0x7f090054; + public static final int action_container=0x7f090051; + public static final int action_divider=0x7f090058; + public static final int action_image=0x7f090052; + public static final int action_text=0x7f090053; + public static final int actions=0x7f090062; + public static final int adjust_height=0x7f090030; + public static final int adjust_width=0x7f090031; + public static final int all=0x7f09004b; + public static final int async=0x7f09004c; + public static final int auto=0x7f090036; + public static final int blocking=0x7f09004d; + public static final int bottom=0x7f09003d; + public static final int cancel_action=0x7f090055; + public static final int center=0x7f09003e; + public static final int center_horizontal=0x7f09003f; + public static final int center_vertical=0x7f090040; + public static final int chronometer=0x7f09005d; + public static final int clip_horizontal=0x7f090041; + public static final int clip_vertical=0x7f090042; + public static final int dark=0x7f090037; + public static final int dialog_button=0x7f090050; + public static final int end=0x7f090043; + public static final int end_padder=0x7f090064; + public static final int fill=0x7f090044; + public static final int fill_horizontal=0x7f090045; + public static final int fill_vertical=0x7f090046; + public static final int forever=0x7f09004e; + public static final int fragment_container_view_tag=0x7f090000; + public static final int hybrid=0x7f090039; + public static final int icon=0x7f09005f; + public static final int icon_group=0x7f090063; + public static final int icon_only=0x7f090033; + public static final int info=0x7f09005e; + public static final int italic=0x7f09004f; + public static final int left=0x7f090047; + public static final int light=0x7f090038; + public static final int line1=0x7f090023; + public static final int line3=0x7f090024; + public static final int media_actions=0x7f090057; + public static final int none=0x7f090032; + public static final int normal=0x7f09003a; + public static final int notification_background=0x7f090061; + public static final int notification_main_column=0x7f09005a; + public static final int notification_main_column_container=0x7f090059; + public static final int right=0x7f090048; + public static final int right_icon=0x7f090060; + public static final int right_side=0x7f09005b; + public static final int satellite=0x7f09003b; + public static final int standard=0x7f090034; + public static final int start=0x7f090049; + public static final int status_bar_latest_event_content=0x7f090056; + public static final int tag_accessibility_actions=0x7f090025; + public static final int tag_accessibility_clickable_spans=0x7f090026; + public static final int tag_accessibility_heading=0x7f090027; + public static final int tag_accessibility_pane_title=0x7f090028; + public static final int tag_screen_reader_focusable=0x7f090029; + public static final int tag_transition_group=0x7f09002a; + public static final int tag_unhandled_key_event_manager=0x7f09002b; + public static final int tag_unhandled_key_listeners=0x7f09002c; + public static final int terrain=0x7f09003c; + public static final int text=0x7f09002d; + public static final int text2=0x7f09002e; + public static final int time=0x7f09005c; + public static final int title=0x7f09002f; + public static final int top=0x7f09004a; + public static final int visible_removing_fragment_view_tag=0x7f090001; + public static final int wide=0x7f090035; + } + public static final class integer { + public static final int cancel_button_image_alpha=0x7f060001; + public static final int google_play_services_version=0x7f060000; + public static final int status_bar_notification_info_maxnum=0x7f060002; + } + public static final class layout { + public static final int custom_dialog=0x7f040000; + public static final int notification_action=0x7f040001; + public static final int notification_action_tombstone=0x7f040002; + public static final int notification_media_action=0x7f040003; + public static final int notification_media_cancel_action=0x7f040004; + public static final int notification_template_big_media=0x7f040005; + public static final int notification_template_big_media_custom=0x7f040006; + public static final int notification_template_big_media_narrow=0x7f040007; + public static final int notification_template_big_media_narrow_custom=0x7f040008; + public static final int notification_template_custom_big=0x7f040009; + public static final int notification_template_icon_group=0x7f04000a; + public static final int notification_template_lines_media=0x7f04000b; + public static final int notification_template_media=0x7f04000c; + public static final int notification_template_media_custom=0x7f04000d; + public static final int notification_template_part_chronometer=0x7f04000e; + public static final int notification_template_part_time=0x7f04000f; + } + public static final class mipmap { + public static final int background=0x7f030000; + public static final int foreground=0x7f030001; + public static final int ic_launcher=0x7f030002; + } + public static final class string { + public static final int common_google_play_services_enable_button=0x7f070001; + public static final int common_google_play_services_enable_text=0x7f070002; + public static final int common_google_play_services_enable_title=0x7f070003; + public static final int common_google_play_services_install_button=0x7f070004; + public static final int common_google_play_services_install_text=0x7f070005; + public static final int common_google_play_services_install_title=0x7f070006; + public static final int common_google_play_services_notification_channel_name=0x7f070007; + public static final int common_google_play_services_notification_ticker=0x7f070008; + public static final int common_google_play_services_unknown_issue=0x7f070000; + public static final int common_google_play_services_unsupported_text=0x7f070009; + public static final int common_google_play_services_update_button=0x7f07000a; + public static final int common_google_play_services_update_text=0x7f07000b; + public static final int common_google_play_services_update_title=0x7f07000c; + public static final int common_google_play_services_updating_text=0x7f07000d; + public static final int common_google_play_services_wear_update_text=0x7f07000e; + public static final int common_open_on_phone=0x7f07000f; + public static final int common_signin_button_text=0x7f070010; + public static final int common_signin_button_text_long=0x7f070011; + public static final int status_bar_notification_info_overflow=0x7f070012; + } + public static final class style { + public static final int DarkTheme=0x7f0a000d; + public static final int TextAppearance_Compat_Notification=0x7f0a0006; + public static final int TextAppearance_Compat_Notification_Info=0x7f0a0007; + public static final int TextAppearance_Compat_Notification_Info_Media=0x7f0a0001; + public static final int TextAppearance_Compat_Notification_Line2=0x7f0a000c; + public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0a0005; + public static final int TextAppearance_Compat_Notification_Media=0x7f0a0002; + public static final int TextAppearance_Compat_Notification_Time=0x7f0a0008; + public static final int TextAppearance_Compat_Notification_Time_Media=0x7f0a0003; + public static final int TextAppearance_Compat_Notification_Title=0x7f0a0009; + public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0a0004; + public static final int Widget_Compat_NotificationActionContainer=0x7f0a000a; + public static final int Widget_Compat_NotificationActionText=0x7f0a000b; + public static final int Widget_Support_CoordinatorLayout=0x7f0a0000; + } + public static final class styleable { + /** Attributes that can be used with a ColorStateListItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ColorStateListItem_alpha b4a.rocklogster:alpha} Alpha multiplier applied to the base color.
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_android_color android:color} Base color for this state.
+ @see #ColorStateListItem_alpha + @see #ColorStateListItem_android_alpha + @see #ColorStateListItem_android_color + */ + public static final int[] ColorStateListItem = { + 0x010101a5, 0x0101031f, 0x7f010027 + }; + /** +

+ @attr description + Alpha multiplier applied to the base color. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:alpha + */ + public static final int ColorStateListItem_alpha = 2; + /** +

This symbol is the offset where the {@link android.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha = 1; + /** +

+ @attr description + Base color for this state. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#color}. + @attr name android:color + */ + public static final int ColorStateListItem_android_color = 0; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines b4a.rocklogster:keylines} A reference to an array of integers representing the + locations of horizontal keylines in dp from the starting edge.
{@link #CoordinatorLayout_statusBarBackground b4a.rocklogster:statusBarBackground} Drawable to display behind the status bar when the view is set to draw behind it.
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f01001f, 0x7f010020 + }; + /** +

+ @attr description + A reference to an array of integers representing the + locations of horizontal keylines in dp from the starting edge. + Child views can refer to these keylines for alignment using + layout_keyline="index" where index is a 0-based index into + this array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:keylines + */ + public static final int CoordinatorLayout_keylines = 0; + /** +

+ @attr description + Drawable to display behind the status bar when the view is set to draw behind it. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This is a private symbol. + @attr name b4a.rocklogster:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_Layout. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor b4a.rocklogster:layout_anchor} The id of an anchor view that this view should position relative to.
{@link #CoordinatorLayout_Layout_layout_anchorGravity b4a.rocklogster:layout_anchorGravity} Specifies how an object should position relative to an anchor, on both the X and Y axes, + within its parent's bounds.
{@link #CoordinatorLayout_Layout_layout_behavior b4a.rocklogster:layout_behavior} The class name of a Behavior class defining special runtime behavior + for this child view.
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges b4a.rocklogster:layout_dodgeInsetEdges} Specifies how this view dodges the inset edges of the CoordinatorLayout.
{@link #CoordinatorLayout_Layout_layout_insetEdge b4a.rocklogster:layout_insetEdge} Specifies how this view insets the CoordinatorLayout and make some other views + dodge it.
{@link #CoordinatorLayout_Layout_layout_keyline b4a.rocklogster:layout_keyline} The index of a keyline this view should position relative to.
+ @see #CoordinatorLayout_Layout_android_layout_gravity + @see #CoordinatorLayout_Layout_layout_anchor + @see #CoordinatorLayout_Layout_layout_anchorGravity + @see #CoordinatorLayout_Layout_layout_behavior + @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + @see #CoordinatorLayout_Layout_layout_insetEdge + @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout = { + 0x010100b3, 0x7f010021, 0x7f010022, 0x7f010023, + 0x7f010024, 0x7f010025, 0x7f010026 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + /** +

+ @attr description + The id of an anchor view that this view should position relative to. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor = 2; + /** +

+ @attr description + Specifies how an object should position relative to an anchor, on both the X and Y axes, + within its parent's bounds. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+

This is a private symbol. + @attr name b4a.rocklogster:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; + /** +

+ @attr description + The class name of a Behavior class defining special runtime behavior + for this child view. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior = 1; + /** +

+ @attr description + Specifies how this view dodges the inset edges of the CoordinatorLayout. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0 Don't dodge any edges
top0x30 Dodge the top inset edge.
bottom0x50 Dodge the bottom inset edge.
left0x03 Dodge the left inset edge.
right0x05 Dodge the right inset edge.
start0x00800003 Dodge the start inset edge.
end0x00800005 Dodge the end inset edge.
all0x77 Dodge all the inset edges.
+

This is a private symbol. + @attr name b4a.rocklogster:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; + /** +

+ @attr description + Specifies how this view insets the CoordinatorLayout and make some other views + dodge it. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0 Don't inset.
top0x30 Inset the top edge.
bottom0x50 Inset the bottom edge.
left0x03 Inset the left edge.
right0x05 Inset the right edge.
start0x00800003 Inset the start edge.
end0x00800005 Inset the end edge.
+

This is a private symbol. + @attr name b4a.rocklogster:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + /** +

+ @attr description + The index of a keyline this view should position relative to. + android:layout_gravity will affect how the view aligns to the + specified keyline. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline = 3; + /** Attributes that can be used with a FontFamily. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #FontFamily_fontProviderAuthority b4a.rocklogster:fontProviderAuthority} The authority of the Font Provider to be used for the request.
{@link #FontFamily_fontProviderCerts b4a.rocklogster:fontProviderCerts} The sets of hashes for the certificates the provider should be signed with.
{@link #FontFamily_fontProviderFetchStrategy b4a.rocklogster:fontProviderFetchStrategy} The strategy to be used when fetching font data from a font provider in XML layouts.
{@link #FontFamily_fontProviderFetchTimeout b4a.rocklogster:fontProviderFetchTimeout} The length of the timeout during fetching.
{@link #FontFamily_fontProviderPackage b4a.rocklogster:fontProviderPackage} The package for the Font Provider to be used for the request.
{@link #FontFamily_fontProviderQuery b4a.rocklogster:fontProviderQuery} The query to be sent over to the provider.
+ @see #FontFamily_fontProviderAuthority + @see #FontFamily_fontProviderCerts + @see #FontFamily_fontProviderFetchStrategy + @see #FontFamily_fontProviderFetchTimeout + @see #FontFamily_fontProviderPackage + @see #FontFamily_fontProviderQuery + */ + public static final int[] FontFamily = { + 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, + 0x7f01002c, 0x7f01002d + }; + /** +

+ @attr description + The authority of the Font Provider to be used for the request. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority = 0; + /** +

+ @attr description + The sets of hashes for the certificates the provider should be signed with. This is + used to verify the identity of the provider, and is only required if the provider is not + part of the system image. This value may point to one list or a list of lists, where each + individual list represents one collection of signature hashes. Refer to your font provider's + documentation for these values. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts = 3; + /** +

+ @attr description + The strategy to be used when fetching font data from a font provider in XML layouts. + This attribute is ignored when the resource is loaded from code, as it is equivalent to the + choice of API between {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and + {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} + (async). + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0 The blocking font fetch works as follows. + First, check the local cache, then if the requested font is not cached, request the + font from the provider and wait until it is finished. You can change the length of + the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the + default typeface will be used instead.
async1 The async font fetch works as follows. + First, check the local cache, then if the requeted font is not cached, trigger a + request the font and continue with layout inflation. Once the font fetch succeeds, the + target text view will be refreshed with the downloaded font data. The + fontProviderFetchTimeout will be ignored if async loading is specified.
+

This is a private symbol. + @attr name b4a.rocklogster:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy = 4; + /** +

+ @attr description + The length of the timeout during fetching. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1 A special value for the timeout. In this case, the blocking font fetching will not + timeout and wait until a reply is received from the font provider.
+

This is a private symbol. + @attr name b4a.rocklogster:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout = 5; + /** +

+ @attr description + The package for the Font Provider to be used for the request. This is used to verify + the identity of the provider. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage = 1; + /** +

+ @attr description + The query to be sent over to the provider. Refer to your font provider's documentation + on the format of this string. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery = 2; + /** Attributes that can be used with a FontFamilyFont. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #FontFamilyFont_android_font android:font}
{@link #FontFamilyFont_android_fontStyle android:fontStyle} References to the framework attrs
{@link #FontFamilyFont_android_fontVariationSettings android:fontVariationSettings}
{@link #FontFamilyFont_android_fontWeight android:fontWeight}
{@link #FontFamilyFont_android_ttcIndex android:ttcIndex}
{@link #FontFamilyFont_font b4a.rocklogster:font} The reference to the font file to be used.
{@link #FontFamilyFont_fontStyle b4a.rocklogster:fontStyle} The style of the given font file.
{@link #FontFamilyFont_fontVariationSettings b4a.rocklogster:fontVariationSettings} The variation settings to be applied to the font.
{@link #FontFamilyFont_fontWeight b4a.rocklogster:fontWeight} The weight of the given font file.
{@link #FontFamilyFont_ttcIndex b4a.rocklogster:ttcIndex} The index of the font in the tcc font file.
+ @see #FontFamilyFont_android_font + @see #FontFamilyFont_android_fontStyle + @see #FontFamilyFont_android_fontVariationSettings + @see #FontFamilyFont_android_fontWeight + @see #FontFamilyFont_android_ttcIndex + @see #FontFamilyFont_font + @see #FontFamilyFont_fontStyle + @see #FontFamilyFont_fontVariationSettings + @see #FontFamilyFont_fontWeight + @see #FontFamilyFont_ttcIndex + */ + public static final int[] FontFamilyFont = { + 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, + 0x01010570, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010032 + }; + /** +

This symbol is the offset where the {@link android.R.attr#font} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:font + */ + public static final int FontFamilyFont_android_font = 0; + /** +

+ @attr description + References to the framework attrs +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fontStyle}. + @attr name android:fontStyle + */ + public static final int FontFamilyFont_android_fontStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#fontVariationSettings} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:fontVariationSettings + */ + public static final int FontFamilyFont_android_fontVariationSettings = 4; + /** +

This symbol is the offset where the {@link android.R.attr#fontWeight} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:fontWeight + */ + public static final int FontFamilyFont_android_fontWeight = 1; + /** +

This symbol is the offset where the {@link android.R.attr#ttcIndex} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:ttcIndex + */ + public static final int FontFamilyFont_android_ttcIndex = 3; + /** +

+ @attr description + The reference to the font file to be used. This should be a file in the res/font folder + and should therefore have an R reference value. E.g. @font/myfont + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:font + */ + public static final int FontFamilyFont_font = 6; + /** +

+ @attr description + The style of the given font file. This will be used when the font is being loaded into + the font stack and will override any style information in the font's header tables. If + unspecified, the value in the font's header tables will be used. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+

This is a private symbol. + @attr name b4a.rocklogster:fontStyle + */ + public static final int FontFamilyFont_fontStyle = 5; + /** +

+ @attr description + The variation settings to be applied to the font. The string should be in the following + format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be + used, or the font used does not support variation settings, this attribute needs not be + specified. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontVariationSettings + */ + public static final int FontFamilyFont_fontVariationSettings = 8; + /** +

+ @attr description + The weight of the given font file. This will be used when the font is being loaded into + the font stack and will override any weight information in the font's header tables. Must + be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most + common values are 400 for regular weight and 700 for bold weight. If unspecified, the value + in the font's header tables will be used. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontWeight + */ + public static final int FontFamilyFont_fontWeight = 7; + /** +

+ @attr description + The index of the font in the tcc font file. If the font file referenced is not in the + tcc format, this attribute needs not be specified. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:ttcIndex + */ + public static final int FontFamilyFont_ttcIndex = 9; + /** Attributes that can be used with a Fragment. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #Fragment_android_id android:id}
{@link #Fragment_android_name android:name}
{@link #Fragment_android_tag android:tag}
+ @see #Fragment_android_id + @see #Fragment_android_name + @see #Fragment_android_tag + */ + public static final int[] Fragment = { + 0x01010003, 0x010100d0, 0x010100d1 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #Fragment} array. + @attr name android:id + */ + public static final int Fragment_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#name} + attribute's value can be found in the {@link #Fragment} array. + @attr name android:name + */ + public static final int Fragment_android_name = 0; + /** +

This symbol is the offset where the {@link android.R.attr#tag} + attribute's value can be found in the {@link #Fragment} array. + @attr name android:tag + */ + public static final int Fragment_android_tag = 2; + /** Attributes that can be used with a FragmentContainerView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #FragmentContainerView_android_name android:name}
{@link #FragmentContainerView_android_tag android:tag}
+ @see #FragmentContainerView_android_name + @see #FragmentContainerView_android_tag + */ + public static final int[] FragmentContainerView = { + 0x01010003, 0x010100d1 + }; + /** +

This symbol is the offset where the {@link android.R.attr#name} + attribute's value can be found in the {@link #FragmentContainerView} array. + @attr name android:name + */ + public static final int FragmentContainerView_android_name = 0; + /** +

This symbol is the offset where the {@link android.R.attr#tag} + attribute's value can be found in the {@link #FragmentContainerView} array. + @attr name android:tag + */ + public static final int FragmentContainerView_android_tag = 1; + /** Attributes that can be used with a GradientColor. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + +
AttributeDescription
{@link #GradientColor_android_centerColor android:centerColor} Optional center color.
{@link #GradientColor_android_centerX android:centerX} Only applied to SweepGradient / RadialGradient + X coordinate of the center of the gradient within the path.
{@link #GradientColor_android_centerY android:centerY} Y coordinate of the center of the gradient within the path.
{@link #GradientColor_android_endColor android:endColor} End color of the gradient.
{@link #GradientColor_android_endX android:endX} X coordinate of the end point origin of the gradient.
{@link #GradientColor_android_endY android:endY} Y coordinate of the end point of the gradient within the shape.
{@link #GradientColor_android_gradientRadius android:gradientRadius} Only applied to RadialGradient + Radius of the gradient, used only with radial gradient.
{@link #GradientColor_android_startColor android:startColor} Start color of the gradient.
{@link #GradientColor_android_startX android:startX} LinearGradient specific + X coordinate of the start point origin of the gradient.
{@link #GradientColor_android_startY android:startY} Y coordinate of the start point of the gradient within the shape.
{@link #GradientColor_android_tileMode android:tileMode} Defines the tile mode of the gradient.
{@link #GradientColor_android_type android:type} Type of gradient.
+ @see #GradientColor_android_centerColor + @see #GradientColor_android_centerX + @see #GradientColor_android_centerY + @see #GradientColor_android_endColor + @see #GradientColor_android_endX + @see #GradientColor_android_endY + @see #GradientColor_android_gradientRadius + @see #GradientColor_android_startColor + @see #GradientColor_android_startX + @see #GradientColor_android_startY + @see #GradientColor_android_tileMode + @see #GradientColor_android_type + */ + public static final int[] GradientColor = { + 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, + 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, + 0x01010510, 0x01010511, 0x01010512, 0x01010513 + }; + /** +

+ @attr description + Optional center color. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerColor}. + @attr name android:centerColor + */ + public static final int GradientColor_android_centerColor = 7; + /** +

+ @attr description + Only applied to SweepGradient / RadialGradient + X coordinate of the center of the gradient within the path. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerX}. + @attr name android:centerX + */ + public static final int GradientColor_android_centerX = 3; + /** +

+ @attr description + Y coordinate of the center of the gradient within the path. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerY}. + @attr name android:centerY + */ + public static final int GradientColor_android_centerY = 4; + /** +

+ @attr description + End color of the gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#endColor}. + @attr name android:endColor + */ + public static final int GradientColor_android_endColor = 1; + /** +

+ @attr description + X coordinate of the end point origin of the gradient. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#endX}. + @attr name android:endX + */ + public static final int GradientColor_android_endX = 10; + /** +

+ @attr description + Y coordinate of the end point of the gradient within the shape. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#endY}. + @attr name android:endY + */ + public static final int GradientColor_android_endY = 11; + /** +

+ @attr description + Only applied to RadialGradient + Radius of the gradient, used only with radial gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#gradientRadius}. + @attr name android:gradientRadius + */ + public static final int GradientColor_android_gradientRadius = 5; + /** +

+ @attr description + Start color of the gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startColor}. + @attr name android:startColor + */ + public static final int GradientColor_android_startColor = 0; + /** +

+ @attr description + LinearGradient specific + X coordinate of the start point origin of the gradient. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startX}. + @attr name android:startX + */ + public static final int GradientColor_android_startX = 8; + /** +

+ @attr description + Y coordinate of the start point of the gradient within the shape. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startY}. + @attr name android:startY + */ + public static final int GradientColor_android_startY = 9; + /** +

+ @attr description + Defines the tile mode of the gradient. SweepGradient doesn't support tiling. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#tileMode}. + @attr name android:tileMode + */ + public static final int GradientColor_android_tileMode = 6; + /** +

+ @attr description + Type of gradient. The default type is linear. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#type}. + @attr name android:type + */ + public static final int GradientColor_android_type = 2; + /** Attributes that can be used with a GradientColorItem. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #GradientColorItem_android_color android:color} The current color for the offset inside the gradient.
{@link #GradientColorItem_android_offset android:offset} The offset (or ratio) of this current color item inside the gradient.
+ @see #GradientColorItem_android_color + @see #GradientColorItem_android_offset + */ + public static final int[] GradientColorItem = { + 0x010101a5, 0x01010514 + }; + /** +

+ @attr description + The current color for the offset inside the gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#color}. + @attr name android:color + */ + public static final int GradientColorItem_android_color = 0; + /** +

+ @attr description + The offset (or ratio) of this current color item inside the gradient. + The value is only meaningful when it is between 0 and 1. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#offset}. + @attr name android:offset + */ + public static final int GradientColorItem_android_offset = 1; + /** Attributes that can be used with a LoadingImageView. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #LoadingImageView_circleCrop b4a.rocklogster:circleCrop}
{@link #LoadingImageView_imageAspectRatio b4a.rocklogster:imageAspectRatio}
{@link #LoadingImageView_imageAspectRatioAdjust b4a.rocklogster:imageAspectRatioAdjust}
+ @see #LoadingImageView_circleCrop + @see #LoadingImageView_imageAspectRatio + @see #LoadingImageView_imageAspectRatioAdjust + */ + public static final int[] LoadingImageView = { + 0x7f010000, 0x7f010001, 0x7f010002 + }; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#circleCrop} + attribute's value can be found in the {@link #LoadingImageView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:circleCrop + */ + public static final int LoadingImageView_circleCrop = 2; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#imageAspectRatio} + attribute's value can be found in the {@link #LoadingImageView} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:imageAspectRatio + */ + public static final int LoadingImageView_imageAspectRatio = 1; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#imageAspectRatioAdjust} + attribute's value can be found in the {@link #LoadingImageView} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
adjust_width1
adjust_height2
+ @attr name b4a.rocklogster:imageAspectRatioAdjust + */ + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + /** Attributes that can be used with a MapAttrs. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MapAttrs_ambientEnabled b4a.rocklogster:ambientEnabled}
{@link #MapAttrs_cameraBearing b4a.rocklogster:cameraBearing}
{@link #MapAttrs_cameraMaxZoomPreference b4a.rocklogster:cameraMaxZoomPreference}
{@link #MapAttrs_cameraMinZoomPreference b4a.rocklogster:cameraMinZoomPreference}
{@link #MapAttrs_cameraTargetLat b4a.rocklogster:cameraTargetLat}
{@link #MapAttrs_cameraTargetLng b4a.rocklogster:cameraTargetLng}
{@link #MapAttrs_cameraTilt b4a.rocklogster:cameraTilt}
{@link #MapAttrs_cameraZoom b4a.rocklogster:cameraZoom}
{@link #MapAttrs_latLngBoundsNorthEastLatitude b4a.rocklogster:latLngBoundsNorthEastLatitude}
{@link #MapAttrs_latLngBoundsNorthEastLongitude b4a.rocklogster:latLngBoundsNorthEastLongitude}
{@link #MapAttrs_latLngBoundsSouthWestLatitude b4a.rocklogster:latLngBoundsSouthWestLatitude}
{@link #MapAttrs_latLngBoundsSouthWestLongitude b4a.rocklogster:latLngBoundsSouthWestLongitude}
{@link #MapAttrs_liteMode b4a.rocklogster:liteMode}
{@link #MapAttrs_mapType b4a.rocklogster:mapType}
{@link #MapAttrs_uiCompass b4a.rocklogster:uiCompass}
{@link #MapAttrs_uiMapToolbar b4a.rocklogster:uiMapToolbar}
{@link #MapAttrs_uiRotateGestures b4a.rocklogster:uiRotateGestures}
{@link #MapAttrs_uiScrollGestures b4a.rocklogster:uiScrollGestures}
{@link #MapAttrs_uiScrollGesturesDuringRotateOrZoom b4a.rocklogster:uiScrollGesturesDuringRotateOrZoom}
{@link #MapAttrs_uiTiltGestures b4a.rocklogster:uiTiltGestures}
{@link #MapAttrs_uiZoomControls b4a.rocklogster:uiZoomControls}
{@link #MapAttrs_uiZoomGestures b4a.rocklogster:uiZoomGestures}
{@link #MapAttrs_useViewLifecycle b4a.rocklogster:useViewLifecycle}
{@link #MapAttrs_zOrderOnTop b4a.rocklogster:zOrderOnTop}
+ @see #MapAttrs_ambientEnabled + @see #MapAttrs_cameraBearing + @see #MapAttrs_cameraMaxZoomPreference + @see #MapAttrs_cameraMinZoomPreference + @see #MapAttrs_cameraTargetLat + @see #MapAttrs_cameraTargetLng + @see #MapAttrs_cameraTilt + @see #MapAttrs_cameraZoom + @see #MapAttrs_latLngBoundsNorthEastLatitude + @see #MapAttrs_latLngBoundsNorthEastLongitude + @see #MapAttrs_latLngBoundsSouthWestLatitude + @see #MapAttrs_latLngBoundsSouthWestLongitude + @see #MapAttrs_liteMode + @see #MapAttrs_mapType + @see #MapAttrs_uiCompass + @see #MapAttrs_uiMapToolbar + @see #MapAttrs_uiRotateGestures + @see #MapAttrs_uiScrollGestures + @see #MapAttrs_uiScrollGesturesDuringRotateOrZoom + @see #MapAttrs_uiTiltGestures + @see #MapAttrs_uiZoomControls + @see #MapAttrs_uiZoomGestures + @see #MapAttrs_useViewLifecycle + @see #MapAttrs_zOrderOnTop + */ + public static final int[] MapAttrs = { + 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, + 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, + 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, + 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, + 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, + 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d + }; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#ambientEnabled} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:ambientEnabled + */ + public static final int MapAttrs_ambientEnabled = 17; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraBearing} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraBearing + */ + public static final int MapAttrs_cameraBearing = 1; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraMaxZoomPreference} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraMaxZoomPreference + */ + public static final int MapAttrs_cameraMaxZoomPreference = 19; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraMinZoomPreference} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraMinZoomPreference + */ + public static final int MapAttrs_cameraMinZoomPreference = 18; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraTargetLat} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraTargetLat + */ + public static final int MapAttrs_cameraTargetLat = 2; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraTargetLng} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraTargetLng + */ + public static final int MapAttrs_cameraTargetLng = 3; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraTilt} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraTilt + */ + public static final int MapAttrs_cameraTilt = 4; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraZoom} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraZoom + */ + public static final int MapAttrs_cameraZoom = 5; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsNorthEastLatitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsNorthEastLatitude + */ + public static final int MapAttrs_latLngBoundsNorthEastLatitude = 22; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsNorthEastLongitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsNorthEastLongitude + */ + public static final int MapAttrs_latLngBoundsNorthEastLongitude = 23; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsSouthWestLatitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsSouthWestLatitude + */ + public static final int MapAttrs_latLngBoundsSouthWestLatitude = 20; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsSouthWestLongitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsSouthWestLongitude + */ + public static final int MapAttrs_latLngBoundsSouthWestLongitude = 21; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#liteMode} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:liteMode + */ + public static final int MapAttrs_liteMode = 6; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#mapType} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
none0
normal1
satellite2
terrain3
hybrid4
+ @attr name b4a.rocklogster:mapType + */ + public static final int MapAttrs_mapType = 0; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiCompass} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiCompass + */ + public static final int MapAttrs_uiCompass = 7; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiMapToolbar} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiMapToolbar + */ + public static final int MapAttrs_uiMapToolbar = 16; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiRotateGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiRotateGestures + */ + public static final int MapAttrs_uiRotateGestures = 8; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiScrollGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiScrollGestures + */ + public static final int MapAttrs_uiScrollGestures = 9; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiScrollGesturesDuringRotateOrZoom} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiScrollGesturesDuringRotateOrZoom + */ + public static final int MapAttrs_uiScrollGesturesDuringRotateOrZoom = 10; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiTiltGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiTiltGestures + */ + public static final int MapAttrs_uiTiltGestures = 11; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiZoomControls} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiZoomControls + */ + public static final int MapAttrs_uiZoomControls = 12; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiZoomGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiZoomGestures + */ + public static final int MapAttrs_uiZoomGestures = 13; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#useViewLifecycle} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:useViewLifecycle + */ + public static final int MapAttrs_useViewLifecycle = 14; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#zOrderOnTop} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:zOrderOnTop + */ + public static final int MapAttrs_zOrderOnTop = 15; + /** Attributes that can be used with a SignInButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SignInButton_buttonSize b4a.rocklogster:buttonSize}
{@link #SignInButton_colorScheme b4a.rocklogster:colorScheme}
{@link #SignInButton_scopeUris b4a.rocklogster:scopeUris}
+ @see #SignInButton_buttonSize + @see #SignInButton_colorScheme + @see #SignInButton_scopeUris + */ + public static final int[] SignInButton = { + 0x7f010003, 0x7f010004, 0x7f010005 + }; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#buttonSize} + attribute's value can be found in the {@link #SignInButton} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
standard0
wide1
icon_only2
+ @attr name b4a.rocklogster:buttonSize + */ + public static final int SignInButton_buttonSize = 0; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#colorScheme} + attribute's value can be found in the {@link #SignInButton} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
dark0
light1
auto2
+ @attr name b4a.rocklogster:colorScheme + */ + public static final int SignInButton_colorScheme = 1; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#scopeUris} + attribute's value can be found in the {@link #SignInButton} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. + @attr name b4a.rocklogster:scopeUris + */ + public static final int SignInButton_scopeUris = 2; + }; +} diff --git a/Objects/gen/com/google/android/gms/common/R.java b/Objects/gen/com/google/android/gms/common/R.java new file mode 100644 index 0000000..2d8414e --- /dev/null +++ b/Objects/gen/com/google/android/gms/common/R.java @@ -0,0 +1,2150 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package com.google.android.gms.common; + +public final class R { + public static final class anim { + public static final int fragment_close_enter=0x7f050000; + public static final int fragment_close_exit=0x7f050001; + public static final int fragment_fade_enter=0x7f050002; + public static final int fragment_fade_exit=0x7f050003; + public static final int fragment_fast_out_extra_slow_in=0x7f050004; + public static final int fragment_open_enter=0x7f050005; + public static final int fragment_open_exit=0x7f050006; + } + public static final class attr { + /** Alpha multiplier applied to the base color. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alpha=0x7f010027; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int ambientEnabled=0x7f010017; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
standard0
wide1
icon_only2
+ */ + public static final int buttonSize=0x7f010003; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraBearing=0x7f010007; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraMaxZoomPreference=0x7f010019; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraMinZoomPreference=0x7f010018; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraTargetLat=0x7f010008; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraTargetLng=0x7f010009; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraTilt=0x7f01000a; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraZoom=0x7f01000b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int circleCrop=0x7f010002; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
dark0
light1
auto2
+ */ + public static final int colorScheme=0x7f010004; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int coordinatorLayoutStyle=0x7f01001e; + /** The reference to the font file to be used. This should be a file in the res/font folder + and should therefore have an R reference value. E.g. @font/myfont +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int font=0x7f01002f; + /** The authority of the Font Provider to be used for the request. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderAuthority=0x7f010028; + /** The sets of hashes for the certificates the provider should be signed with. This is + used to verify the identity of the provider, and is only required if the provider is not + part of the system image. This value may point to one list or a list of lists, where each + individual list represents one collection of signature hashes. Refer to your font provider's + documentation for these values. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fontProviderCerts=0x7f01002b; + /** The strategy to be used when fetching font data from a font provider in XML layouts. + This attribute is ignored when the resource is loaded from code, as it is equivalent to the + choice of API between {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and + {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} + (async). +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0 The blocking font fetch works as follows. + First, check the local cache, then if the requested font is not cached, request the + font from the provider and wait until it is finished. You can change the length of + the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the + default typeface will be used instead.
async1 The async font fetch works as follows. + First, check the local cache, then if the requeted font is not cached, trigger a + request the font and continue with layout inflation. Once the font fetch succeeds, the + target text view will be refreshed with the downloaded font data. The + fontProviderFetchTimeout will be ignored if async loading is specified.
+ */ + public static final int fontProviderFetchStrategy=0x7f01002c; + /** The length of the timeout during fetching. +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1 A special value for the timeout. In this case, the blocking font fetching will not + timeout and wait until a reply is received from the font provider.
+ */ + public static final int fontProviderFetchTimeout=0x7f01002d; + /** The package for the Font Provider to be used for the request. This is used to verify + the identity of the provider. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderPackage=0x7f010029; + /** The query to be sent over to the provider. Refer to your font provider's documentation + on the format of this string. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderQuery=0x7f01002a; + /** The style of the given font file. This will be used when the font is being loaded into + the font stack and will override any style information in the font's header tables. If + unspecified, the value in the font's header tables will be used. +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ */ + public static final int fontStyle=0x7f01002e; + /** The variation settings to be applied to the font. The string should be in the following + format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be + used, or the font used does not support variation settings, this attribute needs not be + specified. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontVariationSettings=0x7f010031; + /** The weight of the given font file. This will be used when the font is being loaded into + the font stack and will override any weight information in the font's header tables. Must + be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most + common values are 400 for regular weight and 700 for bold weight. If unspecified, the value + in the font's header tables will be used. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontWeight=0x7f010030; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int imageAspectRatio=0x7f010001; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
adjust_width1
adjust_height2
+ */ + public static final int imageAspectRatioAdjust=0x7f010000; + /** A reference to an array of integers representing the + locations of horizontal keylines in dp from the starting edge. + Child views can refer to these keylines for alignment using + layout_keyline="index" where index is a 0-based index into + this array. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keylines=0x7f01001f; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsNorthEastLatitude=0x7f01001c; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsNorthEastLongitude=0x7f01001d; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsSouthWestLatitude=0x7f01001a; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsSouthWestLongitude=0x7f01001b; + /** The id of an anchor view that this view should position relative to. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_anchor=0x7f010022; + /** Specifies how an object should position relative to an anchor, on both the X and Y axes, + within its parent's bounds. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+ */ + public static final int layout_anchorGravity=0x7f010024; + /** The class name of a Behavior class defining special runtime behavior + for this child view. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_behavior=0x7f010021; + /** Specifies how this view dodges the inset edges of the CoordinatorLayout. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0 Don't dodge any edges
top0x30 Dodge the top inset edge.
bottom0x50 Dodge the bottom inset edge.
left0x03 Dodge the left inset edge.
right0x05 Dodge the right inset edge.
start0x00800003 Dodge the start inset edge.
end0x00800005 Dodge the end inset edge.
all0x77 Dodge all the inset edges.
+ */ + public static final int layout_dodgeInsetEdges=0x7f010026; + /** Specifies how this view insets the CoordinatorLayout and make some other views + dodge it. +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0 Don't inset.
top0x30 Inset the top edge.
bottom0x50 Inset the bottom edge.
left0x03 Inset the left edge.
right0x05 Inset the right edge.
start0x00800003 Inset the start edge.
end0x00800005 Inset the end edge.
+ */ + public static final int layout_insetEdge=0x7f010025; + /** The index of a keyline this view should position relative to. + android:layout_gravity will affect how the view aligns to the + specified keyline. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_keyline=0x7f010023; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int liteMode=0x7f01000c; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
none0
normal1
satellite2
terrain3
hybrid4
+ */ + public static final int mapType=0x7f010006; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. + */ + public static final int scopeUris=0x7f010005; + /** Drawable to display behind the status bar when the view is set to draw behind it. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int statusBarBackground=0x7f010020; + /** The index of the font in the tcc font file. If the font file referenced is not in the + tcc format, this attribute needs not be specified. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int ttcIndex=0x7f010032; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiCompass=0x7f01000d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiMapToolbar=0x7f010016; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiRotateGestures=0x7f01000e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiScrollGestures=0x7f01000f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiScrollGesturesDuringRotateOrZoom=0x7f010010; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiTiltGestures=0x7f010011; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiZoomControls=0x7f010012; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiZoomGestures=0x7f010013; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useViewLifecycle=0x7f010014; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int zOrderOnTop=0x7f010015; + } + public static final class color { + public static final int common_google_signin_btn_text_dark=0x7f08000f; + public static final int common_google_signin_btn_text_dark_default=0x7f080000; + public static final int common_google_signin_btn_text_dark_disabled=0x7f080001; + public static final int common_google_signin_btn_text_dark_focused=0x7f080002; + public static final int common_google_signin_btn_text_dark_pressed=0x7f080003; + public static final int common_google_signin_btn_text_light=0x7f080010; + public static final int common_google_signin_btn_text_light_default=0x7f080004; + public static final int common_google_signin_btn_text_light_disabled=0x7f080005; + public static final int common_google_signin_btn_text_light_focused=0x7f080006; + public static final int common_google_signin_btn_text_light_pressed=0x7f080007; + public static final int common_google_signin_btn_tint=0x7f080011; + public static final int notification_action_color_filter=0x7f08000b; + public static final int notification_icon_bg_color=0x7f08000c; + public static final int notification_material_background_media_default_color=0x7f080008; + public static final int primary_text_default_material_dark=0x7f080009; + public static final int ripple_material_light=0x7f08000d; + public static final int secondary_text_default_material_dark=0x7f08000a; + public static final int secondary_text_default_material_light=0x7f08000e; + } + public static final class dimen { + public static final int compat_button_inset_horizontal_material=0x7f0b0008; + public static final int compat_button_inset_vertical_material=0x7f0b0009; + public static final int compat_button_padding_horizontal_material=0x7f0b000a; + public static final int compat_button_padding_vertical_material=0x7f0b000b; + public static final int compat_control_corner_material=0x7f0b000c; + public static final int compat_notification_large_icon_max_height=0x7f0b000d; + public static final int compat_notification_large_icon_max_width=0x7f0b000e; + public static final int notification_action_icon_size=0x7f0b000f; + public static final int notification_action_text_size=0x7f0b0010; + public static final int notification_big_circle_margin=0x7f0b0011; + public static final int notification_content_margin_start=0x7f0b0005; + public static final int notification_large_icon_height=0x7f0b0012; + public static final int notification_large_icon_width=0x7f0b0013; + public static final int notification_main_column_padding_top=0x7f0b0006; + public static final int notification_media_narrow_margin=0x7f0b0007; + public static final int notification_right_icon_size=0x7f0b0014; + public static final int notification_right_side_padding_top=0x7f0b0004; + public static final int notification_small_icon_background_padding=0x7f0b0015; + public static final int notification_small_icon_size_as_large=0x7f0b0016; + public static final int notification_subtext_size=0x7f0b0017; + public static final int notification_top_pad=0x7f0b0018; + public static final int notification_top_pad_large_text=0x7f0b0019; + public static final int subtitle_corner_radius=0x7f0b0000; + public static final int subtitle_outline_width=0x7f0b0001; + public static final int subtitle_shadow_offset=0x7f0b0002; + public static final int subtitle_shadow_radius=0x7f0b0003; + } + public static final class drawable { + public static final int common_full_open_on_phone=0x7f020000; + public static final int common_google_signin_btn_icon_dark=0x7f020001; + public static final int common_google_signin_btn_icon_dark_focused=0x7f020002; + public static final int common_google_signin_btn_icon_dark_normal=0x7f020003; + public static final int common_google_signin_btn_icon_dark_normal_background=0x7f020004; + public static final int common_google_signin_btn_icon_disabled=0x7f020005; + public static final int common_google_signin_btn_icon_light=0x7f020006; + public static final int common_google_signin_btn_icon_light_focused=0x7f020007; + public static final int common_google_signin_btn_icon_light_normal=0x7f020008; + public static final int common_google_signin_btn_icon_light_normal_background=0x7f020009; + public static final int common_google_signin_btn_text_dark=0x7f02000a; + public static final int common_google_signin_btn_text_dark_focused=0x7f02000b; + public static final int common_google_signin_btn_text_dark_normal=0x7f02000c; + public static final int common_google_signin_btn_text_dark_normal_background=0x7f02000d; + public static final int common_google_signin_btn_text_disabled=0x7f02000e; + public static final int common_google_signin_btn_text_light=0x7f02000f; + public static final int common_google_signin_btn_text_light_focused=0x7f020010; + public static final int common_google_signin_btn_text_light_normal=0x7f020011; + public static final int common_google_signin_btn_text_light_normal_background=0x7f020012; + public static final int googleg_disabled_color_18=0x7f020013; + public static final int googleg_standard_color_18=0x7f020014; + public static final int icon=0x7f020015; + public static final int notification_action_background=0x7f020016; + public static final int notification_bg=0x7f020017; + public static final int notification_bg_low=0x7f020018; + public static final int notification_bg_low_normal=0x7f020019; + public static final int notification_bg_low_pressed=0x7f02001a; + public static final int notification_bg_normal=0x7f02001b; + public static final int notification_bg_normal_pressed=0x7f02001c; + public static final int notification_icon_background=0x7f02001d; + public static final int notification_template_icon_bg=0x7f020020; + public static final int notification_template_icon_low_bg=0x7f020021; + public static final int notification_tile_bg=0x7f02001e; + public static final int notify_panel_notification_icon_bg=0x7f02001f; + } + public static final class id { + public static final int accessibility_action_clickable_span=0x7f090002; + public static final int accessibility_custom_action_0=0x7f090003; + public static final int accessibility_custom_action_1=0x7f090004; + public static final int accessibility_custom_action_10=0x7f090005; + public static final int accessibility_custom_action_11=0x7f090006; + public static final int accessibility_custom_action_12=0x7f090007; + public static final int accessibility_custom_action_13=0x7f090008; + public static final int accessibility_custom_action_14=0x7f090009; + public static final int accessibility_custom_action_15=0x7f09000a; + public static final int accessibility_custom_action_16=0x7f09000b; + public static final int accessibility_custom_action_17=0x7f09000c; + public static final int accessibility_custom_action_18=0x7f09000d; + public static final int accessibility_custom_action_19=0x7f09000e; + public static final int accessibility_custom_action_2=0x7f09000f; + public static final int accessibility_custom_action_20=0x7f090010; + public static final int accessibility_custom_action_21=0x7f090011; + public static final int accessibility_custom_action_22=0x7f090012; + public static final int accessibility_custom_action_23=0x7f090013; + public static final int accessibility_custom_action_24=0x7f090014; + public static final int accessibility_custom_action_25=0x7f090015; + public static final int accessibility_custom_action_26=0x7f090016; + public static final int accessibility_custom_action_27=0x7f090017; + public static final int accessibility_custom_action_28=0x7f090018; + public static final int accessibility_custom_action_29=0x7f090019; + public static final int accessibility_custom_action_3=0x7f09001a; + public static final int accessibility_custom_action_30=0x7f09001b; + public static final int accessibility_custom_action_31=0x7f09001c; + public static final int accessibility_custom_action_4=0x7f09001d; + public static final int accessibility_custom_action_5=0x7f09001e; + public static final int accessibility_custom_action_6=0x7f09001f; + public static final int accessibility_custom_action_7=0x7f090020; + public static final int accessibility_custom_action_8=0x7f090021; + public static final int accessibility_custom_action_9=0x7f090022; + public static final int action0=0x7f090054; + public static final int action_container=0x7f090051; + public static final int action_divider=0x7f090058; + public static final int action_image=0x7f090052; + public static final int action_text=0x7f090053; + public static final int actions=0x7f090062; + public static final int adjust_height=0x7f090030; + public static final int adjust_width=0x7f090031; + public static final int all=0x7f09004b; + public static final int async=0x7f09004c; + public static final int auto=0x7f090036; + public static final int blocking=0x7f09004d; + public static final int bottom=0x7f09003d; + public static final int cancel_action=0x7f090055; + public static final int center=0x7f09003e; + public static final int center_horizontal=0x7f09003f; + public static final int center_vertical=0x7f090040; + public static final int chronometer=0x7f09005d; + public static final int clip_horizontal=0x7f090041; + public static final int clip_vertical=0x7f090042; + public static final int dark=0x7f090037; + public static final int dialog_button=0x7f090050; + public static final int end=0x7f090043; + public static final int end_padder=0x7f090064; + public static final int fill=0x7f090044; + public static final int fill_horizontal=0x7f090045; + public static final int fill_vertical=0x7f090046; + public static final int forever=0x7f09004e; + public static final int fragment_container_view_tag=0x7f090000; + public static final int hybrid=0x7f090039; + public static final int icon=0x7f09005f; + public static final int icon_group=0x7f090063; + public static final int icon_only=0x7f090033; + public static final int info=0x7f09005e; + public static final int italic=0x7f09004f; + public static final int left=0x7f090047; + public static final int light=0x7f090038; + public static final int line1=0x7f090023; + public static final int line3=0x7f090024; + public static final int media_actions=0x7f090057; + public static final int none=0x7f090032; + public static final int normal=0x7f09003a; + public static final int notification_background=0x7f090061; + public static final int notification_main_column=0x7f09005a; + public static final int notification_main_column_container=0x7f090059; + public static final int right=0x7f090048; + public static final int right_icon=0x7f090060; + public static final int right_side=0x7f09005b; + public static final int satellite=0x7f09003b; + public static final int standard=0x7f090034; + public static final int start=0x7f090049; + public static final int status_bar_latest_event_content=0x7f090056; + public static final int tag_accessibility_actions=0x7f090025; + public static final int tag_accessibility_clickable_spans=0x7f090026; + public static final int tag_accessibility_heading=0x7f090027; + public static final int tag_accessibility_pane_title=0x7f090028; + public static final int tag_screen_reader_focusable=0x7f090029; + public static final int tag_transition_group=0x7f09002a; + public static final int tag_unhandled_key_event_manager=0x7f09002b; + public static final int tag_unhandled_key_listeners=0x7f09002c; + public static final int terrain=0x7f09003c; + public static final int text=0x7f09002d; + public static final int text2=0x7f09002e; + public static final int time=0x7f09005c; + public static final int title=0x7f09002f; + public static final int top=0x7f09004a; + public static final int visible_removing_fragment_view_tag=0x7f090001; + public static final int wide=0x7f090035; + } + public static final class integer { + public static final int cancel_button_image_alpha=0x7f060001; + public static final int google_play_services_version=0x7f060000; + public static final int status_bar_notification_info_maxnum=0x7f060002; + } + public static final class layout { + public static final int custom_dialog=0x7f040000; + public static final int notification_action=0x7f040001; + public static final int notification_action_tombstone=0x7f040002; + public static final int notification_media_action=0x7f040003; + public static final int notification_media_cancel_action=0x7f040004; + public static final int notification_template_big_media=0x7f040005; + public static final int notification_template_big_media_custom=0x7f040006; + public static final int notification_template_big_media_narrow=0x7f040007; + public static final int notification_template_big_media_narrow_custom=0x7f040008; + public static final int notification_template_custom_big=0x7f040009; + public static final int notification_template_icon_group=0x7f04000a; + public static final int notification_template_lines_media=0x7f04000b; + public static final int notification_template_media=0x7f04000c; + public static final int notification_template_media_custom=0x7f04000d; + public static final int notification_template_part_chronometer=0x7f04000e; + public static final int notification_template_part_time=0x7f04000f; + } + public static final class mipmap { + public static final int background=0x7f030000; + public static final int foreground=0x7f030001; + public static final int ic_launcher=0x7f030002; + } + public static final class string { + public static final int common_google_play_services_enable_button=0x7f070001; + public static final int common_google_play_services_enable_text=0x7f070002; + public static final int common_google_play_services_enable_title=0x7f070003; + public static final int common_google_play_services_install_button=0x7f070004; + public static final int common_google_play_services_install_text=0x7f070005; + public static final int common_google_play_services_install_title=0x7f070006; + public static final int common_google_play_services_notification_channel_name=0x7f070007; + public static final int common_google_play_services_notification_ticker=0x7f070008; + public static final int common_google_play_services_unknown_issue=0x7f070000; + public static final int common_google_play_services_unsupported_text=0x7f070009; + public static final int common_google_play_services_update_button=0x7f07000a; + public static final int common_google_play_services_update_text=0x7f07000b; + public static final int common_google_play_services_update_title=0x7f07000c; + public static final int common_google_play_services_updating_text=0x7f07000d; + public static final int common_google_play_services_wear_update_text=0x7f07000e; + public static final int common_open_on_phone=0x7f07000f; + public static final int common_signin_button_text=0x7f070010; + public static final int common_signin_button_text_long=0x7f070011; + public static final int status_bar_notification_info_overflow=0x7f070012; + } + public static final class style { + public static final int DarkTheme=0x7f0a000d; + public static final int TextAppearance_Compat_Notification=0x7f0a0006; + public static final int TextAppearance_Compat_Notification_Info=0x7f0a0007; + public static final int TextAppearance_Compat_Notification_Info_Media=0x7f0a0001; + public static final int TextAppearance_Compat_Notification_Line2=0x7f0a000c; + public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0a0005; + public static final int TextAppearance_Compat_Notification_Media=0x7f0a0002; + public static final int TextAppearance_Compat_Notification_Time=0x7f0a0008; + public static final int TextAppearance_Compat_Notification_Time_Media=0x7f0a0003; + public static final int TextAppearance_Compat_Notification_Title=0x7f0a0009; + public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0a0004; + public static final int Widget_Compat_NotificationActionContainer=0x7f0a000a; + public static final int Widget_Compat_NotificationActionText=0x7f0a000b; + public static final int Widget_Support_CoordinatorLayout=0x7f0a0000; + } + public static final class styleable { + /** Attributes that can be used with a ColorStateListItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ColorStateListItem_alpha b4a.rocklogster:alpha} Alpha multiplier applied to the base color.
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_android_color android:color} Base color for this state.
+ @see #ColorStateListItem_alpha + @see #ColorStateListItem_android_alpha + @see #ColorStateListItem_android_color + */ + public static final int[] ColorStateListItem = { + 0x010101a5, 0x0101031f, 0x7f010027 + }; + /** +

+ @attr description + Alpha multiplier applied to the base color. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:alpha + */ + public static final int ColorStateListItem_alpha = 2; + /** +

This symbol is the offset where the {@link android.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha = 1; + /** +

+ @attr description + Base color for this state. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#color}. + @attr name android:color + */ + public static final int ColorStateListItem_android_color = 0; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines b4a.rocklogster:keylines} A reference to an array of integers representing the + locations of horizontal keylines in dp from the starting edge.
{@link #CoordinatorLayout_statusBarBackground b4a.rocklogster:statusBarBackground} Drawable to display behind the status bar when the view is set to draw behind it.
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f01001f, 0x7f010020 + }; + /** +

+ @attr description + A reference to an array of integers representing the + locations of horizontal keylines in dp from the starting edge. + Child views can refer to these keylines for alignment using + layout_keyline="index" where index is a 0-based index into + this array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:keylines + */ + public static final int CoordinatorLayout_keylines = 0; + /** +

+ @attr description + Drawable to display behind the status bar when the view is set to draw behind it. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This is a private symbol. + @attr name b4a.rocklogster:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_Layout. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor b4a.rocklogster:layout_anchor} The id of an anchor view that this view should position relative to.
{@link #CoordinatorLayout_Layout_layout_anchorGravity b4a.rocklogster:layout_anchorGravity} Specifies how an object should position relative to an anchor, on both the X and Y axes, + within its parent's bounds.
{@link #CoordinatorLayout_Layout_layout_behavior b4a.rocklogster:layout_behavior} The class name of a Behavior class defining special runtime behavior + for this child view.
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges b4a.rocklogster:layout_dodgeInsetEdges} Specifies how this view dodges the inset edges of the CoordinatorLayout.
{@link #CoordinatorLayout_Layout_layout_insetEdge b4a.rocklogster:layout_insetEdge} Specifies how this view insets the CoordinatorLayout and make some other views + dodge it.
{@link #CoordinatorLayout_Layout_layout_keyline b4a.rocklogster:layout_keyline} The index of a keyline this view should position relative to.
+ @see #CoordinatorLayout_Layout_android_layout_gravity + @see #CoordinatorLayout_Layout_layout_anchor + @see #CoordinatorLayout_Layout_layout_anchorGravity + @see #CoordinatorLayout_Layout_layout_behavior + @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + @see #CoordinatorLayout_Layout_layout_insetEdge + @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout = { + 0x010100b3, 0x7f010021, 0x7f010022, 0x7f010023, + 0x7f010024, 0x7f010025, 0x7f010026 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + /** +

+ @attr description + The id of an anchor view that this view should position relative to. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor = 2; + /** +

+ @attr description + Specifies how an object should position relative to an anchor, on both the X and Y axes, + within its parent's bounds. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+

This is a private symbol. + @attr name b4a.rocklogster:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; + /** +

+ @attr description + The class name of a Behavior class defining special runtime behavior + for this child view. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior = 1; + /** +

+ @attr description + Specifies how this view dodges the inset edges of the CoordinatorLayout. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0 Don't dodge any edges
top0x30 Dodge the top inset edge.
bottom0x50 Dodge the bottom inset edge.
left0x03 Dodge the left inset edge.
right0x05 Dodge the right inset edge.
start0x00800003 Dodge the start inset edge.
end0x00800005 Dodge the end inset edge.
all0x77 Dodge all the inset edges.
+

This is a private symbol. + @attr name b4a.rocklogster:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; + /** +

+ @attr description + Specifies how this view insets the CoordinatorLayout and make some other views + dodge it. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0 Don't inset.
top0x30 Inset the top edge.
bottom0x50 Inset the bottom edge.
left0x03 Inset the left edge.
right0x05 Inset the right edge.
start0x00800003 Inset the start edge.
end0x00800005 Inset the end edge.
+

This is a private symbol. + @attr name b4a.rocklogster:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + /** +

+ @attr description + The index of a keyline this view should position relative to. + android:layout_gravity will affect how the view aligns to the + specified keyline. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline = 3; + /** Attributes that can be used with a FontFamily. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #FontFamily_fontProviderAuthority b4a.rocklogster:fontProviderAuthority} The authority of the Font Provider to be used for the request.
{@link #FontFamily_fontProviderCerts b4a.rocklogster:fontProviderCerts} The sets of hashes for the certificates the provider should be signed with.
{@link #FontFamily_fontProviderFetchStrategy b4a.rocklogster:fontProviderFetchStrategy} The strategy to be used when fetching font data from a font provider in XML layouts.
{@link #FontFamily_fontProviderFetchTimeout b4a.rocklogster:fontProviderFetchTimeout} The length of the timeout during fetching.
{@link #FontFamily_fontProviderPackage b4a.rocklogster:fontProviderPackage} The package for the Font Provider to be used for the request.
{@link #FontFamily_fontProviderQuery b4a.rocklogster:fontProviderQuery} The query to be sent over to the provider.
+ @see #FontFamily_fontProviderAuthority + @see #FontFamily_fontProviderCerts + @see #FontFamily_fontProviderFetchStrategy + @see #FontFamily_fontProviderFetchTimeout + @see #FontFamily_fontProviderPackage + @see #FontFamily_fontProviderQuery + */ + public static final int[] FontFamily = { + 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, + 0x7f01002c, 0x7f01002d + }; + /** +

+ @attr description + The authority of the Font Provider to be used for the request. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority = 0; + /** +

+ @attr description + The sets of hashes for the certificates the provider should be signed with. This is + used to verify the identity of the provider, and is only required if the provider is not + part of the system image. This value may point to one list or a list of lists, where each + individual list represents one collection of signature hashes. Refer to your font provider's + documentation for these values. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts = 3; + /** +

+ @attr description + The strategy to be used when fetching font data from a font provider in XML layouts. + This attribute is ignored when the resource is loaded from code, as it is equivalent to the + choice of API between {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and + {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} + (async). + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0 The blocking font fetch works as follows. + First, check the local cache, then if the requested font is not cached, request the + font from the provider and wait until it is finished. You can change the length of + the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the + default typeface will be used instead.
async1 The async font fetch works as follows. + First, check the local cache, then if the requeted font is not cached, trigger a + request the font and continue with layout inflation. Once the font fetch succeeds, the + target text view will be refreshed with the downloaded font data. The + fontProviderFetchTimeout will be ignored if async loading is specified.
+

This is a private symbol. + @attr name b4a.rocklogster:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy = 4; + /** +

+ @attr description + The length of the timeout during fetching. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1 A special value for the timeout. In this case, the blocking font fetching will not + timeout and wait until a reply is received from the font provider.
+

This is a private symbol. + @attr name b4a.rocklogster:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout = 5; + /** +

+ @attr description + The package for the Font Provider to be used for the request. This is used to verify + the identity of the provider. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage = 1; + /** +

+ @attr description + The query to be sent over to the provider. Refer to your font provider's documentation + on the format of this string. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery = 2; + /** Attributes that can be used with a FontFamilyFont. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #FontFamilyFont_android_font android:font}
{@link #FontFamilyFont_android_fontStyle android:fontStyle} References to the framework attrs
{@link #FontFamilyFont_android_fontVariationSettings android:fontVariationSettings}
{@link #FontFamilyFont_android_fontWeight android:fontWeight}
{@link #FontFamilyFont_android_ttcIndex android:ttcIndex}
{@link #FontFamilyFont_font b4a.rocklogster:font} The reference to the font file to be used.
{@link #FontFamilyFont_fontStyle b4a.rocklogster:fontStyle} The style of the given font file.
{@link #FontFamilyFont_fontVariationSettings b4a.rocklogster:fontVariationSettings} The variation settings to be applied to the font.
{@link #FontFamilyFont_fontWeight b4a.rocklogster:fontWeight} The weight of the given font file.
{@link #FontFamilyFont_ttcIndex b4a.rocklogster:ttcIndex} The index of the font in the tcc font file.
+ @see #FontFamilyFont_android_font + @see #FontFamilyFont_android_fontStyle + @see #FontFamilyFont_android_fontVariationSettings + @see #FontFamilyFont_android_fontWeight + @see #FontFamilyFont_android_ttcIndex + @see #FontFamilyFont_font + @see #FontFamilyFont_fontStyle + @see #FontFamilyFont_fontVariationSettings + @see #FontFamilyFont_fontWeight + @see #FontFamilyFont_ttcIndex + */ + public static final int[] FontFamilyFont = { + 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, + 0x01010570, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010032 + }; + /** +

This symbol is the offset where the {@link android.R.attr#font} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:font + */ + public static final int FontFamilyFont_android_font = 0; + /** +

+ @attr description + References to the framework attrs +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fontStyle}. + @attr name android:fontStyle + */ + public static final int FontFamilyFont_android_fontStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#fontVariationSettings} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:fontVariationSettings + */ + public static final int FontFamilyFont_android_fontVariationSettings = 4; + /** +

This symbol is the offset where the {@link android.R.attr#fontWeight} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:fontWeight + */ + public static final int FontFamilyFont_android_fontWeight = 1; + /** +

This symbol is the offset where the {@link android.R.attr#ttcIndex} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:ttcIndex + */ + public static final int FontFamilyFont_android_ttcIndex = 3; + /** +

+ @attr description + The reference to the font file to be used. This should be a file in the res/font folder + and should therefore have an R reference value. E.g. @font/myfont + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:font + */ + public static final int FontFamilyFont_font = 6; + /** +

+ @attr description + The style of the given font file. This will be used when the font is being loaded into + the font stack and will override any style information in the font's header tables. If + unspecified, the value in the font's header tables will be used. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+

This is a private symbol. + @attr name b4a.rocklogster:fontStyle + */ + public static final int FontFamilyFont_fontStyle = 5; + /** +

+ @attr description + The variation settings to be applied to the font. The string should be in the following + format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be + used, or the font used does not support variation settings, this attribute needs not be + specified. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontVariationSettings + */ + public static final int FontFamilyFont_fontVariationSettings = 8; + /** +

+ @attr description + The weight of the given font file. This will be used when the font is being loaded into + the font stack and will override any weight information in the font's header tables. Must + be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most + common values are 400 for regular weight and 700 for bold weight. If unspecified, the value + in the font's header tables will be used. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontWeight + */ + public static final int FontFamilyFont_fontWeight = 7; + /** +

+ @attr description + The index of the font in the tcc font file. If the font file referenced is not in the + tcc format, this attribute needs not be specified. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:ttcIndex + */ + public static final int FontFamilyFont_ttcIndex = 9; + /** Attributes that can be used with a Fragment. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #Fragment_android_id android:id}
{@link #Fragment_android_name android:name}
{@link #Fragment_android_tag android:tag}
+ @see #Fragment_android_id + @see #Fragment_android_name + @see #Fragment_android_tag + */ + public static final int[] Fragment = { + 0x01010003, 0x010100d0, 0x010100d1 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #Fragment} array. + @attr name android:id + */ + public static final int Fragment_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#name} + attribute's value can be found in the {@link #Fragment} array. + @attr name android:name + */ + public static final int Fragment_android_name = 0; + /** +

This symbol is the offset where the {@link android.R.attr#tag} + attribute's value can be found in the {@link #Fragment} array. + @attr name android:tag + */ + public static final int Fragment_android_tag = 2; + /** Attributes that can be used with a FragmentContainerView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #FragmentContainerView_android_name android:name}
{@link #FragmentContainerView_android_tag android:tag}
+ @see #FragmentContainerView_android_name + @see #FragmentContainerView_android_tag + */ + public static final int[] FragmentContainerView = { + 0x01010003, 0x010100d1 + }; + /** +

This symbol is the offset where the {@link android.R.attr#name} + attribute's value can be found in the {@link #FragmentContainerView} array. + @attr name android:name + */ + public static final int FragmentContainerView_android_name = 0; + /** +

This symbol is the offset where the {@link android.R.attr#tag} + attribute's value can be found in the {@link #FragmentContainerView} array. + @attr name android:tag + */ + public static final int FragmentContainerView_android_tag = 1; + /** Attributes that can be used with a GradientColor. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + +
AttributeDescription
{@link #GradientColor_android_centerColor android:centerColor} Optional center color.
{@link #GradientColor_android_centerX android:centerX} Only applied to SweepGradient / RadialGradient + X coordinate of the center of the gradient within the path.
{@link #GradientColor_android_centerY android:centerY} Y coordinate of the center of the gradient within the path.
{@link #GradientColor_android_endColor android:endColor} End color of the gradient.
{@link #GradientColor_android_endX android:endX} X coordinate of the end point origin of the gradient.
{@link #GradientColor_android_endY android:endY} Y coordinate of the end point of the gradient within the shape.
{@link #GradientColor_android_gradientRadius android:gradientRadius} Only applied to RadialGradient + Radius of the gradient, used only with radial gradient.
{@link #GradientColor_android_startColor android:startColor} Start color of the gradient.
{@link #GradientColor_android_startX android:startX} LinearGradient specific + X coordinate of the start point origin of the gradient.
{@link #GradientColor_android_startY android:startY} Y coordinate of the start point of the gradient within the shape.
{@link #GradientColor_android_tileMode android:tileMode} Defines the tile mode of the gradient.
{@link #GradientColor_android_type android:type} Type of gradient.
+ @see #GradientColor_android_centerColor + @see #GradientColor_android_centerX + @see #GradientColor_android_centerY + @see #GradientColor_android_endColor + @see #GradientColor_android_endX + @see #GradientColor_android_endY + @see #GradientColor_android_gradientRadius + @see #GradientColor_android_startColor + @see #GradientColor_android_startX + @see #GradientColor_android_startY + @see #GradientColor_android_tileMode + @see #GradientColor_android_type + */ + public static final int[] GradientColor = { + 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, + 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, + 0x01010510, 0x01010511, 0x01010512, 0x01010513 + }; + /** +

+ @attr description + Optional center color. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerColor}. + @attr name android:centerColor + */ + public static final int GradientColor_android_centerColor = 7; + /** +

+ @attr description + Only applied to SweepGradient / RadialGradient + X coordinate of the center of the gradient within the path. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerX}. + @attr name android:centerX + */ + public static final int GradientColor_android_centerX = 3; + /** +

+ @attr description + Y coordinate of the center of the gradient within the path. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerY}. + @attr name android:centerY + */ + public static final int GradientColor_android_centerY = 4; + /** +

+ @attr description + End color of the gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#endColor}. + @attr name android:endColor + */ + public static final int GradientColor_android_endColor = 1; + /** +

+ @attr description + X coordinate of the end point origin of the gradient. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#endX}. + @attr name android:endX + */ + public static final int GradientColor_android_endX = 10; + /** +

+ @attr description + Y coordinate of the end point of the gradient within the shape. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#endY}. + @attr name android:endY + */ + public static final int GradientColor_android_endY = 11; + /** +

+ @attr description + Only applied to RadialGradient + Radius of the gradient, used only with radial gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#gradientRadius}. + @attr name android:gradientRadius + */ + public static final int GradientColor_android_gradientRadius = 5; + /** +

+ @attr description + Start color of the gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startColor}. + @attr name android:startColor + */ + public static final int GradientColor_android_startColor = 0; + /** +

+ @attr description + LinearGradient specific + X coordinate of the start point origin of the gradient. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startX}. + @attr name android:startX + */ + public static final int GradientColor_android_startX = 8; + /** +

+ @attr description + Y coordinate of the start point of the gradient within the shape. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startY}. + @attr name android:startY + */ + public static final int GradientColor_android_startY = 9; + /** +

+ @attr description + Defines the tile mode of the gradient. SweepGradient doesn't support tiling. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#tileMode}. + @attr name android:tileMode + */ + public static final int GradientColor_android_tileMode = 6; + /** +

+ @attr description + Type of gradient. The default type is linear. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#type}. + @attr name android:type + */ + public static final int GradientColor_android_type = 2; + /** Attributes that can be used with a GradientColorItem. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #GradientColorItem_android_color android:color} The current color for the offset inside the gradient.
{@link #GradientColorItem_android_offset android:offset} The offset (or ratio) of this current color item inside the gradient.
+ @see #GradientColorItem_android_color + @see #GradientColorItem_android_offset + */ + public static final int[] GradientColorItem = { + 0x010101a5, 0x01010514 + }; + /** +

+ @attr description + The current color for the offset inside the gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#color}. + @attr name android:color + */ + public static final int GradientColorItem_android_color = 0; + /** +

+ @attr description + The offset (or ratio) of this current color item inside the gradient. + The value is only meaningful when it is between 0 and 1. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#offset}. + @attr name android:offset + */ + public static final int GradientColorItem_android_offset = 1; + /** Attributes that can be used with a LoadingImageView. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #LoadingImageView_circleCrop b4a.rocklogster:circleCrop}
{@link #LoadingImageView_imageAspectRatio b4a.rocklogster:imageAspectRatio}
{@link #LoadingImageView_imageAspectRatioAdjust b4a.rocklogster:imageAspectRatioAdjust}
+ @see #LoadingImageView_circleCrop + @see #LoadingImageView_imageAspectRatio + @see #LoadingImageView_imageAspectRatioAdjust + */ + public static final int[] LoadingImageView = { + 0x7f010000, 0x7f010001, 0x7f010002 + }; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#circleCrop} + attribute's value can be found in the {@link #LoadingImageView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:circleCrop + */ + public static final int LoadingImageView_circleCrop = 2; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#imageAspectRatio} + attribute's value can be found in the {@link #LoadingImageView} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:imageAspectRatio + */ + public static final int LoadingImageView_imageAspectRatio = 1; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#imageAspectRatioAdjust} + attribute's value can be found in the {@link #LoadingImageView} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
adjust_width1
adjust_height2
+ @attr name b4a.rocklogster:imageAspectRatioAdjust + */ + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + /** Attributes that can be used with a MapAttrs. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MapAttrs_ambientEnabled b4a.rocklogster:ambientEnabled}
{@link #MapAttrs_cameraBearing b4a.rocklogster:cameraBearing}
{@link #MapAttrs_cameraMaxZoomPreference b4a.rocklogster:cameraMaxZoomPreference}
{@link #MapAttrs_cameraMinZoomPreference b4a.rocklogster:cameraMinZoomPreference}
{@link #MapAttrs_cameraTargetLat b4a.rocklogster:cameraTargetLat}
{@link #MapAttrs_cameraTargetLng b4a.rocklogster:cameraTargetLng}
{@link #MapAttrs_cameraTilt b4a.rocklogster:cameraTilt}
{@link #MapAttrs_cameraZoom b4a.rocklogster:cameraZoom}
{@link #MapAttrs_latLngBoundsNorthEastLatitude b4a.rocklogster:latLngBoundsNorthEastLatitude}
{@link #MapAttrs_latLngBoundsNorthEastLongitude b4a.rocklogster:latLngBoundsNorthEastLongitude}
{@link #MapAttrs_latLngBoundsSouthWestLatitude b4a.rocklogster:latLngBoundsSouthWestLatitude}
{@link #MapAttrs_latLngBoundsSouthWestLongitude b4a.rocklogster:latLngBoundsSouthWestLongitude}
{@link #MapAttrs_liteMode b4a.rocklogster:liteMode}
{@link #MapAttrs_mapType b4a.rocklogster:mapType}
{@link #MapAttrs_uiCompass b4a.rocklogster:uiCompass}
{@link #MapAttrs_uiMapToolbar b4a.rocklogster:uiMapToolbar}
{@link #MapAttrs_uiRotateGestures b4a.rocklogster:uiRotateGestures}
{@link #MapAttrs_uiScrollGestures b4a.rocklogster:uiScrollGestures}
{@link #MapAttrs_uiScrollGesturesDuringRotateOrZoom b4a.rocklogster:uiScrollGesturesDuringRotateOrZoom}
{@link #MapAttrs_uiTiltGestures b4a.rocklogster:uiTiltGestures}
{@link #MapAttrs_uiZoomControls b4a.rocklogster:uiZoomControls}
{@link #MapAttrs_uiZoomGestures b4a.rocklogster:uiZoomGestures}
{@link #MapAttrs_useViewLifecycle b4a.rocklogster:useViewLifecycle}
{@link #MapAttrs_zOrderOnTop b4a.rocklogster:zOrderOnTop}
+ @see #MapAttrs_ambientEnabled + @see #MapAttrs_cameraBearing + @see #MapAttrs_cameraMaxZoomPreference + @see #MapAttrs_cameraMinZoomPreference + @see #MapAttrs_cameraTargetLat + @see #MapAttrs_cameraTargetLng + @see #MapAttrs_cameraTilt + @see #MapAttrs_cameraZoom + @see #MapAttrs_latLngBoundsNorthEastLatitude + @see #MapAttrs_latLngBoundsNorthEastLongitude + @see #MapAttrs_latLngBoundsSouthWestLatitude + @see #MapAttrs_latLngBoundsSouthWestLongitude + @see #MapAttrs_liteMode + @see #MapAttrs_mapType + @see #MapAttrs_uiCompass + @see #MapAttrs_uiMapToolbar + @see #MapAttrs_uiRotateGestures + @see #MapAttrs_uiScrollGestures + @see #MapAttrs_uiScrollGesturesDuringRotateOrZoom + @see #MapAttrs_uiTiltGestures + @see #MapAttrs_uiZoomControls + @see #MapAttrs_uiZoomGestures + @see #MapAttrs_useViewLifecycle + @see #MapAttrs_zOrderOnTop + */ + public static final int[] MapAttrs = { + 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, + 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, + 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, + 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, + 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, + 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d + }; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#ambientEnabled} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:ambientEnabled + */ + public static final int MapAttrs_ambientEnabled = 17; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraBearing} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraBearing + */ + public static final int MapAttrs_cameraBearing = 1; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraMaxZoomPreference} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraMaxZoomPreference + */ + public static final int MapAttrs_cameraMaxZoomPreference = 19; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraMinZoomPreference} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraMinZoomPreference + */ + public static final int MapAttrs_cameraMinZoomPreference = 18; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraTargetLat} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraTargetLat + */ + public static final int MapAttrs_cameraTargetLat = 2; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraTargetLng} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraTargetLng + */ + public static final int MapAttrs_cameraTargetLng = 3; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraTilt} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraTilt + */ + public static final int MapAttrs_cameraTilt = 4; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraZoom} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraZoom + */ + public static final int MapAttrs_cameraZoom = 5; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsNorthEastLatitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsNorthEastLatitude + */ + public static final int MapAttrs_latLngBoundsNorthEastLatitude = 22; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsNorthEastLongitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsNorthEastLongitude + */ + public static final int MapAttrs_latLngBoundsNorthEastLongitude = 23; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsSouthWestLatitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsSouthWestLatitude + */ + public static final int MapAttrs_latLngBoundsSouthWestLatitude = 20; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsSouthWestLongitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsSouthWestLongitude + */ + public static final int MapAttrs_latLngBoundsSouthWestLongitude = 21; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#liteMode} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:liteMode + */ + public static final int MapAttrs_liteMode = 6; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#mapType} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
none0
normal1
satellite2
terrain3
hybrid4
+ @attr name b4a.rocklogster:mapType + */ + public static final int MapAttrs_mapType = 0; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiCompass} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiCompass + */ + public static final int MapAttrs_uiCompass = 7; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiMapToolbar} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiMapToolbar + */ + public static final int MapAttrs_uiMapToolbar = 16; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiRotateGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiRotateGestures + */ + public static final int MapAttrs_uiRotateGestures = 8; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiScrollGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiScrollGestures + */ + public static final int MapAttrs_uiScrollGestures = 9; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiScrollGesturesDuringRotateOrZoom} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiScrollGesturesDuringRotateOrZoom + */ + public static final int MapAttrs_uiScrollGesturesDuringRotateOrZoom = 10; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiTiltGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiTiltGestures + */ + public static final int MapAttrs_uiTiltGestures = 11; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiZoomControls} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiZoomControls + */ + public static final int MapAttrs_uiZoomControls = 12; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiZoomGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiZoomGestures + */ + public static final int MapAttrs_uiZoomGestures = 13; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#useViewLifecycle} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:useViewLifecycle + */ + public static final int MapAttrs_useViewLifecycle = 14; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#zOrderOnTop} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:zOrderOnTop + */ + public static final int MapAttrs_zOrderOnTop = 15; + /** Attributes that can be used with a SignInButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SignInButton_buttonSize b4a.rocklogster:buttonSize}
{@link #SignInButton_colorScheme b4a.rocklogster:colorScheme}
{@link #SignInButton_scopeUris b4a.rocklogster:scopeUris}
+ @see #SignInButton_buttonSize + @see #SignInButton_colorScheme + @see #SignInButton_scopeUris + */ + public static final int[] SignInButton = { + 0x7f010003, 0x7f010004, 0x7f010005 + }; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#buttonSize} + attribute's value can be found in the {@link #SignInButton} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
standard0
wide1
icon_only2
+ @attr name b4a.rocklogster:buttonSize + */ + public static final int SignInButton_buttonSize = 0; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#colorScheme} + attribute's value can be found in the {@link #SignInButton} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
dark0
light1
auto2
+ @attr name b4a.rocklogster:colorScheme + */ + public static final int SignInButton_colorScheme = 1; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#scopeUris} + attribute's value can be found in the {@link #SignInButton} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. + @attr name b4a.rocklogster:scopeUris + */ + public static final int SignInButton_scopeUris = 2; + }; +} diff --git a/Objects/gen/com/google/android/gms/maps/R.java b/Objects/gen/com/google/android/gms/maps/R.java new file mode 100644 index 0000000..464a7e3 --- /dev/null +++ b/Objects/gen/com/google/android/gms/maps/R.java @@ -0,0 +1,2150 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package com.google.android.gms.maps; + +public final class R { + public static final class anim { + public static final int fragment_close_enter=0x7f050000; + public static final int fragment_close_exit=0x7f050001; + public static final int fragment_fade_enter=0x7f050002; + public static final int fragment_fade_exit=0x7f050003; + public static final int fragment_fast_out_extra_slow_in=0x7f050004; + public static final int fragment_open_enter=0x7f050005; + public static final int fragment_open_exit=0x7f050006; + } + public static final class attr { + /** Alpha multiplier applied to the base color. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alpha=0x7f010027; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int ambientEnabled=0x7f010017; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
standard0
wide1
icon_only2
+ */ + public static final int buttonSize=0x7f010003; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraBearing=0x7f010007; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraMaxZoomPreference=0x7f010019; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraMinZoomPreference=0x7f010018; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraTargetLat=0x7f010008; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraTargetLng=0x7f010009; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraTilt=0x7f01000a; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraZoom=0x7f01000b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int circleCrop=0x7f010002; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
dark0
light1
auto2
+ */ + public static final int colorScheme=0x7f010004; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int coordinatorLayoutStyle=0x7f01001e; + /** The reference to the font file to be used. This should be a file in the res/font folder + and should therefore have an R reference value. E.g. @font/myfont +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int font=0x7f01002f; + /** The authority of the Font Provider to be used for the request. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderAuthority=0x7f010028; + /** The sets of hashes for the certificates the provider should be signed with. This is + used to verify the identity of the provider, and is only required if the provider is not + part of the system image. This value may point to one list or a list of lists, where each + individual list represents one collection of signature hashes. Refer to your font provider's + documentation for these values. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fontProviderCerts=0x7f01002b; + /** The strategy to be used when fetching font data from a font provider in XML layouts. + This attribute is ignored when the resource is loaded from code, as it is equivalent to the + choice of API between {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and + {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} + (async). +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0 The blocking font fetch works as follows. + First, check the local cache, then if the requested font is not cached, request the + font from the provider and wait until it is finished. You can change the length of + the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the + default typeface will be used instead.
async1 The async font fetch works as follows. + First, check the local cache, then if the requeted font is not cached, trigger a + request the font and continue with layout inflation. Once the font fetch succeeds, the + target text view will be refreshed with the downloaded font data. The + fontProviderFetchTimeout will be ignored if async loading is specified.
+ */ + public static final int fontProviderFetchStrategy=0x7f01002c; + /** The length of the timeout during fetching. +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1 A special value for the timeout. In this case, the blocking font fetching will not + timeout and wait until a reply is received from the font provider.
+ */ + public static final int fontProviderFetchTimeout=0x7f01002d; + /** The package for the Font Provider to be used for the request. This is used to verify + the identity of the provider. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderPackage=0x7f010029; + /** The query to be sent over to the provider. Refer to your font provider's documentation + on the format of this string. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderQuery=0x7f01002a; + /** The style of the given font file. This will be used when the font is being loaded into + the font stack and will override any style information in the font's header tables. If + unspecified, the value in the font's header tables will be used. +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ */ + public static final int fontStyle=0x7f01002e; + /** The variation settings to be applied to the font. The string should be in the following + format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be + used, or the font used does not support variation settings, this attribute needs not be + specified. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontVariationSettings=0x7f010031; + /** The weight of the given font file. This will be used when the font is being loaded into + the font stack and will override any weight information in the font's header tables. Must + be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most + common values are 400 for regular weight and 700 for bold weight. If unspecified, the value + in the font's header tables will be used. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontWeight=0x7f010030; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int imageAspectRatio=0x7f010001; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
adjust_width1
adjust_height2
+ */ + public static final int imageAspectRatioAdjust=0x7f010000; + /** A reference to an array of integers representing the + locations of horizontal keylines in dp from the starting edge. + Child views can refer to these keylines for alignment using + layout_keyline="index" where index is a 0-based index into + this array. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keylines=0x7f01001f; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsNorthEastLatitude=0x7f01001c; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsNorthEastLongitude=0x7f01001d; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsSouthWestLatitude=0x7f01001a; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int latLngBoundsSouthWestLongitude=0x7f01001b; + /** The id of an anchor view that this view should position relative to. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_anchor=0x7f010022; + /** Specifies how an object should position relative to an anchor, on both the X and Y axes, + within its parent's bounds. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+ */ + public static final int layout_anchorGravity=0x7f010024; + /** The class name of a Behavior class defining special runtime behavior + for this child view. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_behavior=0x7f010021; + /** Specifies how this view dodges the inset edges of the CoordinatorLayout. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0 Don't dodge any edges
top0x30 Dodge the top inset edge.
bottom0x50 Dodge the bottom inset edge.
left0x03 Dodge the left inset edge.
right0x05 Dodge the right inset edge.
start0x00800003 Dodge the start inset edge.
end0x00800005 Dodge the end inset edge.
all0x77 Dodge all the inset edges.
+ */ + public static final int layout_dodgeInsetEdges=0x7f010026; + /** Specifies how this view insets the CoordinatorLayout and make some other views + dodge it. +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0 Don't inset.
top0x30 Inset the top edge.
bottom0x50 Inset the bottom edge.
left0x03 Inset the left edge.
right0x05 Inset the right edge.
start0x00800003 Inset the start edge.
end0x00800005 Inset the end edge.
+ */ + public static final int layout_insetEdge=0x7f010025; + /** The index of a keyline this view should position relative to. + android:layout_gravity will affect how the view aligns to the + specified keyline. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_keyline=0x7f010023; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int liteMode=0x7f01000c; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
none0
normal1
satellite2
terrain3
hybrid4
+ */ + public static final int mapType=0x7f010006; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. + */ + public static final int scopeUris=0x7f010005; + /** Drawable to display behind the status bar when the view is set to draw behind it. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int statusBarBackground=0x7f010020; + /** The index of the font in the tcc font file. If the font file referenced is not in the + tcc format, this attribute needs not be specified. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int ttcIndex=0x7f010032; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiCompass=0x7f01000d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiMapToolbar=0x7f010016; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiRotateGestures=0x7f01000e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiScrollGestures=0x7f01000f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiScrollGesturesDuringRotateOrZoom=0x7f010010; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiTiltGestures=0x7f010011; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiZoomControls=0x7f010012; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uiZoomGestures=0x7f010013; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useViewLifecycle=0x7f010014; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int zOrderOnTop=0x7f010015; + } + public static final class color { + public static final int common_google_signin_btn_text_dark=0x7f08000f; + public static final int common_google_signin_btn_text_dark_default=0x7f080000; + public static final int common_google_signin_btn_text_dark_disabled=0x7f080001; + public static final int common_google_signin_btn_text_dark_focused=0x7f080002; + public static final int common_google_signin_btn_text_dark_pressed=0x7f080003; + public static final int common_google_signin_btn_text_light=0x7f080010; + public static final int common_google_signin_btn_text_light_default=0x7f080004; + public static final int common_google_signin_btn_text_light_disabled=0x7f080005; + public static final int common_google_signin_btn_text_light_focused=0x7f080006; + public static final int common_google_signin_btn_text_light_pressed=0x7f080007; + public static final int common_google_signin_btn_tint=0x7f080011; + public static final int notification_action_color_filter=0x7f08000b; + public static final int notification_icon_bg_color=0x7f08000c; + public static final int notification_material_background_media_default_color=0x7f080008; + public static final int primary_text_default_material_dark=0x7f080009; + public static final int ripple_material_light=0x7f08000d; + public static final int secondary_text_default_material_dark=0x7f08000a; + public static final int secondary_text_default_material_light=0x7f08000e; + } + public static final class dimen { + public static final int compat_button_inset_horizontal_material=0x7f0b0008; + public static final int compat_button_inset_vertical_material=0x7f0b0009; + public static final int compat_button_padding_horizontal_material=0x7f0b000a; + public static final int compat_button_padding_vertical_material=0x7f0b000b; + public static final int compat_control_corner_material=0x7f0b000c; + public static final int compat_notification_large_icon_max_height=0x7f0b000d; + public static final int compat_notification_large_icon_max_width=0x7f0b000e; + public static final int notification_action_icon_size=0x7f0b000f; + public static final int notification_action_text_size=0x7f0b0010; + public static final int notification_big_circle_margin=0x7f0b0011; + public static final int notification_content_margin_start=0x7f0b0005; + public static final int notification_large_icon_height=0x7f0b0012; + public static final int notification_large_icon_width=0x7f0b0013; + public static final int notification_main_column_padding_top=0x7f0b0006; + public static final int notification_media_narrow_margin=0x7f0b0007; + public static final int notification_right_icon_size=0x7f0b0014; + public static final int notification_right_side_padding_top=0x7f0b0004; + public static final int notification_small_icon_background_padding=0x7f0b0015; + public static final int notification_small_icon_size_as_large=0x7f0b0016; + public static final int notification_subtext_size=0x7f0b0017; + public static final int notification_top_pad=0x7f0b0018; + public static final int notification_top_pad_large_text=0x7f0b0019; + public static final int subtitle_corner_radius=0x7f0b0000; + public static final int subtitle_outline_width=0x7f0b0001; + public static final int subtitle_shadow_offset=0x7f0b0002; + public static final int subtitle_shadow_radius=0x7f0b0003; + } + public static final class drawable { + public static final int common_full_open_on_phone=0x7f020000; + public static final int common_google_signin_btn_icon_dark=0x7f020001; + public static final int common_google_signin_btn_icon_dark_focused=0x7f020002; + public static final int common_google_signin_btn_icon_dark_normal=0x7f020003; + public static final int common_google_signin_btn_icon_dark_normal_background=0x7f020004; + public static final int common_google_signin_btn_icon_disabled=0x7f020005; + public static final int common_google_signin_btn_icon_light=0x7f020006; + public static final int common_google_signin_btn_icon_light_focused=0x7f020007; + public static final int common_google_signin_btn_icon_light_normal=0x7f020008; + public static final int common_google_signin_btn_icon_light_normal_background=0x7f020009; + public static final int common_google_signin_btn_text_dark=0x7f02000a; + public static final int common_google_signin_btn_text_dark_focused=0x7f02000b; + public static final int common_google_signin_btn_text_dark_normal=0x7f02000c; + public static final int common_google_signin_btn_text_dark_normal_background=0x7f02000d; + public static final int common_google_signin_btn_text_disabled=0x7f02000e; + public static final int common_google_signin_btn_text_light=0x7f02000f; + public static final int common_google_signin_btn_text_light_focused=0x7f020010; + public static final int common_google_signin_btn_text_light_normal=0x7f020011; + public static final int common_google_signin_btn_text_light_normal_background=0x7f020012; + public static final int googleg_disabled_color_18=0x7f020013; + public static final int googleg_standard_color_18=0x7f020014; + public static final int icon=0x7f020015; + public static final int notification_action_background=0x7f020016; + public static final int notification_bg=0x7f020017; + public static final int notification_bg_low=0x7f020018; + public static final int notification_bg_low_normal=0x7f020019; + public static final int notification_bg_low_pressed=0x7f02001a; + public static final int notification_bg_normal=0x7f02001b; + public static final int notification_bg_normal_pressed=0x7f02001c; + public static final int notification_icon_background=0x7f02001d; + public static final int notification_template_icon_bg=0x7f020020; + public static final int notification_template_icon_low_bg=0x7f020021; + public static final int notification_tile_bg=0x7f02001e; + public static final int notify_panel_notification_icon_bg=0x7f02001f; + } + public static final class id { + public static final int accessibility_action_clickable_span=0x7f090002; + public static final int accessibility_custom_action_0=0x7f090003; + public static final int accessibility_custom_action_1=0x7f090004; + public static final int accessibility_custom_action_10=0x7f090005; + public static final int accessibility_custom_action_11=0x7f090006; + public static final int accessibility_custom_action_12=0x7f090007; + public static final int accessibility_custom_action_13=0x7f090008; + public static final int accessibility_custom_action_14=0x7f090009; + public static final int accessibility_custom_action_15=0x7f09000a; + public static final int accessibility_custom_action_16=0x7f09000b; + public static final int accessibility_custom_action_17=0x7f09000c; + public static final int accessibility_custom_action_18=0x7f09000d; + public static final int accessibility_custom_action_19=0x7f09000e; + public static final int accessibility_custom_action_2=0x7f09000f; + public static final int accessibility_custom_action_20=0x7f090010; + public static final int accessibility_custom_action_21=0x7f090011; + public static final int accessibility_custom_action_22=0x7f090012; + public static final int accessibility_custom_action_23=0x7f090013; + public static final int accessibility_custom_action_24=0x7f090014; + public static final int accessibility_custom_action_25=0x7f090015; + public static final int accessibility_custom_action_26=0x7f090016; + public static final int accessibility_custom_action_27=0x7f090017; + public static final int accessibility_custom_action_28=0x7f090018; + public static final int accessibility_custom_action_29=0x7f090019; + public static final int accessibility_custom_action_3=0x7f09001a; + public static final int accessibility_custom_action_30=0x7f09001b; + public static final int accessibility_custom_action_31=0x7f09001c; + public static final int accessibility_custom_action_4=0x7f09001d; + public static final int accessibility_custom_action_5=0x7f09001e; + public static final int accessibility_custom_action_6=0x7f09001f; + public static final int accessibility_custom_action_7=0x7f090020; + public static final int accessibility_custom_action_8=0x7f090021; + public static final int accessibility_custom_action_9=0x7f090022; + public static final int action0=0x7f090054; + public static final int action_container=0x7f090051; + public static final int action_divider=0x7f090058; + public static final int action_image=0x7f090052; + public static final int action_text=0x7f090053; + public static final int actions=0x7f090062; + public static final int adjust_height=0x7f090030; + public static final int adjust_width=0x7f090031; + public static final int all=0x7f09004b; + public static final int async=0x7f09004c; + public static final int auto=0x7f090036; + public static final int blocking=0x7f09004d; + public static final int bottom=0x7f09003d; + public static final int cancel_action=0x7f090055; + public static final int center=0x7f09003e; + public static final int center_horizontal=0x7f09003f; + public static final int center_vertical=0x7f090040; + public static final int chronometer=0x7f09005d; + public static final int clip_horizontal=0x7f090041; + public static final int clip_vertical=0x7f090042; + public static final int dark=0x7f090037; + public static final int dialog_button=0x7f090050; + public static final int end=0x7f090043; + public static final int end_padder=0x7f090064; + public static final int fill=0x7f090044; + public static final int fill_horizontal=0x7f090045; + public static final int fill_vertical=0x7f090046; + public static final int forever=0x7f09004e; + public static final int fragment_container_view_tag=0x7f090000; + public static final int hybrid=0x7f090039; + public static final int icon=0x7f09005f; + public static final int icon_group=0x7f090063; + public static final int icon_only=0x7f090033; + public static final int info=0x7f09005e; + public static final int italic=0x7f09004f; + public static final int left=0x7f090047; + public static final int light=0x7f090038; + public static final int line1=0x7f090023; + public static final int line3=0x7f090024; + public static final int media_actions=0x7f090057; + public static final int none=0x7f090032; + public static final int normal=0x7f09003a; + public static final int notification_background=0x7f090061; + public static final int notification_main_column=0x7f09005a; + public static final int notification_main_column_container=0x7f090059; + public static final int right=0x7f090048; + public static final int right_icon=0x7f090060; + public static final int right_side=0x7f09005b; + public static final int satellite=0x7f09003b; + public static final int standard=0x7f090034; + public static final int start=0x7f090049; + public static final int status_bar_latest_event_content=0x7f090056; + public static final int tag_accessibility_actions=0x7f090025; + public static final int tag_accessibility_clickable_spans=0x7f090026; + public static final int tag_accessibility_heading=0x7f090027; + public static final int tag_accessibility_pane_title=0x7f090028; + public static final int tag_screen_reader_focusable=0x7f090029; + public static final int tag_transition_group=0x7f09002a; + public static final int tag_unhandled_key_event_manager=0x7f09002b; + public static final int tag_unhandled_key_listeners=0x7f09002c; + public static final int terrain=0x7f09003c; + public static final int text=0x7f09002d; + public static final int text2=0x7f09002e; + public static final int time=0x7f09005c; + public static final int title=0x7f09002f; + public static final int top=0x7f09004a; + public static final int visible_removing_fragment_view_tag=0x7f090001; + public static final int wide=0x7f090035; + } + public static final class integer { + public static final int cancel_button_image_alpha=0x7f060001; + public static final int google_play_services_version=0x7f060000; + public static final int status_bar_notification_info_maxnum=0x7f060002; + } + public static final class layout { + public static final int custom_dialog=0x7f040000; + public static final int notification_action=0x7f040001; + public static final int notification_action_tombstone=0x7f040002; + public static final int notification_media_action=0x7f040003; + public static final int notification_media_cancel_action=0x7f040004; + public static final int notification_template_big_media=0x7f040005; + public static final int notification_template_big_media_custom=0x7f040006; + public static final int notification_template_big_media_narrow=0x7f040007; + public static final int notification_template_big_media_narrow_custom=0x7f040008; + public static final int notification_template_custom_big=0x7f040009; + public static final int notification_template_icon_group=0x7f04000a; + public static final int notification_template_lines_media=0x7f04000b; + public static final int notification_template_media=0x7f04000c; + public static final int notification_template_media_custom=0x7f04000d; + public static final int notification_template_part_chronometer=0x7f04000e; + public static final int notification_template_part_time=0x7f04000f; + } + public static final class mipmap { + public static final int background=0x7f030000; + public static final int foreground=0x7f030001; + public static final int ic_launcher=0x7f030002; + } + public static final class string { + public static final int common_google_play_services_enable_button=0x7f070001; + public static final int common_google_play_services_enable_text=0x7f070002; + public static final int common_google_play_services_enable_title=0x7f070003; + public static final int common_google_play_services_install_button=0x7f070004; + public static final int common_google_play_services_install_text=0x7f070005; + public static final int common_google_play_services_install_title=0x7f070006; + public static final int common_google_play_services_notification_channel_name=0x7f070007; + public static final int common_google_play_services_notification_ticker=0x7f070008; + public static final int common_google_play_services_unknown_issue=0x7f070000; + public static final int common_google_play_services_unsupported_text=0x7f070009; + public static final int common_google_play_services_update_button=0x7f07000a; + public static final int common_google_play_services_update_text=0x7f07000b; + public static final int common_google_play_services_update_title=0x7f07000c; + public static final int common_google_play_services_updating_text=0x7f07000d; + public static final int common_google_play_services_wear_update_text=0x7f07000e; + public static final int common_open_on_phone=0x7f07000f; + public static final int common_signin_button_text=0x7f070010; + public static final int common_signin_button_text_long=0x7f070011; + public static final int status_bar_notification_info_overflow=0x7f070012; + } + public static final class style { + public static final int DarkTheme=0x7f0a000d; + public static final int TextAppearance_Compat_Notification=0x7f0a0006; + public static final int TextAppearance_Compat_Notification_Info=0x7f0a0007; + public static final int TextAppearance_Compat_Notification_Info_Media=0x7f0a0001; + public static final int TextAppearance_Compat_Notification_Line2=0x7f0a000c; + public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0a0005; + public static final int TextAppearance_Compat_Notification_Media=0x7f0a0002; + public static final int TextAppearance_Compat_Notification_Time=0x7f0a0008; + public static final int TextAppearance_Compat_Notification_Time_Media=0x7f0a0003; + public static final int TextAppearance_Compat_Notification_Title=0x7f0a0009; + public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0a0004; + public static final int Widget_Compat_NotificationActionContainer=0x7f0a000a; + public static final int Widget_Compat_NotificationActionText=0x7f0a000b; + public static final int Widget_Support_CoordinatorLayout=0x7f0a0000; + } + public static final class styleable { + /** Attributes that can be used with a ColorStateListItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ColorStateListItem_alpha b4a.rocklogster:alpha} Alpha multiplier applied to the base color.
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_android_color android:color} Base color for this state.
+ @see #ColorStateListItem_alpha + @see #ColorStateListItem_android_alpha + @see #ColorStateListItem_android_color + */ + public static final int[] ColorStateListItem = { + 0x010101a5, 0x0101031f, 0x7f010027 + }; + /** +

+ @attr description + Alpha multiplier applied to the base color. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:alpha + */ + public static final int ColorStateListItem_alpha = 2; + /** +

This symbol is the offset where the {@link android.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha = 1; + /** +

+ @attr description + Base color for this state. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#color}. + @attr name android:color + */ + public static final int ColorStateListItem_android_color = 0; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines b4a.rocklogster:keylines} A reference to an array of integers representing the + locations of horizontal keylines in dp from the starting edge.
{@link #CoordinatorLayout_statusBarBackground b4a.rocklogster:statusBarBackground} Drawable to display behind the status bar when the view is set to draw behind it.
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f01001f, 0x7f010020 + }; + /** +

+ @attr description + A reference to an array of integers representing the + locations of horizontal keylines in dp from the starting edge. + Child views can refer to these keylines for alignment using + layout_keyline="index" where index is a 0-based index into + this array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:keylines + */ + public static final int CoordinatorLayout_keylines = 0; + /** +

+ @attr description + Drawable to display behind the status bar when the view is set to draw behind it. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This is a private symbol. + @attr name b4a.rocklogster:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_Layout. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor b4a.rocklogster:layout_anchor} The id of an anchor view that this view should position relative to.
{@link #CoordinatorLayout_Layout_layout_anchorGravity b4a.rocklogster:layout_anchorGravity} Specifies how an object should position relative to an anchor, on both the X and Y axes, + within its parent's bounds.
{@link #CoordinatorLayout_Layout_layout_behavior b4a.rocklogster:layout_behavior} The class name of a Behavior class defining special runtime behavior + for this child view.
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges b4a.rocklogster:layout_dodgeInsetEdges} Specifies how this view dodges the inset edges of the CoordinatorLayout.
{@link #CoordinatorLayout_Layout_layout_insetEdge b4a.rocklogster:layout_insetEdge} Specifies how this view insets the CoordinatorLayout and make some other views + dodge it.
{@link #CoordinatorLayout_Layout_layout_keyline b4a.rocklogster:layout_keyline} The index of a keyline this view should position relative to.
+ @see #CoordinatorLayout_Layout_android_layout_gravity + @see #CoordinatorLayout_Layout_layout_anchor + @see #CoordinatorLayout_Layout_layout_anchorGravity + @see #CoordinatorLayout_Layout_layout_behavior + @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + @see #CoordinatorLayout_Layout_layout_insetEdge + @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout = { + 0x010100b3, 0x7f010021, 0x7f010022, 0x7f010023, + 0x7f010024, 0x7f010025, 0x7f010026 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + /** +

+ @attr description + The id of an anchor view that this view should position relative to. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor = 2; + /** +

+ @attr description + Specifies how an object should position relative to an anchor, on both the X and Y axes, + within its parent's bounds. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+

This is a private symbol. + @attr name b4a.rocklogster:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; + /** +

+ @attr description + The class name of a Behavior class defining special runtime behavior + for this child view. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior = 1; + /** +

+ @attr description + Specifies how this view dodges the inset edges of the CoordinatorLayout. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0 Don't dodge any edges
top0x30 Dodge the top inset edge.
bottom0x50 Dodge the bottom inset edge.
left0x03 Dodge the left inset edge.
right0x05 Dodge the right inset edge.
start0x00800003 Dodge the start inset edge.
end0x00800005 Dodge the end inset edge.
all0x77 Dodge all the inset edges.
+

This is a private symbol. + @attr name b4a.rocklogster:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; + /** +

+ @attr description + Specifies how this view insets the CoordinatorLayout and make some other views + dodge it. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0 Don't inset.
top0x30 Inset the top edge.
bottom0x50 Inset the bottom edge.
left0x03 Inset the left edge.
right0x05 Inset the right edge.
start0x00800003 Inset the start edge.
end0x00800005 Inset the end edge.
+

This is a private symbol. + @attr name b4a.rocklogster:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + /** +

+ @attr description + The index of a keyline this view should position relative to. + android:layout_gravity will affect how the view aligns to the + specified keyline. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline = 3; + /** Attributes that can be used with a FontFamily. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #FontFamily_fontProviderAuthority b4a.rocklogster:fontProviderAuthority} The authority of the Font Provider to be used for the request.
{@link #FontFamily_fontProviderCerts b4a.rocklogster:fontProviderCerts} The sets of hashes for the certificates the provider should be signed with.
{@link #FontFamily_fontProviderFetchStrategy b4a.rocklogster:fontProviderFetchStrategy} The strategy to be used when fetching font data from a font provider in XML layouts.
{@link #FontFamily_fontProviderFetchTimeout b4a.rocklogster:fontProviderFetchTimeout} The length of the timeout during fetching.
{@link #FontFamily_fontProviderPackage b4a.rocklogster:fontProviderPackage} The package for the Font Provider to be used for the request.
{@link #FontFamily_fontProviderQuery b4a.rocklogster:fontProviderQuery} The query to be sent over to the provider.
+ @see #FontFamily_fontProviderAuthority + @see #FontFamily_fontProviderCerts + @see #FontFamily_fontProviderFetchStrategy + @see #FontFamily_fontProviderFetchTimeout + @see #FontFamily_fontProviderPackage + @see #FontFamily_fontProviderQuery + */ + public static final int[] FontFamily = { + 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, + 0x7f01002c, 0x7f01002d + }; + /** +

+ @attr description + The authority of the Font Provider to be used for the request. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority = 0; + /** +

+ @attr description + The sets of hashes for the certificates the provider should be signed with. This is + used to verify the identity of the provider, and is only required if the provider is not + part of the system image. This value may point to one list or a list of lists, where each + individual list represents one collection of signature hashes. Refer to your font provider's + documentation for these values. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts = 3; + /** +

+ @attr description + The strategy to be used when fetching font data from a font provider in XML layouts. + This attribute is ignored when the resource is loaded from code, as it is equivalent to the + choice of API between {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and + {@link + androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} + (async). + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0 The blocking font fetch works as follows. + First, check the local cache, then if the requested font is not cached, request the + font from the provider and wait until it is finished. You can change the length of + the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the + default typeface will be used instead.
async1 The async font fetch works as follows. + First, check the local cache, then if the requeted font is not cached, trigger a + request the font and continue with layout inflation. Once the font fetch succeeds, the + target text view will be refreshed with the downloaded font data. The + fontProviderFetchTimeout will be ignored if async loading is specified.
+

This is a private symbol. + @attr name b4a.rocklogster:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy = 4; + /** +

+ @attr description + The length of the timeout during fetching. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1 A special value for the timeout. In this case, the blocking font fetching will not + timeout and wait until a reply is received from the font provider.
+

This is a private symbol. + @attr name b4a.rocklogster:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout = 5; + /** +

+ @attr description + The package for the Font Provider to be used for the request. This is used to verify + the identity of the provider. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage = 1; + /** +

+ @attr description + The query to be sent over to the provider. Refer to your font provider's documentation + on the format of this string. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery = 2; + /** Attributes that can be used with a FontFamilyFont. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #FontFamilyFont_android_font android:font}
{@link #FontFamilyFont_android_fontStyle android:fontStyle} References to the framework attrs
{@link #FontFamilyFont_android_fontVariationSettings android:fontVariationSettings}
{@link #FontFamilyFont_android_fontWeight android:fontWeight}
{@link #FontFamilyFont_android_ttcIndex android:ttcIndex}
{@link #FontFamilyFont_font b4a.rocklogster:font} The reference to the font file to be used.
{@link #FontFamilyFont_fontStyle b4a.rocklogster:fontStyle} The style of the given font file.
{@link #FontFamilyFont_fontVariationSettings b4a.rocklogster:fontVariationSettings} The variation settings to be applied to the font.
{@link #FontFamilyFont_fontWeight b4a.rocklogster:fontWeight} The weight of the given font file.
{@link #FontFamilyFont_ttcIndex b4a.rocklogster:ttcIndex} The index of the font in the tcc font file.
+ @see #FontFamilyFont_android_font + @see #FontFamilyFont_android_fontStyle + @see #FontFamilyFont_android_fontVariationSettings + @see #FontFamilyFont_android_fontWeight + @see #FontFamilyFont_android_ttcIndex + @see #FontFamilyFont_font + @see #FontFamilyFont_fontStyle + @see #FontFamilyFont_fontVariationSettings + @see #FontFamilyFont_fontWeight + @see #FontFamilyFont_ttcIndex + */ + public static final int[] FontFamilyFont = { + 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, + 0x01010570, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010032 + }; + /** +

This symbol is the offset where the {@link android.R.attr#font} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:font + */ + public static final int FontFamilyFont_android_font = 0; + /** +

+ @attr description + References to the framework attrs +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fontStyle}. + @attr name android:fontStyle + */ + public static final int FontFamilyFont_android_fontStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#fontVariationSettings} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:fontVariationSettings + */ + public static final int FontFamilyFont_android_fontVariationSettings = 4; + /** +

This symbol is the offset where the {@link android.R.attr#fontWeight} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:fontWeight + */ + public static final int FontFamilyFont_android_fontWeight = 1; + /** +

This symbol is the offset where the {@link android.R.attr#ttcIndex} + attribute's value can be found in the {@link #FontFamilyFont} array. + @attr name android:ttcIndex + */ + public static final int FontFamilyFont_android_ttcIndex = 3; + /** +

+ @attr description + The reference to the font file to be used. This should be a file in the res/font folder + and should therefore have an R reference value. E.g. @font/myfont + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This is a private symbol. + @attr name b4a.rocklogster:font + */ + public static final int FontFamilyFont_font = 6; + /** +

+ @attr description + The style of the given font file. This will be used when the font is being loaded into + the font stack and will override any style information in the font's header tables. If + unspecified, the value in the font's header tables will be used. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+

This is a private symbol. + @attr name b4a.rocklogster:fontStyle + */ + public static final int FontFamilyFont_fontStyle = 5; + /** +

+ @attr description + The variation settings to be applied to the font. The string should be in the following + format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be + used, or the font used does not support variation settings, this attribute needs not be + specified. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontVariationSettings + */ + public static final int FontFamilyFont_fontVariationSettings = 8; + /** +

+ @attr description + The weight of the given font file. This will be used when the font is being loaded into + the font stack and will override any weight information in the font's header tables. Must + be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most + common values are 400 for regular weight and 700 for bold weight. If unspecified, the value + in the font's header tables will be used. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:fontWeight + */ + public static final int FontFamilyFont_fontWeight = 7; + /** +

+ @attr description + The index of the font in the tcc font file. If the font file referenced is not in the + tcc format, this attribute needs not be specified. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This is a private symbol. + @attr name b4a.rocklogster:ttcIndex + */ + public static final int FontFamilyFont_ttcIndex = 9; + /** Attributes that can be used with a Fragment. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #Fragment_android_id android:id}
{@link #Fragment_android_name android:name}
{@link #Fragment_android_tag android:tag}
+ @see #Fragment_android_id + @see #Fragment_android_name + @see #Fragment_android_tag + */ + public static final int[] Fragment = { + 0x01010003, 0x010100d0, 0x010100d1 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #Fragment} array. + @attr name android:id + */ + public static final int Fragment_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#name} + attribute's value can be found in the {@link #Fragment} array. + @attr name android:name + */ + public static final int Fragment_android_name = 0; + /** +

This symbol is the offset where the {@link android.R.attr#tag} + attribute's value can be found in the {@link #Fragment} array. + @attr name android:tag + */ + public static final int Fragment_android_tag = 2; + /** Attributes that can be used with a FragmentContainerView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #FragmentContainerView_android_name android:name}
{@link #FragmentContainerView_android_tag android:tag}
+ @see #FragmentContainerView_android_name + @see #FragmentContainerView_android_tag + */ + public static final int[] FragmentContainerView = { + 0x01010003, 0x010100d1 + }; + /** +

This symbol is the offset where the {@link android.R.attr#name} + attribute's value can be found in the {@link #FragmentContainerView} array. + @attr name android:name + */ + public static final int FragmentContainerView_android_name = 0; + /** +

This symbol is the offset where the {@link android.R.attr#tag} + attribute's value can be found in the {@link #FragmentContainerView} array. + @attr name android:tag + */ + public static final int FragmentContainerView_android_tag = 1; + /** Attributes that can be used with a GradientColor. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + +
AttributeDescription
{@link #GradientColor_android_centerColor android:centerColor} Optional center color.
{@link #GradientColor_android_centerX android:centerX} Only applied to SweepGradient / RadialGradient + X coordinate of the center of the gradient within the path.
{@link #GradientColor_android_centerY android:centerY} Y coordinate of the center of the gradient within the path.
{@link #GradientColor_android_endColor android:endColor} End color of the gradient.
{@link #GradientColor_android_endX android:endX} X coordinate of the end point origin of the gradient.
{@link #GradientColor_android_endY android:endY} Y coordinate of the end point of the gradient within the shape.
{@link #GradientColor_android_gradientRadius android:gradientRadius} Only applied to RadialGradient + Radius of the gradient, used only with radial gradient.
{@link #GradientColor_android_startColor android:startColor} Start color of the gradient.
{@link #GradientColor_android_startX android:startX} LinearGradient specific + X coordinate of the start point origin of the gradient.
{@link #GradientColor_android_startY android:startY} Y coordinate of the start point of the gradient within the shape.
{@link #GradientColor_android_tileMode android:tileMode} Defines the tile mode of the gradient.
{@link #GradientColor_android_type android:type} Type of gradient.
+ @see #GradientColor_android_centerColor + @see #GradientColor_android_centerX + @see #GradientColor_android_centerY + @see #GradientColor_android_endColor + @see #GradientColor_android_endX + @see #GradientColor_android_endY + @see #GradientColor_android_gradientRadius + @see #GradientColor_android_startColor + @see #GradientColor_android_startX + @see #GradientColor_android_startY + @see #GradientColor_android_tileMode + @see #GradientColor_android_type + */ + public static final int[] GradientColor = { + 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, + 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, + 0x01010510, 0x01010511, 0x01010512, 0x01010513 + }; + /** +

+ @attr description + Optional center color. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerColor}. + @attr name android:centerColor + */ + public static final int GradientColor_android_centerColor = 7; + /** +

+ @attr description + Only applied to SweepGradient / RadialGradient + X coordinate of the center of the gradient within the path. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerX}. + @attr name android:centerX + */ + public static final int GradientColor_android_centerX = 3; + /** +

+ @attr description + Y coordinate of the center of the gradient within the path. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerY}. + @attr name android:centerY + */ + public static final int GradientColor_android_centerY = 4; + /** +

+ @attr description + End color of the gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#endColor}. + @attr name android:endColor + */ + public static final int GradientColor_android_endColor = 1; + /** +

+ @attr description + X coordinate of the end point origin of the gradient. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#endX}. + @attr name android:endX + */ + public static final int GradientColor_android_endX = 10; + /** +

+ @attr description + Y coordinate of the end point of the gradient within the shape. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#endY}. + @attr name android:endY + */ + public static final int GradientColor_android_endY = 11; + /** +

+ @attr description + Only applied to RadialGradient + Radius of the gradient, used only with radial gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#gradientRadius}. + @attr name android:gradientRadius + */ + public static final int GradientColor_android_gradientRadius = 5; + /** +

+ @attr description + Start color of the gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startColor}. + @attr name android:startColor + */ + public static final int GradientColor_android_startColor = 0; + /** +

+ @attr description + LinearGradient specific + X coordinate of the start point origin of the gradient. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startX}. + @attr name android:startX + */ + public static final int GradientColor_android_startX = 8; + /** +

+ @attr description + Y coordinate of the start point of the gradient within the shape. + Defined in same coordinates as the path itself +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startY}. + @attr name android:startY + */ + public static final int GradientColor_android_startY = 9; + /** +

+ @attr description + Defines the tile mode of the gradient. SweepGradient doesn't support tiling. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#tileMode}. + @attr name android:tileMode + */ + public static final int GradientColor_android_tileMode = 6; + /** +

+ @attr description + Type of gradient. The default type is linear. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#type}. + @attr name android:type + */ + public static final int GradientColor_android_type = 2; + /** Attributes that can be used with a GradientColorItem. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #GradientColorItem_android_color android:color} The current color for the offset inside the gradient.
{@link #GradientColorItem_android_offset android:offset} The offset (or ratio) of this current color item inside the gradient.
+ @see #GradientColorItem_android_color + @see #GradientColorItem_android_offset + */ + public static final int[] GradientColorItem = { + 0x010101a5, 0x01010514 + }; + /** +

+ @attr description + The current color for the offset inside the gradient. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#color}. + @attr name android:color + */ + public static final int GradientColorItem_android_color = 0; + /** +

+ @attr description + The offset (or ratio) of this current color item inside the gradient. + The value is only meaningful when it is between 0 and 1. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#offset}. + @attr name android:offset + */ + public static final int GradientColorItem_android_offset = 1; + /** Attributes that can be used with a LoadingImageView. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #LoadingImageView_circleCrop b4a.rocklogster:circleCrop}
{@link #LoadingImageView_imageAspectRatio b4a.rocklogster:imageAspectRatio}
{@link #LoadingImageView_imageAspectRatioAdjust b4a.rocklogster:imageAspectRatioAdjust}
+ @see #LoadingImageView_circleCrop + @see #LoadingImageView_imageAspectRatio + @see #LoadingImageView_imageAspectRatioAdjust + */ + public static final int[] LoadingImageView = { + 0x7f010000, 0x7f010001, 0x7f010002 + }; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#circleCrop} + attribute's value can be found in the {@link #LoadingImageView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:circleCrop + */ + public static final int LoadingImageView_circleCrop = 2; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#imageAspectRatio} + attribute's value can be found in the {@link #LoadingImageView} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:imageAspectRatio + */ + public static final int LoadingImageView_imageAspectRatio = 1; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#imageAspectRatioAdjust} + attribute's value can be found in the {@link #LoadingImageView} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
adjust_width1
adjust_height2
+ @attr name b4a.rocklogster:imageAspectRatioAdjust + */ + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + /** Attributes that can be used with a MapAttrs. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MapAttrs_ambientEnabled b4a.rocklogster:ambientEnabled}
{@link #MapAttrs_cameraBearing b4a.rocklogster:cameraBearing}
{@link #MapAttrs_cameraMaxZoomPreference b4a.rocklogster:cameraMaxZoomPreference}
{@link #MapAttrs_cameraMinZoomPreference b4a.rocklogster:cameraMinZoomPreference}
{@link #MapAttrs_cameraTargetLat b4a.rocklogster:cameraTargetLat}
{@link #MapAttrs_cameraTargetLng b4a.rocklogster:cameraTargetLng}
{@link #MapAttrs_cameraTilt b4a.rocklogster:cameraTilt}
{@link #MapAttrs_cameraZoom b4a.rocklogster:cameraZoom}
{@link #MapAttrs_latLngBoundsNorthEastLatitude b4a.rocklogster:latLngBoundsNorthEastLatitude}
{@link #MapAttrs_latLngBoundsNorthEastLongitude b4a.rocklogster:latLngBoundsNorthEastLongitude}
{@link #MapAttrs_latLngBoundsSouthWestLatitude b4a.rocklogster:latLngBoundsSouthWestLatitude}
{@link #MapAttrs_latLngBoundsSouthWestLongitude b4a.rocklogster:latLngBoundsSouthWestLongitude}
{@link #MapAttrs_liteMode b4a.rocklogster:liteMode}
{@link #MapAttrs_mapType b4a.rocklogster:mapType}
{@link #MapAttrs_uiCompass b4a.rocklogster:uiCompass}
{@link #MapAttrs_uiMapToolbar b4a.rocklogster:uiMapToolbar}
{@link #MapAttrs_uiRotateGestures b4a.rocklogster:uiRotateGestures}
{@link #MapAttrs_uiScrollGestures b4a.rocklogster:uiScrollGestures}
{@link #MapAttrs_uiScrollGesturesDuringRotateOrZoom b4a.rocklogster:uiScrollGesturesDuringRotateOrZoom}
{@link #MapAttrs_uiTiltGestures b4a.rocklogster:uiTiltGestures}
{@link #MapAttrs_uiZoomControls b4a.rocklogster:uiZoomControls}
{@link #MapAttrs_uiZoomGestures b4a.rocklogster:uiZoomGestures}
{@link #MapAttrs_useViewLifecycle b4a.rocklogster:useViewLifecycle}
{@link #MapAttrs_zOrderOnTop b4a.rocklogster:zOrderOnTop}
+ @see #MapAttrs_ambientEnabled + @see #MapAttrs_cameraBearing + @see #MapAttrs_cameraMaxZoomPreference + @see #MapAttrs_cameraMinZoomPreference + @see #MapAttrs_cameraTargetLat + @see #MapAttrs_cameraTargetLng + @see #MapAttrs_cameraTilt + @see #MapAttrs_cameraZoom + @see #MapAttrs_latLngBoundsNorthEastLatitude + @see #MapAttrs_latLngBoundsNorthEastLongitude + @see #MapAttrs_latLngBoundsSouthWestLatitude + @see #MapAttrs_latLngBoundsSouthWestLongitude + @see #MapAttrs_liteMode + @see #MapAttrs_mapType + @see #MapAttrs_uiCompass + @see #MapAttrs_uiMapToolbar + @see #MapAttrs_uiRotateGestures + @see #MapAttrs_uiScrollGestures + @see #MapAttrs_uiScrollGesturesDuringRotateOrZoom + @see #MapAttrs_uiTiltGestures + @see #MapAttrs_uiZoomControls + @see #MapAttrs_uiZoomGestures + @see #MapAttrs_useViewLifecycle + @see #MapAttrs_zOrderOnTop + */ + public static final int[] MapAttrs = { + 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, + 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, + 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, + 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, + 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, + 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d + }; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#ambientEnabled} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:ambientEnabled + */ + public static final int MapAttrs_ambientEnabled = 17; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraBearing} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraBearing + */ + public static final int MapAttrs_cameraBearing = 1; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraMaxZoomPreference} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraMaxZoomPreference + */ + public static final int MapAttrs_cameraMaxZoomPreference = 19; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraMinZoomPreference} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraMinZoomPreference + */ + public static final int MapAttrs_cameraMinZoomPreference = 18; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraTargetLat} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraTargetLat + */ + public static final int MapAttrs_cameraTargetLat = 2; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraTargetLng} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraTargetLng + */ + public static final int MapAttrs_cameraTargetLng = 3; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraTilt} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraTilt + */ + public static final int MapAttrs_cameraTilt = 4; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#cameraZoom} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:cameraZoom + */ + public static final int MapAttrs_cameraZoom = 5; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsNorthEastLatitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsNorthEastLatitude + */ + public static final int MapAttrs_latLngBoundsNorthEastLatitude = 22; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsNorthEastLongitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsNorthEastLongitude + */ + public static final int MapAttrs_latLngBoundsNorthEastLongitude = 23; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsSouthWestLatitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsSouthWestLatitude + */ + public static final int MapAttrs_latLngBoundsSouthWestLatitude = 20; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#latLngBoundsSouthWestLongitude} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:latLngBoundsSouthWestLongitude + */ + public static final int MapAttrs_latLngBoundsSouthWestLongitude = 21; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#liteMode} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:liteMode + */ + public static final int MapAttrs_liteMode = 6; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#mapType} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
none0
normal1
satellite2
terrain3
hybrid4
+ @attr name b4a.rocklogster:mapType + */ + public static final int MapAttrs_mapType = 0; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiCompass} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiCompass + */ + public static final int MapAttrs_uiCompass = 7; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiMapToolbar} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiMapToolbar + */ + public static final int MapAttrs_uiMapToolbar = 16; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiRotateGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiRotateGestures + */ + public static final int MapAttrs_uiRotateGestures = 8; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiScrollGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiScrollGestures + */ + public static final int MapAttrs_uiScrollGestures = 9; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiScrollGesturesDuringRotateOrZoom} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiScrollGesturesDuringRotateOrZoom + */ + public static final int MapAttrs_uiScrollGesturesDuringRotateOrZoom = 10; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiTiltGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiTiltGestures + */ + public static final int MapAttrs_uiTiltGestures = 11; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiZoomControls} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiZoomControls + */ + public static final int MapAttrs_uiZoomControls = 12; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#uiZoomGestures} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:uiZoomGestures + */ + public static final int MapAttrs_uiZoomGestures = 13; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#useViewLifecycle} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:useViewLifecycle + */ + public static final int MapAttrs_useViewLifecycle = 14; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#zOrderOnTop} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name b4a.rocklogster:zOrderOnTop + */ + public static final int MapAttrs_zOrderOnTop = 15; + /** Attributes that can be used with a SignInButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SignInButton_buttonSize b4a.rocklogster:buttonSize}
{@link #SignInButton_colorScheme b4a.rocklogster:colorScheme}
{@link #SignInButton_scopeUris b4a.rocklogster:scopeUris}
+ @see #SignInButton_buttonSize + @see #SignInButton_colorScheme + @see #SignInButton_scopeUris + */ + public static final int[] SignInButton = { + 0x7f010003, 0x7f010004, 0x7f010005 + }; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#buttonSize} + attribute's value can be found in the {@link #SignInButton} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
standard0
wide1
icon_only2
+ @attr name b4a.rocklogster:buttonSize + */ + public static final int SignInButton_buttonSize = 0; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#colorScheme} + attribute's value can be found in the {@link #SignInButton} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
dark0
light1
auto2
+ @attr name b4a.rocklogster:colorScheme + */ + public static final int SignInButton_colorScheme = 1; + /** +

This symbol is the offset where the {@link b4a.rocklogster.R.attr#scopeUris} + attribute's value can be found in the {@link #SignInButton} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. + @attr name b4a.rocklogster:scopeUris + */ + public static final int SignInButton_scopeUris = 2; + }; +} diff --git a/Objects/res/drawable/icon.png b/Objects/res/drawable/icon.png new file mode 100644 index 0000000..b0717dc Binary files /dev/null and b/Objects/res/drawable/icon.png differ diff --git a/Objects/res/mipmap-anydpi-v26/ic_launcher.xml b/Objects/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..a0b3e1a --- /dev/null +++ b/Objects/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/Objects/res/mipmap/background.png b/Objects/res/mipmap/background.png new file mode 100644 index 0000000..7475518 Binary files /dev/null and b/Objects/res/mipmap/background.png differ diff --git a/Objects/res/mipmap/foreground.png b/Objects/res/mipmap/foreground.png new file mode 100644 index 0000000..7475518 Binary files /dev/null and b/Objects/res/mipmap/foreground.png differ diff --git a/Objects/res/mipmap/ic_launcher.png b/Objects/res/mipmap/ic_launcher.png new file mode 100644 index 0000000..b0717dc Binary files /dev/null and b/Objects/res/mipmap/ic_launcher.png differ diff --git a/Objects/res/values-v14/theme.xml b/Objects/res/values-v14/theme.xml new file mode 100644 index 0000000..d89807d --- /dev/null +++ b/Objects/res/values-v14/theme.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/Objects/res/values-v20/theme.xml b/Objects/res/values-v20/theme.xml new file mode 100644 index 0000000..cf34a99 --- /dev/null +++ b/Objects/res/values-v20/theme.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/Objects/shell/bin/classes/b4a/rocklogster/main.class b/Objects/shell/bin/classes/b4a/rocklogster/main.class new file mode 100644 index 0000000..b33851e Binary files /dev/null and b/Objects/shell/bin/classes/b4a/rocklogster/main.class differ diff --git a/Objects/shell/bin/classes/b4a/rocklogster/main_subs_0$ResumableSub_Activity_Resume.class b/Objects/shell/bin/classes/b4a/rocklogster/main_subs_0$ResumableSub_Activity_Resume.class new file mode 100644 index 0000000..4013b6a Binary files /dev/null and b/Objects/shell/bin/classes/b4a/rocklogster/main_subs_0$ResumableSub_Activity_Resume.class differ diff --git a/Objects/shell/bin/classes/b4a/rocklogster/main_subs_0$ResumableSub_Panel_down.class b/Objects/shell/bin/classes/b4a/rocklogster/main_subs_0$ResumableSub_Panel_down.class new file mode 100644 index 0000000..c87dde9 Binary files /dev/null and b/Objects/shell/bin/classes/b4a/rocklogster/main_subs_0$ResumableSub_Panel_down.class differ diff --git a/Objects/shell/bin/classes/b4a/rocklogster/main_subs_0$ResumableSub_Panel_up.class b/Objects/shell/bin/classes/b4a/rocklogster/main_subs_0$ResumableSub_Panel_up.class new file mode 100644 index 0000000..4294645 Binary files /dev/null and b/Objects/shell/bin/classes/b4a/rocklogster/main_subs_0$ResumableSub_Panel_up.class differ diff --git a/Objects/shell/bin/classes/b4a/rocklogster/main_subs_0.class b/Objects/shell/bin/classes/b4a/rocklogster/main_subs_0.class new file mode 100644 index 0000000..dba8726 Binary files /dev/null and b/Objects/shell/bin/classes/b4a/rocklogster/main_subs_0.class differ diff --git a/Objects/shell/bin/classes/b4a/rocklogster/mapmod.class b/Objects/shell/bin/classes/b4a/rocklogster/mapmod.class new file mode 100644 index 0000000..4f4a114 Binary files /dev/null and b/Objects/shell/bin/classes/b4a/rocklogster/mapmod.class differ diff --git a/Objects/shell/bin/classes/b4a/rocklogster/mapmod_subs_0$ResumableSub_Activity_Create.class b/Objects/shell/bin/classes/b4a/rocklogster/mapmod_subs_0$ResumableSub_Activity_Create.class new file mode 100644 index 0000000..20cb140 Binary files /dev/null and b/Objects/shell/bin/classes/b4a/rocklogster/mapmod_subs_0$ResumableSub_Activity_Create.class differ diff --git a/Objects/shell/bin/classes/b4a/rocklogster/mapmod_subs_0$ResumableSub_matchingsub.class b/Objects/shell/bin/classes/b4a/rocklogster/mapmod_subs_0$ResumableSub_matchingsub.class new file mode 100644 index 0000000..f0b24b1 Binary files /dev/null and b/Objects/shell/bin/classes/b4a/rocklogster/mapmod_subs_0$ResumableSub_matchingsub.class differ diff --git a/Objects/shell/bin/classes/b4a/rocklogster/mapmod_subs_0.class b/Objects/shell/bin/classes/b4a/rocklogster/mapmod_subs_0.class new file mode 100644 index 0000000..97adced Binary files /dev/null and b/Objects/shell/bin/classes/b4a/rocklogster/mapmod_subs_0.class differ diff --git a/Objects/shell/bin/classes/b4a/rocklogster/starter.class b/Objects/shell/bin/classes/b4a/rocklogster/starter.class new file mode 100644 index 0000000..2620f7b Binary files /dev/null and b/Objects/shell/bin/classes/b4a/rocklogster/starter.class differ diff --git a/Objects/shell/bin/classes/b4a/rocklogster/starter_subs_0.class b/Objects/shell/bin/classes/b4a/rocklogster/starter_subs_0.class new file mode 100644 index 0000000..5bb075a Binary files /dev/null and b/Objects/shell/bin/classes/b4a/rocklogster/starter_subs_0.class differ diff --git a/Objects/src/b4a/rocklogster/designerscripts/LS_mapfrag.java b/Objects/src/b4a/rocklogster/designerscripts/LS_mapfrag.java new file mode 100644 index 0000000..381c4f1 --- /dev/null +++ b/Objects/src/b4a/rocklogster/designerscripts/LS_mapfrag.java @@ -0,0 +1,15 @@ +package b4a.rocklogster.designerscripts; +import anywheresoftware.b4a.objects.TextViewWrapper; +import anywheresoftware.b4a.objects.ImageViewWrapper; +import anywheresoftware.b4a.BA; + + +public class LS_mapfrag{ + +public static void LS_general(java.util.LinkedHashMap views, int width, int height, float scale) { +anywheresoftware.b4a.keywords.LayoutBuilder.setScaleRate(0.3); +//BA.debugLineNum = 2;BA.debugLine="AutoScaleAll"[mapfrag/General script] +anywheresoftware.b4a.keywords.LayoutBuilder.scaleAll(views); + +} +} \ No newline at end of file diff --git a/Objects/src/b4a/rocklogster/designerscripts/LS_rockloggervisual.java b/Objects/src/b4a/rocklogster/designerscripts/LS_rockloggervisual.java new file mode 100644 index 0000000..765b5fb --- /dev/null +++ b/Objects/src/b4a/rocklogster/designerscripts/LS_rockloggervisual.java @@ -0,0 +1,15 @@ +package b4a.rocklogster.designerscripts; +import anywheresoftware.b4a.objects.TextViewWrapper; +import anywheresoftware.b4a.objects.ImageViewWrapper; +import anywheresoftware.b4a.BA; + + +public class LS_rockloggervisual{ + +public static void LS_general(java.util.LinkedHashMap views, int width, int height, float scale) { +anywheresoftware.b4a.keywords.LayoutBuilder.setScaleRate(0.3); +//BA.debugLineNum = 2;BA.debugLine="AutoScaleAll"[Rockloggervisual/General script] +anywheresoftware.b4a.keywords.LayoutBuilder.scaleAll(views); + +} +} \ No newline at end of file diff --git a/Objects/src/b4a/rocklogster/mapmod.java b/Objects/src/b4a/rocklogster/mapmod.java new file mode 100644 index 0000000..feb6b2c --- /dev/null +++ b/Objects/src/b4a/rocklogster/mapmod.java @@ -0,0 +1,757 @@ +package b4a.rocklogster; + + +import anywheresoftware.b4a.B4AMenuItem; +import android.app.Activity; +import android.os.Bundle; +import anywheresoftware.b4a.BA; +import anywheresoftware.b4a.BALayout; +import anywheresoftware.b4a.B4AActivity; +import anywheresoftware.b4a.ObjectWrapper; +import anywheresoftware.b4a.objects.ActivityWrapper; +import java.lang.reflect.InvocationTargetException; +import anywheresoftware.b4a.B4AUncaughtException; +import anywheresoftware.b4a.debug.*; +import java.lang.ref.WeakReference; + +public class mapmod extends Activity implements B4AActivity{ + public static mapmod mostCurrent; + static boolean afterFirstLayout; + static boolean isFirst = true; + private static boolean processGlobalsRun = false; + BALayout layout; + public static BA processBA; + BA activityBA; + ActivityWrapper _activity; + java.util.ArrayList menuItems; + public static final boolean fullScreen = false; + public static final boolean includeTitle = true; + public static WeakReference previousOne; + public static boolean dontPause; + + @Override + public void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + mostCurrent = this; + if (processBA == null) { + processBA = new BA(this.getApplicationContext(), null, null, "b4a.rocklogster", "b4a.rocklogster.mapmod"); + processBA.loadHtSubs(this.getClass()); + float deviceScale = getApplicationContext().getResources().getDisplayMetrics().density; + BALayout.setDeviceScale(deviceScale); + + } + else if (previousOne != null) { + Activity p = previousOne.get(); + if (p != null && p != this) { + BA.LogInfo("Killing previous instance (mapmod)."); + p.finish(); + } + } + processBA.setActivityPaused(true); + processBA.runHook("oncreate", this, null); + if (!includeTitle) { + this.getWindow().requestFeature(android.view.Window.FEATURE_NO_TITLE); + } + if (fullScreen) { + getWindow().setFlags(android.view.WindowManager.LayoutParams.FLAG_FULLSCREEN, + android.view.WindowManager.LayoutParams.FLAG_FULLSCREEN); + } + + processBA.sharedProcessBA.activityBA = null; + layout = new BALayout(this); + setContentView(layout); + afterFirstLayout = false; + WaitForLayout wl = new WaitForLayout(); + if (anywheresoftware.b4a.objects.ServiceHelper.StarterHelper.startFromActivity(this, processBA, wl, false)) + BA.handler.postDelayed(wl, 5); + + } + static class WaitForLayout implements Runnable { + public void run() { + if (afterFirstLayout) + return; + if (mostCurrent == null) + return; + + if (mostCurrent.layout.getWidth() == 0) { + BA.handler.postDelayed(this, 5); + return; + } + mostCurrent.layout.getLayoutParams().height = mostCurrent.layout.getHeight(); + mostCurrent.layout.getLayoutParams().width = mostCurrent.layout.getWidth(); + afterFirstLayout = true; + mostCurrent.afterFirstLayout(); + } + } + private void afterFirstLayout() { + if (this != mostCurrent) + return; + activityBA = new BA(this, layout, processBA, "b4a.rocklogster", "b4a.rocklogster.mapmod"); + + processBA.sharedProcessBA.activityBA = new java.lang.ref.WeakReference(activityBA); + anywheresoftware.b4a.objects.ViewWrapper.lastId = 0; + _activity = new ActivityWrapper(activityBA, "activity"); + anywheresoftware.b4a.Msgbox.isDismissing = false; + if (BA.isShellModeRuntimeCheck(processBA)) { + if (isFirst) + processBA.raiseEvent2(null, true, "SHELL", false); + processBA.raiseEvent2(null, true, "CREATE", true, "b4a.rocklogster.mapmod", processBA, activityBA, _activity, anywheresoftware.b4a.keywords.Common.Density, mostCurrent); + _activity.reinitializeForShell(activityBA, "activity"); + } + initializeProcessGlobals(); + initializeGlobals(); + + BA.LogInfo("** Activity (mapmod) Create, isFirst = " + isFirst + " **"); + processBA.raiseEvent2(null, true, "activity_create", false, isFirst); + isFirst = false; + if (this != mostCurrent) + return; + processBA.setActivityPaused(false); + BA.LogInfo("** Activity (mapmod) Resume **"); + processBA.raiseEvent(null, "activity_resume"); + if (android.os.Build.VERSION.SDK_INT >= 11) { + try { + android.app.Activity.class.getMethod("invalidateOptionsMenu").invoke(this,(Object[]) null); + } catch (Exception e) { + e.printStackTrace(); + } + } + + } + public void addMenuItem(B4AMenuItem item) { + if (menuItems == null) + menuItems = new java.util.ArrayList(); + menuItems.add(item); + } + @Override + public boolean onCreateOptionsMenu(android.view.Menu menu) { + super.onCreateOptionsMenu(menu); + try { + if (processBA.subExists("activity_actionbarhomeclick")) { + Class.forName("android.app.ActionBar").getMethod("setHomeButtonEnabled", boolean.class).invoke( + getClass().getMethod("getActionBar").invoke(this), true); + } + } catch (Exception e) { + e.printStackTrace(); + } + if (processBA.runHook("oncreateoptionsmenu", this, new Object[] {menu})) + return true; + if (menuItems == null) + return false; + for (B4AMenuItem bmi : menuItems) { + android.view.MenuItem mi = menu.add(bmi.title); + if (bmi.drawable != null) + mi.setIcon(bmi.drawable); + if (android.os.Build.VERSION.SDK_INT >= 11) { + try { + if (bmi.addToBar) { + android.view.MenuItem.class.getMethod("setShowAsAction", int.class).invoke(mi, 1); + } + } catch (Exception e) { + e.printStackTrace(); + } + } + mi.setOnMenuItemClickListener(new B4AMenuItemsClickListener(bmi.eventName.toLowerCase(BA.cul))); + } + + return true; + } + @Override + public boolean onOptionsItemSelected(android.view.MenuItem item) { + if (item.getItemId() == 16908332) { + processBA.raiseEvent(null, "activity_actionbarhomeclick"); + return true; + } + else + return super.onOptionsItemSelected(item); +} +@Override + public boolean onPrepareOptionsMenu(android.view.Menu menu) { + super.onPrepareOptionsMenu(menu); + processBA.runHook("onprepareoptionsmenu", this, new Object[] {menu}); + return true; + + } + protected void onStart() { + super.onStart(); + processBA.runHook("onstart", this, null); +} + protected void onStop() { + super.onStop(); + processBA.runHook("onstop", this, null); +} + public void onWindowFocusChanged(boolean hasFocus) { + super.onWindowFocusChanged(hasFocus); + if (processBA.subExists("activity_windowfocuschanged")) + processBA.raiseEvent2(null, true, "activity_windowfocuschanged", false, hasFocus); + } + private class B4AMenuItemsClickListener implements android.view.MenuItem.OnMenuItemClickListener { + private final String eventName; + public B4AMenuItemsClickListener(String eventName) { + this.eventName = eventName; + } + public boolean onMenuItemClick(android.view.MenuItem item) { + processBA.raiseEventFromUI(item.getTitle(), eventName + "_click"); + return true; + } + } + public static Class getObject() { + return mapmod.class; + } + private Boolean onKeySubExist = null; + private Boolean onKeyUpSubExist = null; + @Override + public boolean onKeyDown(int keyCode, android.view.KeyEvent event) { + if (processBA.runHook("onkeydown", this, new Object[] {keyCode, event})) + return true; + if (onKeySubExist == null) + onKeySubExist = processBA.subExists("activity_keypress"); + if (onKeySubExist) { + if (keyCode == anywheresoftware.b4a.keywords.constants.KeyCodes.KEYCODE_BACK && + android.os.Build.VERSION.SDK_INT >= 18) { + HandleKeyDelayed hk = new HandleKeyDelayed(); + hk.kc = keyCode; + BA.handler.post(hk); + return true; + } + else { + boolean res = new HandleKeyDelayed().runDirectly(keyCode); + if (res) + return true; + } + } + return super.onKeyDown(keyCode, event); + } + private class HandleKeyDelayed implements Runnable { + int kc; + public void run() { + runDirectly(kc); + } + public boolean runDirectly(int keyCode) { + Boolean res = (Boolean)processBA.raiseEvent2(_activity, false, "activity_keypress", false, keyCode); + if (res == null || res == true) { + return true; + } + else if (keyCode == anywheresoftware.b4a.keywords.constants.KeyCodes.KEYCODE_BACK) { + finish(); + return true; + } + return false; + } + + } + @Override + public boolean onKeyUp(int keyCode, android.view.KeyEvent event) { + if (processBA.runHook("onkeyup", this, new Object[] {keyCode, event})) + return true; + if (onKeyUpSubExist == null) + onKeyUpSubExist = processBA.subExists("activity_keyup"); + if (onKeyUpSubExist) { + Boolean res = (Boolean)processBA.raiseEvent2(_activity, false, "activity_keyup", false, keyCode); + if (res == null || res == true) + return true; + } + return super.onKeyUp(keyCode, event); + } + @Override + public void onNewIntent(android.content.Intent intent) { + super.onNewIntent(intent); + this.setIntent(intent); + processBA.runHook("onnewintent", this, new Object[] {intent}); + } + @Override + public void onPause() { + super.onPause(); + if (_activity == null) + return; + if (this != mostCurrent) + return; + anywheresoftware.b4a.Msgbox.dismiss(true); + if (!dontPause) + BA.LogInfo("** Activity (mapmod) Pause, UserClosed = " + activityBA.activity.isFinishing() + " **"); + else + BA.LogInfo("** Activity (mapmod) Pause event (activity is not paused). **"); + if (mostCurrent != null) + processBA.raiseEvent2(_activity, true, "activity_pause", false, activityBA.activity.isFinishing()); + if (!dontPause) { + processBA.setActivityPaused(true); + mostCurrent = null; + } + + if (!activityBA.activity.isFinishing()) + previousOne = new WeakReference(this); + anywheresoftware.b4a.Msgbox.isDismissing = false; + processBA.runHook("onpause", this, null); + } + + @Override + public void onDestroy() { + super.onDestroy(); + previousOne = null; + processBA.runHook("ondestroy", this, null); + } + @Override + public void onResume() { + super.onResume(); + mostCurrent = this; + anywheresoftware.b4a.Msgbox.isDismissing = false; + if (activityBA != null) { //will be null during activity create (which waits for AfterLayout). + ResumeMessage rm = new ResumeMessage(mostCurrent); + BA.handler.post(rm); + } + processBA.runHook("onresume", this, null); + } + private static class ResumeMessage implements Runnable { + private final WeakReference activity; + public ResumeMessage(Activity activity) { + this.activity = new WeakReference(activity); + } + public void run() { + mapmod mc = mostCurrent; + if (mc == null || mc != activity.get()) + return; + processBA.setActivityPaused(false); + BA.LogInfo("** Activity (mapmod) Resume **"); + if (mc != mostCurrent) + return; + processBA.raiseEvent(mc._activity, "activity_resume", (Object[])null); + } + } + @Override + protected void onActivityResult(int requestCode, int resultCode, + android.content.Intent data) { + processBA.onActivityResult(requestCode, resultCode, data); + processBA.runHook("onactivityresult", this, new Object[] {requestCode, resultCode}); + } + private static void initializeGlobals() { + processBA.raiseEvent2(null, true, "globals", false, (Object[])null); + } + public void onRequestPermissionsResult(int requestCode, + String permissions[], int[] grantResults) { + for (int i = 0;i < permissions.length;i++) { + Object[] o = new Object[] {permissions[i], grantResults[i] == 0}; + processBA.raiseEventFromDifferentThread(null,null, 0, "activity_permissionresult", true, o); + } + + } + +public anywheresoftware.b4a.keywords.Common __c = null; +public static anywheresoftware.b4a.objects.RuntimePermissions _rp = null; +public anywheresoftware.b4a.objects.MapFragmentWrapper.GoogleMapWrapper _gmap = null; +public anywheresoftware.b4a.objects.MapFragmentWrapper _mapfragment1 = null; +public anywheresoftware.b4a.objects.MapFragmentWrapper.CameraPositionWrapper _centerloc = null; +public anywheresoftware.b4a.objects.drawable.CanvasWrapper.BitmapWrapper _bmp = null; +public uk.co.martinpearman.b4a.googlemapsextras.GoogleMapsExtras _gmapx = null; +public b4a.rocklogster.main _main = null; +public b4a.rocklogster.starter _starter = null; + +public static void initializeProcessGlobals() { + try { + Class.forName(BA.applicationContext.getPackageName() + ".main").getMethod("initializeProcessGlobals").invoke(null, null); + } catch (Exception e) { + throw new RuntimeException(e); + } +} +public static void _activity_create(boolean _firsttime) throws Exception{ +ResumableSub_Activity_Create rsub = new ResumableSub_Activity_Create(null,_firsttime); +rsub.resume(processBA, null); +} +public static class ResumableSub_Activity_Create extends BA.ResumableSub { +public ResumableSub_Activity_Create(b4a.rocklogster.mapmod parent,boolean _firsttime) { +this.parent = parent; +this._firsttime = _firsttime; +} +b4a.rocklogster.mapmod parent; +boolean _firsttime; +String _permission = ""; +boolean _result = false; + +@Override +public void resume(BA ba, Object[] result) throws Exception{ + + while (true) { + switch (state) { + case -1: +return; + +case 0: +//C +this.state = 1; + //BA.debugLineNum = 21;BA.debugLine="Activity.LoadLayout(\"mapfrag\")"; +parent.mostCurrent._activity.LoadLayout("mapfrag",mostCurrent.activityBA); + //BA.debugLineNum = 22;BA.debugLine="bmp = LoadBitmapResize(File.DirAssets, \"marker2.p"; +parent.mostCurrent._bmp = anywheresoftware.b4a.keywords.Common.LoadBitmapResize(anywheresoftware.b4a.keywords.Common.File.getDirAssets(),"marker2.png",anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (20)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (20)),anywheresoftware.b4a.keywords.Common.True); + //BA.debugLineNum = 23;BA.debugLine="Wait For MapFragment1_Ready"; +anywheresoftware.b4a.keywords.Common.WaitFor("mapfragment1_ready", processBA, this, null); +this.state = 7; +return; +case 7: +//C +this.state = 1; +; + //BA.debugLineNum = 24;BA.debugLine="gmap = MapFragment1.GetMap"; +parent.mostCurrent._gmap = parent.mostCurrent._mapfragment1.GetMap(); + //BA.debugLineNum = 25;BA.debugLine="rp.CheckAndRequest(rp.PERMISSION_ACCESS_FINE_LOCA"; +parent._rp.CheckAndRequest(processBA,parent._rp.PERMISSION_ACCESS_FINE_LOCATION); + //BA.debugLineNum = 26;BA.debugLine="Wait For Activity_PermissionResult (Permission As"; +anywheresoftware.b4a.keywords.Common.WaitFor("activity_permissionresult", processBA, this, null); +this.state = 8; +return; +case 8: +//C +this.state = 1; +_permission = (String) result[0]; +_result = (Boolean) result[1]; +; + //BA.debugLineNum = 27;BA.debugLine="If Result Then"; +if (true) break; + +case 1: +//if +this.state = 6; +if (_result) { +this.state = 3; +}else { +this.state = 5; +}if (true) break; + +case 3: +//C +this.state = 6; + //BA.debugLineNum = 28;BA.debugLine="gmap.MyLocationEnabled = True"; +parent.mostCurrent._gmap.setMyLocationEnabled(anywheresoftware.b4a.keywords.Common.True); + if (true) break; + +case 5: +//C +this.state = 6; + //BA.debugLineNum = 30;BA.debugLine="Log(\"No permission!\")"; +anywheresoftware.b4a.keywords.Common.LogImpl("71835019","No permission!",0); + if (true) break; + +case 6: +//C +this.state = -1; +; + //BA.debugLineNum = 34;BA.debugLine="add_line"; +_add_line(); + //BA.debugLineNum = 36;BA.debugLine="End Sub"; +if (true) break; + + } + } + } +} +public static void _mapfragment1_ready() throws Exception{ +} +public static void _activity_permissionresult(String _permission,boolean _result) throws Exception{ +} +public static String _activity_pause(boolean _userclosed) throws Exception{ + //BA.debugLineNum = 127;BA.debugLine="Sub Activity_Pause (UserClosed As Boolean)"; + //BA.debugLineNum = 129;BA.debugLine="End Sub"; +return ""; +} +public static String _activity_resume() throws Exception{ + //BA.debugLineNum = 122;BA.debugLine="Sub Activity_Resume"; + //BA.debugLineNum = 124;BA.debugLine="matchingsub"; +_matchingsub(); + //BA.debugLineNum = 125;BA.debugLine="End Sub"; +return ""; +} +public static String _add_line() throws Exception{ +anywheresoftware.b4a.objects.MapFragmentWrapper.PolylineWrapper _line = null; +anywheresoftware.b4a.objects.collections.List _points = null; +anywheresoftware.b4a.objects.MapFragmentWrapper.LatLngWrapper _point = null; +uk.co.martinpearman.b4a.com.google.android.gms.maps.model.GroundOverlayOptions _grpvop = null; +uk.co.martinpearman.b4a.com.google.android.gms.maps.model.GroundOverlay _grov = null; +anywheresoftware.b4a.objects.drawable.CanvasWrapper.BitmapWrapper _overlay4 = null; +anywheresoftware.b4a.objects.MapFragmentWrapper.LatLngWrapper _centr = null; + //BA.debugLineNum = 78;BA.debugLine="Sub add_line"; + //BA.debugLineNum = 79;BA.debugLine="Dim line As Polyline"; +_line = new anywheresoftware.b4a.objects.MapFragmentWrapper.PolylineWrapper(); + //BA.debugLineNum = 80;BA.debugLine="Dim points As List"; +_points = new anywheresoftware.b4a.objects.collections.List(); + //BA.debugLineNum = 81;BA.debugLine="Dim point As LatLng"; +_point = new anywheresoftware.b4a.objects.MapFragmentWrapper.LatLngWrapper(); + //BA.debugLineNum = 82;BA.debugLine="Dim grpvop As GroundOverlayOptions"; +_grpvop = new uk.co.martinpearman.b4a.com.google.android.gms.maps.model.GroundOverlayOptions(); + //BA.debugLineNum = 83;BA.debugLine="Dim grov As GroundOverlay"; +_grov = new uk.co.martinpearman.b4a.com.google.android.gms.maps.model.GroundOverlay(); + //BA.debugLineNum = 84;BA.debugLine="Dim overlay4 As Bitmap"; +_overlay4 = new anywheresoftware.b4a.objects.drawable.CanvasWrapper.BitmapWrapper(); + //BA.debugLineNum = 85;BA.debugLine="Dim centr As LatLng"; +_centr = new anywheresoftware.b4a.objects.MapFragmentWrapper.LatLngWrapper(); + //BA.debugLineNum = 86;BA.debugLine="grpvop.Initialize"; +_grpvop.Initialize(); + //BA.debugLineNum = 87;BA.debugLine="overlay4 = LoadBitmap(File.DirAssets, \"overlaywhi"; +_overlay4 = anywheresoftware.b4a.keywords.Common.LoadBitmap(anywheresoftware.b4a.keywords.Common.File.getDirAssets(),"overlaywhite.png"); + //BA.debugLineNum = 88;BA.debugLine="grpvop.Image(overlay4)"; +_grpvop.Image((android.graphics.Bitmap)(_overlay4.getObject())); + //BA.debugLineNum = 89;BA.debugLine="centr.Initialize(-32.6972,118.1908)"; +_centr.Initialize(-32.6972,118.1908); + //BA.debugLineNum = 90;BA.debugLine="grpvop.Position(centr,29000,16000)"; +_grpvop.Position((com.google.android.gms.maps.model.LatLng)(_centr.getObject()),(float) (29000),(float) (16000)); + //BA.debugLineNum = 91;BA.debugLine="grpvop.SetTransparency(.5)"; +_grpvop.SetTransparency((float) (.5)); + //BA.debugLineNum = 93;BA.debugLine="gmapx.AddGroundOverlay(gmap,grpvop)"; +mostCurrent._gmapx.AddGroundOverlay((com.google.android.gms.maps.GoogleMap)(mostCurrent._gmap.getObject()),(com.google.android.gms.maps.model.GroundOverlayOptions)(_grpvop.getObject())); + //BA.debugLineNum = 94;BA.debugLine="line=gmap.AddPolyline"; +_line = mostCurrent._gmap.AddPolyline(); + //BA.debugLineNum = 95;BA.debugLine="points.Initialize"; +_points.Initialize(); + //BA.debugLineNum = 97;BA.debugLine="line.Color=Colors.Red"; +_line.setColor(anywheresoftware.b4a.keywords.Common.Colors.Red); + //BA.debugLineNum = 98;BA.debugLine="line.Visible=True"; +_line.setVisible(anywheresoftware.b4a.keywords.Common.True); + //BA.debugLineNum = 99;BA.debugLine="line.Width=2"; +_line.setWidth((float) (2)); + //BA.debugLineNum = 100;BA.debugLine="point.Initialize(-32.6758, 118.1967)"; +_point.Initialize(-32.6758,118.1967); + //BA.debugLineNum = 101;BA.debugLine="points.Add(point)"; +_points.Add((Object)(_point.getObject())); + //BA.debugLineNum = 102;BA.debugLine="point.Initialize(-32.6757, 118.1756)"; +_point.Initialize(-32.6757,118.1756); + //BA.debugLineNum = 103;BA.debugLine="points.Add(point)"; +_points.Add((Object)(_point.getObject())); + //BA.debugLineNum = 104;BA.debugLine="point.Initialize(-32.6608, 118.1756)"; +_point.Initialize(-32.6608,118.1756); + //BA.debugLineNum = 105;BA.debugLine="points.Add(point)"; +_points.Add((Object)(_point.getObject())); + //BA.debugLineNum = 106;BA.debugLine="point.Initialize(-32.6564, 118.182)"; +_point.Initialize(-32.6564,118.182); + //BA.debugLineNum = 107;BA.debugLine="points.Add(point)"; +_points.Add((Object)(_point.getObject())); + //BA.debugLineNum = 108;BA.debugLine="point.Initialize(-32.6564, 118.1963)"; +_point.Initialize(-32.6564,118.1963); + //BA.debugLineNum = 109;BA.debugLine="points.Add(point)"; +_points.Add((Object)(_point.getObject())); + //BA.debugLineNum = 110;BA.debugLine="point.Initialize(-32.6758, 118.1967)"; +_point.Initialize(-32.6758,118.1967); + //BA.debugLineNum = 111;BA.debugLine="points.Add(point)"; +_points.Add((Object)(_point.getObject())); + //BA.debugLineNum = 112;BA.debugLine="line.Points=points"; +_line.setPoints(_points); + //BA.debugLineNum = 114;BA.debugLine="End Sub"; +return ""; +} +public static String _button1_click() throws Exception{ + //BA.debugLineNum = 131;BA.debugLine="Sub button1_Click"; + //BA.debugLineNum = 132;BA.debugLine="StartActivity(Main)"; +anywheresoftware.b4a.keywords.Common.StartActivity(processBA,(Object)(mostCurrent._main.getObject())); + //BA.debugLineNum = 133;BA.debugLine="End Sub"; +return ""; +} +public static String _globals() throws Exception{ + //BA.debugLineNum = 10;BA.debugLine="Sub Globals"; + //BA.debugLineNum = 11;BA.debugLine="Private gmap As GoogleMap"; +mostCurrent._gmap = new anywheresoftware.b4a.objects.MapFragmentWrapper.GoogleMapWrapper(); + //BA.debugLineNum = 12;BA.debugLine="Private MapFragment1 As MapFragment"; +mostCurrent._mapfragment1 = new anywheresoftware.b4a.objects.MapFragmentWrapper(); + //BA.debugLineNum = 13;BA.debugLine="Private centerloc As CameraPosition"; +mostCurrent._centerloc = new anywheresoftware.b4a.objects.MapFragmentWrapper.CameraPositionWrapper(); + //BA.debugLineNum = 14;BA.debugLine="Private bmp As Bitmap"; +mostCurrent._bmp = new anywheresoftware.b4a.objects.drawable.CanvasWrapper.BitmapWrapper(); + //BA.debugLineNum = 15;BA.debugLine="Private gmapx As GoogleMapsExtras"; +mostCurrent._gmapx = new uk.co.martinpearman.b4a.googlemapsextras.GoogleMapsExtras(); + //BA.debugLineNum = 17;BA.debugLine="End Sub"; +return ""; +} +public static String _log_markers() throws Exception{ + //BA.debugLineNum = 38;BA.debugLine="Sub Log_Markers"; + //BA.debugLineNum = 42;BA.debugLine="End Sub"; +return ""; +} +public static String _mapfragment1_click(anywheresoftware.b4a.objects.MapFragmentWrapper.LatLngWrapper _point) throws Exception{ + //BA.debugLineNum = 116;BA.debugLine="Sub MapFragment1_Click (Point As LatLng)"; + //BA.debugLineNum = 117;BA.debugLine="gmap.AddMarker(Point.Latitude, Point.Longitude, \""; +mostCurrent._gmap.AddMarker(_point.getLatitude(),_point.getLongitude(),"New Marker"); + //BA.debugLineNum = 118;BA.debugLine="Log(Point)"; +anywheresoftware.b4a.keywords.Common.LogImpl("72097154",BA.ObjectToString(_point),0); + //BA.debugLineNum = 120;BA.debugLine="End Sub"; +return ""; +} +public static void _matchingsub() throws Exception{ +ResumableSub_matchingsub rsub = new ResumableSub_matchingsub(null); +rsub.resume(processBA, null); +} +public static class ResumableSub_matchingsub extends BA.ResumableSub { +public ResumableSub_matchingsub(b4a.rocklogster.mapmod parent) { +this.parent = parent; +} +b4a.rocklogster.mapmod parent; +int _i = 0; +anywheresoftware.b4a.keywords.Regex.MatcherWrapper _m = null; +int step8; +int limit8; +int step10; +int limit10; + +@Override +public void resume(BA ba, Object[] result) throws Exception{ + + while (true) { + switch (state) { + case -1: +return; + +case 0: +//C +this.state = 1; + //BA.debugLineNum = 45;BA.debugLine="Do Until MapFragment1.GetMap.IsInitialized 'necis"; +if (true) break; + +case 1: +//do until +this.state = 4; +while (!(parent.mostCurrent._mapfragment1.GetMap().IsInitialized())) { +this.state = 3; +if (true) break; +} +if (true) break; + +case 3: +//C +this.state = 1; + //BA.debugLineNum = 46;BA.debugLine="Sleep(100)"; +anywheresoftware.b4a.keywords.Common.Sleep(mostCurrent.activityBA,this,(int) (100)); +this.state = 20; +return; +case 20: +//C +this.state = 1; +; + if (true) break; + +case 4: +//C +this.state = 5; +; + //BA.debugLineNum = 48;BA.debugLine="gmap.MapType = gmap.MAP_TYPE_SATELLITE"; +parent.mostCurrent._gmap.setMapType(parent.mostCurrent._gmap.MAP_TYPE_SATELLITE); + //BA.debugLineNum = 49;BA.debugLine="centerloc.initialize (-32.676910,118.211034,14)"; +parent.mostCurrent._centerloc.Initialize(-32.676910,118.211034,(float) (14)); + //BA.debugLineNum = 50;BA.debugLine="gmap.MoveCamera(centerloc)"; +parent.mostCurrent._gmap.MoveCamera((com.google.android.gms.maps.model.CameraPosition)(parent.mostCurrent._centerloc.getObject())); + //BA.debugLineNum = 52;BA.debugLine="If Main.headerlist.Size >0 Then"; +if (true) break; + +case 5: +//if +this.state = 19; +if (parent.mostCurrent._main._headerlist /*anywheresoftware.b4a.objects.collections.List*/ .getSize()>0) { +this.state = 7; +}if (true) break; + +case 7: +//C +this.state = 8; + //BA.debugLineNum = 53;BA.debugLine="For i = 0 To Main.headerlist.Size - 1"; +if (true) break; + +case 8: +//for +this.state = 11; +step8 = 1; +limit8 = (int) (parent.mostCurrent._main._headerlist /*anywheresoftware.b4a.objects.collections.List*/ .getSize()-1); +_i = (int) (0) ; +this.state = 21; +if (true) break; + +case 21: +//C +this.state = 11; +if ((step8 > 0 && _i <= limit8) || (step8 < 0 && _i >= limit8)) this.state = 10; +if (true) break; + +case 22: +//C +this.state = 21; +_i = ((int)(0 + _i + step8)) ; +if (true) break; + +case 10: +//C +this.state = 22; + if (true) break; +if (true) break; +; + //BA.debugLineNum = 57;BA.debugLine="For i = 0 To Main.headerlist.size-1"; + +case 11: +//for +this.state = 18; +step10 = 1; +limit10 = (int) (parent.mostCurrent._main._headerlist /*anywheresoftware.b4a.objects.collections.List*/ .getSize()-1); +_i = (int) (0) ; +this.state = 23; +if (true) break; + +case 23: +//C +this.state = 18; +if ((step10 > 0 && _i <= limit10) || (step10 < 0 && _i >= limit10)) this.state = 13; +if (true) break; + +case 24: +//C +this.state = 23; +_i = ((int)(0 + _i + step10)) ; +if (true) break; + +case 13: +//C +this.state = 14; + //BA.debugLineNum = 58;BA.debugLine="Dim m As Matcher =Regex.Matcher(\",(.+?) (.+?),\","; +_m = new anywheresoftware.b4a.keywords.Regex.MatcherWrapper(); +_m = anywheresoftware.b4a.keywords.Common.Regex.Matcher(",(.+?) (.+?),",BA.ObjectToString(parent.mostCurrent._main._locationstringlist /*anywheresoftware.b4a.objects.collections.List*/ .Get((int) (_i+1)))); + //BA.debugLineNum = 59;BA.debugLine="Do While m.Find"; +if (true) break; + +case 14: +//do while +this.state = 17; +while (_m.Find()) { +this.state = 16; +if (true) break; +} +if (true) break; + +case 16: +//C +this.state = 14; + //BA.debugLineNum = 60;BA.debugLine="gmap.AddMarker3(m.group(1),m.group(2),Main.heade"; +parent.mostCurrent._gmap.AddMarker3((double)(Double.parseDouble(_m.Group((int) (1)))),(double)(Double.parseDouble(_m.Group((int) (2)))),BA.ObjectToString(parent.mostCurrent._main._headerlist /*anywheresoftware.b4a.objects.collections.List*/ .Get(_i)),(android.graphics.Bitmap)(parent.mostCurrent._bmp.getObject())); + if (true) break; + +case 17: +//C +this.state = 24; +; + if (true) break; +if (true) break; + +case 18: +//C +this.state = 19; +; + if (true) break; + +case 19: +//C +this.state = -1; +; + //BA.debugLineNum = 76;BA.debugLine="End Sub"; +if (true) break; + + } + } + } +} +public static String _process_globals() throws Exception{ + //BA.debugLineNum = 6;BA.debugLine="Sub Process_Globals"; + //BA.debugLineNum = 7;BA.debugLine="Private rp As RuntimePermissions"; +_rp = new anywheresoftware.b4a.objects.RuntimePermissions(); + //BA.debugLineNum = 8;BA.debugLine="End Sub"; +return ""; +} +} diff --git a/Objects/src/b4a/rocklogster/starter.java b/Objects/src/b4a/rocklogster/starter.java new file mode 100644 index 0000000..6264852 --- /dev/null +++ b/Objects/src/b4a/rocklogster/starter.java @@ -0,0 +1,213 @@ +package b4a.rocklogster; + + +import anywheresoftware.b4a.BA; +import anywheresoftware.b4a.objects.ServiceHelper; +import anywheresoftware.b4a.debug.*; + +public class starter extends android.app.Service{ + public static class starter_BR extends android.content.BroadcastReceiver { + + @Override + public void onReceive(android.content.Context context, android.content.Intent intent) { + BA.LogInfo("** Receiver (starter) OnReceive **"); + android.content.Intent in = new android.content.Intent(context, starter.class); + if (intent != null) + in.putExtra("b4a_internal_intent", intent); + ServiceHelper.StarterHelper.startServiceFromReceiver (context, in, true, BA.class); + } + + } + static starter mostCurrent; + public static BA processBA; + private ServiceHelper _service; + public static Class getObject() { + return starter.class; + } + @Override + public void onCreate() { + super.onCreate(); + mostCurrent = this; + if (processBA == null) { + processBA = new BA(this, null, null, "b4a.rocklogster", "b4a.rocklogster.starter"); + if (BA.isShellModeRuntimeCheck(processBA)) { + processBA.raiseEvent2(null, true, "SHELL", false); + } + try { + Class.forName(BA.applicationContext.getPackageName() + ".main").getMethod("initializeProcessGlobals").invoke(null, null); + } catch (Exception e) { + throw new RuntimeException(e); + } + processBA.loadHtSubs(this.getClass()); + ServiceHelper.init(); + } + _service = new ServiceHelper(this); + processBA.service = this; + + if (BA.isShellModeRuntimeCheck(processBA)) { + processBA.raiseEvent2(null, true, "CREATE", true, "b4a.rocklogster.starter", processBA, _service, anywheresoftware.b4a.keywords.Common.Density); + } + if (!true && ServiceHelper.StarterHelper.startFromServiceCreate(processBA, false) == false) { + + } + else { + processBA.setActivityPaused(false); + BA.LogInfo("*** Service (starter) Create ***"); + processBA.raiseEvent(null, "service_create"); + } + processBA.runHook("oncreate", this, null); + if (true) { + ServiceHelper.StarterHelper.runWaitForLayouts(); + } + } + @Override + public void onStart(android.content.Intent intent, int startId) { + onStartCommand(intent, 0, 0); + } + @Override + public int onStartCommand(final android.content.Intent intent, int flags, int startId) { + if (ServiceHelper.StarterHelper.onStartCommand(processBA, new Runnable() { + public void run() { + handleStart(intent); + }})) + ; + else { + ServiceHelper.StarterHelper.addWaitForLayout (new Runnable() { + public void run() { + processBA.setActivityPaused(false); + BA.LogInfo("** Service (starter) Create **"); + processBA.raiseEvent(null, "service_create"); + handleStart(intent); + ServiceHelper.StarterHelper.removeWaitForLayout(); + } + }); + } + processBA.runHook("onstartcommand", this, new Object[] {intent, flags, startId}); + return android.app.Service.START_NOT_STICKY; + } + public void onTaskRemoved(android.content.Intent rootIntent) { + super.onTaskRemoved(rootIntent); + if (true) + processBA.raiseEvent(null, "service_taskremoved"); + + } + private void handleStart(android.content.Intent intent) { + BA.LogInfo("** Service (starter) Start **"); + java.lang.reflect.Method startEvent = processBA.htSubs.get("service_start"); + if (startEvent != null) { + if (startEvent.getParameterTypes().length > 0) { + anywheresoftware.b4a.objects.IntentWrapper iw = ServiceHelper.StarterHelper.handleStartIntent(intent, _service, processBA); + processBA.raiseEvent(null, "service_start", iw); + } + else { + processBA.raiseEvent(null, "service_start"); + } + } + } + + @Override + public void onDestroy() { + super.onDestroy(); + if (true) { + BA.LogInfo("** Service (starter) Destroy (ignored)**"); + } + else { + BA.LogInfo("** Service (starter) Destroy **"); + processBA.raiseEvent(null, "service_destroy"); + processBA.service = null; + mostCurrent = null; + processBA.setActivityPaused(true); + processBA.runHook("ondestroy", this, null); + } + } + +@Override + public android.os.IBinder onBind(android.content.Intent intent) { + return null; + }public anywheresoftware.b4a.keywords.Common __c = null; +public static anywheresoftware.b4a.objects.RuntimePermissions _rp = null; +public static anywheresoftware.b4a.gps.GPS _gps1 = null; +public static boolean _gpsstarted = false; +public static boolean _validgps = false; +public static anywheresoftware.b4a.gps.LocationWrapper _location2 = null; +public b4a.rocklogster.main _main = null; +public b4a.rocklogster.mapmod _mapmod = null; +public static boolean _application_error(anywheresoftware.b4a.objects.B4AException _error,String _stacktrace) throws Exception{ + //BA.debugLineNum = 48;BA.debugLine="Sub Application_Error (Error As Exception, StackTr"; + //BA.debugLineNum = 49;BA.debugLine="Return True"; +if (true) return anywheresoftware.b4a.keywords.Common.True; + //BA.debugLineNum = 50;BA.debugLine="End Sub"; +return false; +} +public static String _gps_locationchanged(anywheresoftware.b4a.gps.LocationWrapper _location1) throws Exception{ + //BA.debugLineNum = 37;BA.debugLine="Sub GPS_LocationChanged (Location1 As Location)"; + //BA.debugLineNum = 38;BA.debugLine="CallSub2(Main, \"LocationChanged\", Location1)"; +anywheresoftware.b4a.keywords.Common.CallSubNew2(processBA,(Object)(mostCurrent._main.getObject()),"LocationChanged",(Object)(_location1)); + //BA.debugLineNum = 39;BA.debugLine="Location2 = Location1"; +_location2 = _location1; + //BA.debugLineNum = 40;BA.debugLine="ValidGPS = True"; +_validgps = anywheresoftware.b4a.keywords.Common.True; + //BA.debugLineNum = 41;BA.debugLine="End Sub"; +return ""; +} +public static String _process_globals() throws Exception{ + //BA.debugLineNum = 6;BA.debugLine="Sub Process_Globals"; + //BA.debugLineNum = 7;BA.debugLine="Public rp As RuntimePermissions"; +_rp = new anywheresoftware.b4a.objects.RuntimePermissions(); + //BA.debugLineNum = 8;BA.debugLine="Public GPS1 As GPS"; +_gps1 = new anywheresoftware.b4a.gps.GPS(); + //BA.debugLineNum = 9;BA.debugLine="Private gpsStarted As Boolean"; +_gpsstarted = false; + //BA.debugLineNum = 10;BA.debugLine="Public ValidGPS As Boolean"; +_validgps = false; + //BA.debugLineNum = 11;BA.debugLine="Public Location2 As Location"; +_location2 = new anywheresoftware.b4a.gps.LocationWrapper(); + //BA.debugLineNum = 13;BA.debugLine="End Sub"; +return ""; +} +public static String _service_create() throws Exception{ + //BA.debugLineNum = 15;BA.debugLine="Sub Service_Create"; + //BA.debugLineNum = 16;BA.debugLine="GPS1.Initialize(\"GPS\")"; +_gps1.Initialize("GPS"); + //BA.debugLineNum = 17;BA.debugLine="End Sub"; +return ""; +} +public static String _service_destroy() throws Exception{ + //BA.debugLineNum = 52;BA.debugLine="Sub Service_Destroy"; + //BA.debugLineNum = 53;BA.debugLine="StopGps"; +_stopgps(); + //BA.debugLineNum = 54;BA.debugLine="End Sub"; +return ""; +} +public static String _service_start(anywheresoftware.b4a.objects.IntentWrapper _startingintent) throws Exception{ + //BA.debugLineNum = 19;BA.debugLine="Sub Service_Start (StartingIntent As Intent)"; + //BA.debugLineNum = 20;BA.debugLine="Service.StopAutomaticForeground 'Starter service"; +mostCurrent._service.StopAutomaticForeground(); + //BA.debugLineNum = 21;BA.debugLine="End Sub"; +return ""; +} +public static String _startgps() throws Exception{ + //BA.debugLineNum = 23;BA.debugLine="Public Sub StartGps"; + //BA.debugLineNum = 24;BA.debugLine="If gpsStarted = False Then"; +if (_gpsstarted==anywheresoftware.b4a.keywords.Common.False) { + //BA.debugLineNum = 25;BA.debugLine="GPS1.Start(0, 0)"; +_gps1.Start(processBA,(long) (0),(float) (0)); + //BA.debugLineNum = 26;BA.debugLine="gpsStarted = True"; +_gpsstarted = anywheresoftware.b4a.keywords.Common.True; + }; + //BA.debugLineNum = 28;BA.debugLine="End Sub"; +return ""; +} +public static String _stopgps() throws Exception{ + //BA.debugLineNum = 30;BA.debugLine="Public Sub StopGps"; + //BA.debugLineNum = 31;BA.debugLine="If gpsStarted Then"; +if (_gpsstarted) { + //BA.debugLineNum = 32;BA.debugLine="GPS1.Stop"; +_gps1.Stop(); + //BA.debugLineNum = 33;BA.debugLine="gpsStarted = False"; +_gpsstarted = anywheresoftware.b4a.keywords.Common.False; + }; + //BA.debugLineNum = 35;BA.debugLine="End Sub"; +return ""; +} +}