Mobail_App
This commit is contained in:
commit
f537db01c9
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
/.vs
|
||||
/bin
|
||||
/obj
|
14
App.xaml
Normal file
14
App.xaml
Normal file
@ -0,0 +1,14 @@
|
||||
<?xml version = "1.0" encoding = "UTF-8" ?>
|
||||
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
xmlns:local="clr-namespace:MobailApp"
|
||||
x:Class="MobailApp.App">
|
||||
<Application.Resources>
|
||||
<ResourceDictionary>
|
||||
<ResourceDictionary.MergedDictionaries>
|
||||
<ResourceDictionary Source="Resources/Styles/Colors.xaml" />
|
||||
<ResourceDictionary Source="Resources/Styles/Styles.xaml" />
|
||||
</ResourceDictionary.MergedDictionaries>
|
||||
</ResourceDictionary>
|
||||
</Application.Resources>
|
||||
</Application>
|
12
App.xaml.cs
Normal file
12
App.xaml.cs
Normal file
@ -0,0 +1,12 @@
|
||||
namespace MobailApp
|
||||
{
|
||||
public partial class App : Application
|
||||
{
|
||||
public App()
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
MainPage = new AppShell();
|
||||
}
|
||||
}
|
||||
}
|
15
AppShell.xaml
Normal file
15
AppShell.xaml
Normal file
@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<Shell
|
||||
x:Class="MobailApp.AppShell"
|
||||
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
xmlns:local="clr-namespace:MobailApp"
|
||||
Shell.FlyoutBehavior="Disabled"
|
||||
Title="MobailApp">
|
||||
|
||||
<ShellContent
|
||||
Title="Home"
|
||||
ContentTemplate="{DataTemplate local:MainPage}"
|
||||
Route="MainPage" />
|
||||
|
||||
</Shell>
|
10
AppShell.xaml.cs
Normal file
10
AppShell.xaml.cs
Normal file
@ -0,0 +1,10 @@
|
||||
namespace MobailApp
|
||||
{
|
||||
public partial class AppShell : Shell
|
||||
{
|
||||
public AppShell()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
36
MainPage.xaml
Normal file
36
MainPage.xaml
Normal file
@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="MobailApp.MainPage">
|
||||
|
||||
<ScrollView>
|
||||
<VerticalStackLayout
|
||||
Padding="30,0"
|
||||
Spacing="25">
|
||||
<Image
|
||||
Source="dotnet_bot.png"
|
||||
HeightRequest="185"
|
||||
Aspect="AspectFit"
|
||||
SemanticProperties.Description="dot net bot in a race car number eight" />
|
||||
|
||||
<Label
|
||||
Text="Hello, World!"
|
||||
Style="{StaticResource Headline}"
|
||||
SemanticProperties.HeadingLevel="Level1" />
|
||||
|
||||
<Label
|
||||
Text="Welcome to .NET Multi-platform App UI"
|
||||
Style="{StaticResource SubHeadline}"
|
||||
SemanticProperties.HeadingLevel="Level2"
|
||||
SemanticProperties.Description="Welcome to dot net Multi platform App U I" />
|
||||
|
||||
<Button
|
||||
x:Name="CounterBtn"
|
||||
Text="Click me"
|
||||
SemanticProperties.Hint="Counts the number of times you click"
|
||||
Clicked="OnCounterClicked"
|
||||
HorizontalOptions="Fill" />
|
||||
</VerticalStackLayout>
|
||||
</ScrollView>
|
||||
|
||||
</ContentPage>
|
25
MainPage.xaml.cs
Normal file
25
MainPage.xaml.cs
Normal file
@ -0,0 +1,25 @@
|
||||
namespace MobailApp
|
||||
{
|
||||
public partial class MainPage : ContentPage
|
||||
{
|
||||
int count = 0;
|
||||
|
||||
public MainPage()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void OnCounterClicked(object sender, EventArgs e)
|
||||
{
|
||||
count++;
|
||||
|
||||
if (count == 1)
|
||||
CounterBtn.Text = $"Clicked {count} time";
|
||||
else
|
||||
CounterBtn.Text = $"Clicked {count} times";
|
||||
|
||||
SemanticScreenReader.Announce(CounterBtn.Text);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
25
MauiProgram.cs
Normal file
25
MauiProgram.cs
Normal file
@ -0,0 +1,25 @@
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace MobailApp
|
||||
{
|
||||
public static class MauiProgram
|
||||
{
|
||||
public static MauiApp CreateMauiApp()
|
||||
{
|
||||
var builder = MauiApp.CreateBuilder();
|
||||
builder
|
||||
.UseMauiApp<App>()
|
||||
.ConfigureFonts(fonts =>
|
||||
{
|
||||
fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
|
||||
fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
|
||||
});
|
||||
|
||||
#if DEBUG
|
||||
builder.Logging.AddDebug();
|
||||
#endif
|
||||
|
||||
return builder.Build();
|
||||
}
|
||||
}
|
||||
}
|
65
MobailApp.csproj
Normal file
65
MobailApp.csproj
Normal file
@ -0,0 +1,65 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net8.0-android;net8.0-ios;net8.0-maccatalyst</TargetFrameworks>
|
||||
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net8.0-windows10.0.19041.0</TargetFrameworks>
|
||||
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
|
||||
<!-- <TargetFrameworks>$(TargetFrameworks);net8.0-tizen</TargetFrameworks> -->
|
||||
|
||||
<!-- Note for MacCatalyst:
|
||||
The default runtime is maccatalyst-x64, except in Release config, in which case the default is maccatalyst-x64;maccatalyst-arm64.
|
||||
When specifying both architectures, use the plural <RuntimeIdentifiers> instead of the singular <RuntimeIdentifier>.
|
||||
The Mac App Store will NOT accept apps with ONLY maccatalyst-arm64 indicated;
|
||||
either BOTH runtimes must be indicated or ONLY macatalyst-x64. -->
|
||||
<!-- For example: <RuntimeIdentifiers>maccatalyst-x64;maccatalyst-arm64</RuntimeIdentifiers> -->
|
||||
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>MobailApp</RootNamespace>
|
||||
<UseMaui>true</UseMaui>
|
||||
<SingleProject>true</SingleProject>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
|
||||
<!-- Display name -->
|
||||
<ApplicationTitle>MobailApp</ApplicationTitle>
|
||||
|
||||
<!-- App Identifier -->
|
||||
<ApplicationId>com.companyname.mobailapp</ApplicationId>
|
||||
|
||||
<!-- Versions -->
|
||||
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
|
||||
<ApplicationVersion>1</ApplicationVersion>
|
||||
|
||||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion>
|
||||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">13.1</SupportedOSPlatformVersion>
|
||||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>
|
||||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion>
|
||||
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
|
||||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<!-- App Icon -->
|
||||
<MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" />
|
||||
|
||||
<!-- Splash Screen -->
|
||||
<MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#512BD4" BaseSize="128,128" />
|
||||
|
||||
<!-- Images -->
|
||||
<MauiImage Include="Resources\Images\*" />
|
||||
<MauiImage Update="Resources\Images\dotnet_bot.png" Resize="True" BaseSize="300,185" />
|
||||
|
||||
<!-- Custom Fonts -->
|
||||
<MauiFont Include="Resources\Fonts\*" />
|
||||
|
||||
<!-- Raw Assets (also remove the "Resources\Raw" prefix) -->
|
||||
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
|
||||
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="$(MauiVersion)" />
|
||||
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
31
MobailApp.csproj.user
Normal file
31
MobailApp.csproj.user
Normal file
@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<IsFirstTimeProjectOpen>False</IsFirstTimeProjectOpen>
|
||||
<ActiveDebugFramework>net8.0-windows10.0.19041.0</ActiveDebugFramework>
|
||||
<ActiveDebugProfile>Windows Machine</ActiveDebugProfile>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<None Update="App.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
</None>
|
||||
<None Update="AppShell.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
</None>
|
||||
<None Update="MainPage.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
</None>
|
||||
<None Update="Platforms\Windows\App.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
</None>
|
||||
<None Update="Platforms\Windows\Package.appxmanifest">
|
||||
<SubType>Designer</SubType>
|
||||
</None>
|
||||
<None Update="Resources\Styles\Colors.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
</None>
|
||||
<None Update="Resources\Styles\Styles.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
</Project>
|
27
MobailApp.sln
Normal file
27
MobailApp.sln
Normal file
@ -0,0 +1,27 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.9.34607.119
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MobailApp", "MobailApp.csproj", "{49D63AC7-B2B0-4BB2-BC40-6FD0477ED191}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{49D63AC7-B2B0-4BB2-BC40-6FD0477ED191}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{49D63AC7-B2B0-4BB2-BC40-6FD0477ED191}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{49D63AC7-B2B0-4BB2-BC40-6FD0477ED191}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
|
||||
{49D63AC7-B2B0-4BB2-BC40-6FD0477ED191}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{49D63AC7-B2B0-4BB2-BC40-6FD0477ED191}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{49D63AC7-B2B0-4BB2-BC40-6FD0477ED191}.Release|Any CPU.Deploy.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {B2E511CD-D5FA-4A90-87C5-2D1E94CC8FB9}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
6
Platforms/Android/AndroidManifest.xml
Normal file
6
Platforms/Android/AndroidManifest.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<application android:allowBackup="true" android:icon="@mipmap/appicon" android:roundIcon="@mipmap/appicon_round" android:supportsRtl="true"></application>
|
||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
</manifest>
|
11
Platforms/Android/MainActivity.cs
Normal file
11
Platforms/Android/MainActivity.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using Android.App;
|
||||
using Android.Content.PM;
|
||||
using Android.OS;
|
||||
|
||||
namespace MobailApp
|
||||
{
|
||||
[Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
|
||||
public class MainActivity : MauiAppCompatActivity
|
||||
{
|
||||
}
|
||||
}
|
16
Platforms/Android/MainApplication.cs
Normal file
16
Platforms/Android/MainApplication.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using Android.App;
|
||||
using Android.Runtime;
|
||||
|
||||
namespace MobailApp
|
||||
{
|
||||
[Application]
|
||||
public class MainApplication : MauiApplication
|
||||
{
|
||||
public MainApplication(IntPtr handle, JniHandleOwnership ownership)
|
||||
: base(handle, ownership)
|
||||
{
|
||||
}
|
||||
|
||||
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
|
||||
}
|
||||
}
|
6
Platforms/Android/Resources/values/colors.xml
Normal file
6
Platforms/Android/Resources/values/colors.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="colorPrimary">#512BD4</color>
|
||||
<color name="colorPrimaryDark">#2B0B98</color>
|
||||
<color name="colorAccent">#2B0B98</color>
|
||||
</resources>
|
10
Platforms/MacCatalyst/AppDelegate.cs
Normal file
10
Platforms/MacCatalyst/AppDelegate.cs
Normal file
@ -0,0 +1,10 @@
|
||||
using Foundation;
|
||||
|
||||
namespace MobailApp
|
||||
{
|
||||
[Register("AppDelegate")]
|
||||
public class AppDelegate : MauiUIApplicationDelegate
|
||||
{
|
||||
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
|
||||
}
|
||||
}
|
14
Platforms/MacCatalyst/Entitlements.plist
Normal file
14
Platforms/MacCatalyst/Entitlements.plist
Normal file
@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<!-- See https://aka.ms/maui-publish-app-store#add-entitlements for more information about adding entitlements.-->
|
||||
<dict>
|
||||
<!-- App Sandbox must be enabled to distribute a MacCatalyst app through the Mac App Store. -->
|
||||
<key>com.apple.security.app-sandbox</key>
|
||||
<true/>
|
||||
<!-- When App Sandbox is enabled, this value is required to open outgoing network connections. -->
|
||||
<key>com.apple.security.network.client</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</plist>
|
||||
|
38
Platforms/MacCatalyst/Info.plist
Normal file
38
Platforms/MacCatalyst/Info.plist
Normal file
@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<!-- The Mac App Store requires you specify if the app uses encryption. -->
|
||||
<!-- Please consult https://developer.apple.com/documentation/bundleresources/information_property_list/itsappusesnonexemptencryption -->
|
||||
<!-- <key>ITSAppUsesNonExemptEncryption</key> -->
|
||||
<!-- Please indicate <true/> or <false/> here. -->
|
||||
|
||||
<!-- Specify the category for your app here. -->
|
||||
<!-- Please consult https://developer.apple.com/documentation/bundleresources/information_property_list/lsapplicationcategorytype -->
|
||||
<!-- <key>LSApplicationCategoryType</key> -->
|
||||
<!-- <string>public.app-category.YOUR-CATEGORY-HERE</string> -->
|
||||
<key>UIDeviceFamily</key>
|
||||
<array>
|
||||
<integer>2</integer>
|
||||
</array>
|
||||
<key>UIRequiredDeviceCapabilities</key>
|
||||
<array>
|
||||
<string>arm64</string>
|
||||
</array>
|
||||
<key>UISupportedInterfaceOrientations</key>
|
||||
<array>
|
||||
<string>UIInterfaceOrientationPortrait</string>
|
||||
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||
</array>
|
||||
<key>UISupportedInterfaceOrientations~ipad</key>
|
||||
<array>
|
||||
<string>UIInterfaceOrientationPortrait</string>
|
||||
<string>UIInterfaceOrientationPortraitUpsideDown</string>
|
||||
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||
</array>
|
||||
<key>XSAppIconAssets</key>
|
||||
<string>Assets.xcassets/appicon.appiconset</string>
|
||||
</dict>
|
||||
</plist>
|
17
Platforms/MacCatalyst/Program.cs
Normal file
17
Platforms/MacCatalyst/Program.cs
Normal file
@ -0,0 +1,17 @@
|
||||
using ObjCRuntime;
|
||||
|
||||
using UIKit;
|
||||
|
||||
namespace MobailApp
|
||||
{
|
||||
public class Program
|
||||
{
|
||||
// This is the main entry point of the application.
|
||||
static void Main(string[] args)
|
||||
{
|
||||
// if you want to use a different Application Delegate class from "AppDelegate"
|
||||
// you can specify it here.
|
||||
UIApplication.Main(args, null, typeof(AppDelegate));
|
||||
}
|
||||
}
|
||||
}
|
18
Platforms/Tizen/Main.cs
Normal file
18
Platforms/Tizen/Main.cs
Normal file
@ -0,0 +1,18 @@
|
||||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.Hosting;
|
||||
|
||||
using System;
|
||||
|
||||
namespace MobailApp
|
||||
{
|
||||
internal class Program : MauiApplication
|
||||
{
|
||||
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
|
||||
|
||||
static void Main(string[] args)
|
||||
{
|
||||
var app = new Program();
|
||||
app.Run(args);
|
||||
}
|
||||
}
|
||||
}
|
15
Platforms/Tizen/tizen-manifest.xml
Normal file
15
Platforms/Tizen/tizen-manifest.xml
Normal file
@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest package="maui-application-id-placeholder" version="0.0.0" api-version="8" xmlns="http://tizen.org/ns/packages">
|
||||
<profile name="common" />
|
||||
<ui-application appid="maui-application-id-placeholder" exec="MobailApp.dll" multiple="false" nodisplay="false" taskmanage="true" type="dotnet" launch_mode="single">
|
||||
<label>maui-application-title-placeholder</label>
|
||||
<icon>maui-appicon-placeholder</icon>
|
||||
<metadata key="http://tizen.org/metadata/prefer_dotnet_aot" value="true" />
|
||||
</ui-application>
|
||||
<shortcut-list />
|
||||
<privileges>
|
||||
<privilege>http://tizen.org/privilege/internet</privilege>
|
||||
</privileges>
|
||||
<dependencies />
|
||||
<provides-appdefined-privileges />
|
||||
</manifest>
|
8
Platforms/Windows/App.xaml
Normal file
8
Platforms/Windows/App.xaml
Normal file
@ -0,0 +1,8 @@
|
||||
<maui:MauiWinUIApplication
|
||||
x:Class="MobailApp.WinUI.App"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:maui="using:Microsoft.Maui"
|
||||
xmlns:local="using:MobailApp.WinUI">
|
||||
|
||||
</maui:MauiWinUIApplication>
|
25
Platforms/Windows/App.xaml.cs
Normal file
25
Platforms/Windows/App.xaml.cs
Normal file
@ -0,0 +1,25 @@
|
||||
using Microsoft.UI.Xaml;
|
||||
|
||||
// To learn more about WinUI, the WinUI project structure,
|
||||
// and more about our project templates, see: http://aka.ms/winui-project-info.
|
||||
|
||||
namespace MobailApp.WinUI
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides application-specific behavior to supplement the default Application class.
|
||||
/// </summary>
|
||||
public partial class App : MauiWinUIApplication
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes the singleton application object. This is the first line of authored code
|
||||
/// executed, and as such is the logical equivalent of main() or WinMain().
|
||||
/// </summary>
|
||||
public App()
|
||||
{
|
||||
this.InitializeComponent();
|
||||
}
|
||||
|
||||
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
|
||||
}
|
||||
|
||||
}
|
46
Platforms/Windows/Package.appxmanifest
Normal file
46
Platforms/Windows/Package.appxmanifest
Normal file
@ -0,0 +1,46 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Package
|
||||
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
|
||||
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
|
||||
xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
|
||||
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
|
||||
IgnorableNamespaces="uap rescap">
|
||||
|
||||
<Identity Name="maui-package-name-placeholder" Publisher="CN=User Name" Version="0.0.0.0" />
|
||||
|
||||
<mp:PhoneIdentity PhoneProductId="BDAEBBBF-CC94-4233-8145-69DEF195D1DE" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
|
||||
|
||||
<Properties>
|
||||
<DisplayName>$placeholder$</DisplayName>
|
||||
<PublisherDisplayName>User Name</PublisherDisplayName>
|
||||
<Logo>$placeholder$.png</Logo>
|
||||
</Properties>
|
||||
|
||||
<Dependencies>
|
||||
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
|
||||
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
|
||||
</Dependencies>
|
||||
|
||||
<Resources>
|
||||
<Resource Language="x-generate" />
|
||||
</Resources>
|
||||
|
||||
<Applications>
|
||||
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="$targetentrypoint$">
|
||||
<uap:VisualElements
|
||||
DisplayName="$placeholder$"
|
||||
Description="$placeholder$"
|
||||
Square150x150Logo="$placeholder$.png"
|
||||
Square44x44Logo="$placeholder$.png"
|
||||
BackgroundColor="transparent">
|
||||
<uap:DefaultTile Square71x71Logo="$placeholder$.png" Wide310x150Logo="$placeholder$.png" Square310x310Logo="$placeholder$.png" />
|
||||
<uap:SplashScreen Image="$placeholder$.png" />
|
||||
</uap:VisualElements>
|
||||
</Application>
|
||||
</Applications>
|
||||
|
||||
<Capabilities>
|
||||
<rescap:Capability Name="runFullTrust" />
|
||||
</Capabilities>
|
||||
|
||||
</Package>
|
15
Platforms/Windows/app.manifest
Normal file
15
Platforms/Windows/app.manifest
Normal file
@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<assemblyIdentity version="1.0.0.0" name="MobailApp.WinUI.app"/>
|
||||
|
||||
<application xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<windowsSettings>
|
||||
<!-- The combination of below two tags have the following effect:
|
||||
1) Per-Monitor for >= Windows 10 Anniversary Update
|
||||
2) System < Windows 10 Anniversary Update
|
||||
-->
|
||||
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true/PM</dpiAware>
|
||||
<dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2, PerMonitor</dpiAwareness>
|
||||
</windowsSettings>
|
||||
</application>
|
||||
</assembly>
|
10
Platforms/iOS/AppDelegate.cs
Normal file
10
Platforms/iOS/AppDelegate.cs
Normal file
@ -0,0 +1,10 @@
|
||||
using Foundation;
|
||||
|
||||
namespace MobailApp
|
||||
{
|
||||
[Register("AppDelegate")]
|
||||
public class AppDelegate : MauiUIApplicationDelegate
|
||||
{
|
||||
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
|
||||
}
|
||||
}
|
32
Platforms/iOS/Info.plist
Normal file
32
Platforms/iOS/Info.plist
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>LSRequiresIPhoneOS</key>
|
||||
<true/>
|
||||
<key>UIDeviceFamily</key>
|
||||
<array>
|
||||
<integer>1</integer>
|
||||
<integer>2</integer>
|
||||
</array>
|
||||
<key>UIRequiredDeviceCapabilities</key>
|
||||
<array>
|
||||
<string>arm64</string>
|
||||
</array>
|
||||
<key>UISupportedInterfaceOrientations</key>
|
||||
<array>
|
||||
<string>UIInterfaceOrientationPortrait</string>
|
||||
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||
</array>
|
||||
<key>UISupportedInterfaceOrientations~ipad</key>
|
||||
<array>
|
||||
<string>UIInterfaceOrientationPortrait</string>
|
||||
<string>UIInterfaceOrientationPortraitUpsideDown</string>
|
||||
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||
</array>
|
||||
<key>XSAppIconAssets</key>
|
||||
<string>Assets.xcassets/appicon.appiconset</string>
|
||||
</dict>
|
||||
</plist>
|
17
Platforms/iOS/Program.cs
Normal file
17
Platforms/iOS/Program.cs
Normal file
@ -0,0 +1,17 @@
|
||||
using ObjCRuntime;
|
||||
|
||||
using UIKit;
|
||||
|
||||
namespace MobailApp
|
||||
{
|
||||
public class Program
|
||||
{
|
||||
// This is the main entry point of the application.
|
||||
static void Main(string[] args)
|
||||
{
|
||||
// if you want to use a different Application Delegate class from "AppDelegate"
|
||||
// you can specify it here.
|
||||
UIApplication.Main(args, null, typeof(AppDelegate));
|
||||
}
|
||||
}
|
||||
}
|
8
Properties/launchSettings.json
Normal file
8
Properties/launchSettings.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"profiles": {
|
||||
"Windows Machine": {
|
||||
"commandName": "MsixPackage",
|
||||
"nativeDebugging": false
|
||||
}
|
||||
}
|
||||
}
|
4
Resources/AppIcon/appicon.svg
Normal file
4
Resources/AppIcon/appicon.svg
Normal file
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="456" height="456" viewBox="0 0 456 456" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="0" y="0" width="456" height="456" fill="#512BD4" />
|
||||
</svg>
|
After Width: | Height: | Size: 228 B |
8
Resources/AppIcon/appiconfg.svg
Normal file
8
Resources/AppIcon/appiconfg.svg
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="456" height="456" viewBox="0 0 456 456" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
||||
<path d="m 105.50037,281.60863 c -2.70293,0 -5.00091,-0.90042 -6.893127,-2.70209 -1.892214,-1.84778 -2.837901,-4.04181 -2.837901,-6.58209 0,-2.58722 0.945687,-4.80389 2.837901,-6.65167 1.892217,-1.84778 4.190197,-2.77167 6.893127,-2.77167 2.74819,0 5.06798,0.92389 6.96019,2.77167 1.93749,1.84778 2.90581,4.06445 2.90581,6.65167 0,2.54028 -0.96832,4.73431 -2.90581,6.58209 -1.89221,1.80167 -4.212,2.70209 -6.96019,2.70209 z" style="fill:#ffffff;fill-rule:nonzero;stroke-width:0.838376" />
|
||||
<path d="M 213.56111,280.08446 H 195.99044 L 149.69953,207.0544 c -1.17121,-1.84778 -2.14037,-3.76515 -2.90581,-5.75126 h -0.40578 c 0.36051,2.12528 0.54076,6.67515 0.54076,13.6496 v 65.13172 h -15.54349 v -99.36009 h 18.71925 l 44.7374,71.29798 c 1.89222,2.95695 3.1087,4.98917 3.64945,6.09751 h 0.26996 c -0.45021,-2.6325 -0.67573,-7.09015 -0.67573,-13.37293 v -64.02256 h 15.47557 z" style="fill:#ffffff;fill-rule:nonzero;stroke-width:0.838376" />
|
||||
<path d="m 289.25134,280.08446 h -54.40052 v -99.36009 h 52.23835 v 13.99669 h -36.15411 v 28.13085 h 33.31621 v 13.9271 h -33.31621 v 29.37835 h 38.31628 z" style="fill:#ffffff;fill-rule:nonzero;stroke-width:0.838376" />
|
||||
<path d="M 366.56466,194.72106 H 338.7222 v 85.3634 h -16.08423 v -85.3634 h -27.77455 v -13.99669 h 71.70124 z" style="fill:#ffffff;fill-rule:nonzero;stroke-width:0.838376" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
BIN
Resources/Fonts/OpenSans-Regular.ttf
Normal file
BIN
Resources/Fonts/OpenSans-Regular.ttf
Normal file
Binary file not shown.
BIN
Resources/Fonts/OpenSans-Semibold.ttf
Normal file
BIN
Resources/Fonts/OpenSans-Semibold.ttf
Normal file
Binary file not shown.
BIN
Resources/Images/dotnet_bot.png
Normal file
BIN
Resources/Images/dotnet_bot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 68 KiB |
15
Resources/Raw/AboutAssets.txt
Normal file
15
Resources/Raw/AboutAssets.txt
Normal file
@ -0,0 +1,15 @@
|
||||
Any raw assets you want to be deployed with your application can be placed in
|
||||
this directory (and child directories). Deployment of the asset to your application
|
||||
is automatically handled by the following `MauiAsset` Build Action within your `.csproj`.
|
||||
|
||||
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
|
||||
|
||||
These files will be deployed with you package and will be accessible using Essentials:
|
||||
|
||||
async Task LoadMauiAsset()
|
||||
{
|
||||
using var stream = await FileSystem.OpenAppPackageFileAsync("AboutAssets.txt");
|
||||
using var reader = new StreamReader(stream);
|
||||
|
||||
var contents = reader.ReadToEnd();
|
||||
}
|
8
Resources/Splash/splash.svg
Normal file
8
Resources/Splash/splash.svg
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="456" height="456" viewBox="0 0 456 456" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
||||
<path d="m 105.50037,281.60863 c -2.70293,0 -5.00091,-0.90042 -6.893127,-2.70209 -1.892214,-1.84778 -2.837901,-4.04181 -2.837901,-6.58209 0,-2.58722 0.945687,-4.80389 2.837901,-6.65167 1.892217,-1.84778 4.190197,-2.77167 6.893127,-2.77167 2.74819,0 5.06798,0.92389 6.96019,2.77167 1.93749,1.84778 2.90581,4.06445 2.90581,6.65167 0,2.54028 -0.96832,4.73431 -2.90581,6.58209 -1.89221,1.80167 -4.212,2.70209 -6.96019,2.70209 z" style="fill:#ffffff;fill-rule:nonzero;stroke-width:0.838376" />
|
||||
<path d="M 213.56111,280.08446 H 195.99044 L 149.69953,207.0544 c -1.17121,-1.84778 -2.14037,-3.76515 -2.90581,-5.75126 h -0.40578 c 0.36051,2.12528 0.54076,6.67515 0.54076,13.6496 v 65.13172 h -15.54349 v -99.36009 h 18.71925 l 44.7374,71.29798 c 1.89222,2.95695 3.1087,4.98917 3.64945,6.09751 h 0.26996 c -0.45021,-2.6325 -0.67573,-7.09015 -0.67573,-13.37293 v -64.02256 h 15.47557 z" style="fill:#ffffff;fill-rule:nonzero;stroke-width:0.838376" />
|
||||
<path d="m 289.25134,280.08446 h -54.40052 v -99.36009 h 52.23835 v 13.99669 h -36.15411 v 28.13085 h 33.31621 v 13.9271 h -33.31621 v 29.37835 h 38.31628 z" style="fill:#ffffff;fill-rule:nonzero;stroke-width:0.838376" />
|
||||
<path d="M 366.56466,194.72106 H 338.7222 v 85.3634 h -16.08423 v -85.3634 h -27.77455 v -13.99669 h 71.70124 z" style="fill:#ffffff;fill-rule:nonzero;stroke-width:0.838376" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
45
Resources/Styles/Colors.xaml
Normal file
45
Resources/Styles/Colors.xaml
Normal file
@ -0,0 +1,45 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<?xaml-comp compile="true" ?>
|
||||
<ResourceDictionary
|
||||
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
|
||||
|
||||
<!-- Note: For Android please see also Platforms\Android\Resources\values\colors.xml -->
|
||||
|
||||
<Color x:Key="Primary">#512BD4</Color>
|
||||
<Color x:Key="PrimaryDark">#ac99ea</Color>
|
||||
<Color x:Key="PrimaryDarkText">#242424</Color>
|
||||
<Color x:Key="Secondary">#DFD8F7</Color>
|
||||
<Color x:Key="SecondaryDarkText">#9880e5</Color>
|
||||
<Color x:Key="Tertiary">#2B0B98</Color>
|
||||
|
||||
<Color x:Key="White">White</Color>
|
||||
<Color x:Key="Black">Black</Color>
|
||||
<Color x:Key="Magenta">#D600AA</Color>
|
||||
<Color x:Key="MidnightBlue">#190649</Color>
|
||||
<Color x:Key="OffBlack">#1f1f1f</Color>
|
||||
|
||||
<Color x:Key="Gray100">#E1E1E1</Color>
|
||||
<Color x:Key="Gray200">#C8C8C8</Color>
|
||||
<Color x:Key="Gray300">#ACACAC</Color>
|
||||
<Color x:Key="Gray400">#919191</Color>
|
||||
<Color x:Key="Gray500">#6E6E6E</Color>
|
||||
<Color x:Key="Gray600">#404040</Color>
|
||||
<Color x:Key="Gray900">#212121</Color>
|
||||
<Color x:Key="Gray950">#141414</Color>
|
||||
|
||||
<SolidColorBrush x:Key="PrimaryBrush" Color="{StaticResource Primary}"/>
|
||||
<SolidColorBrush x:Key="SecondaryBrush" Color="{StaticResource Secondary}"/>
|
||||
<SolidColorBrush x:Key="TertiaryBrush" Color="{StaticResource Tertiary}"/>
|
||||
<SolidColorBrush x:Key="WhiteBrush" Color="{StaticResource White}"/>
|
||||
<SolidColorBrush x:Key="BlackBrush" Color="{StaticResource Black}"/>
|
||||
|
||||
<SolidColorBrush x:Key="Gray100Brush" Color="{StaticResource Gray100}"/>
|
||||
<SolidColorBrush x:Key="Gray200Brush" Color="{StaticResource Gray200}"/>
|
||||
<SolidColorBrush x:Key="Gray300Brush" Color="{StaticResource Gray300}"/>
|
||||
<SolidColorBrush x:Key="Gray400Brush" Color="{StaticResource Gray400}"/>
|
||||
<SolidColorBrush x:Key="Gray500Brush" Color="{StaticResource Gray500}"/>
|
||||
<SolidColorBrush x:Key="Gray600Brush" Color="{StaticResource Gray600}"/>
|
||||
<SolidColorBrush x:Key="Gray900Brush" Color="{StaticResource Gray900}"/>
|
||||
<SolidColorBrush x:Key="Gray950Brush" Color="{StaticResource Gray950}"/>
|
||||
</ResourceDictionary>
|
426
Resources/Styles/Styles.xaml
Normal file
426
Resources/Styles/Styles.xaml
Normal file
@ -0,0 +1,426 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<?xaml-comp compile="true" ?>
|
||||
<ResourceDictionary
|
||||
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
|
||||
|
||||
<Style TargetType="ActivityIndicator">
|
||||
<Setter Property="Color" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
||||
</Style>
|
||||
|
||||
<Style TargetType="IndicatorView">
|
||||
<Setter Property="IndicatorColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}"/>
|
||||
<Setter Property="SelectedIndicatorColor" Value="{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray100}}"/>
|
||||
</Style>
|
||||
|
||||
<Style TargetType="Border">
|
||||
<Setter Property="Stroke" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}" />
|
||||
<Setter Property="StrokeShape" Value="Rectangle"/>
|
||||
<Setter Property="StrokeThickness" Value="1"/>
|
||||
</Style>
|
||||
|
||||
<Style TargetType="BoxView">
|
||||
<Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray200}}" />
|
||||
</Style>
|
||||
|
||||
<Style TargetType="Button">
|
||||
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource PrimaryDarkText}}" />
|
||||
<Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource PrimaryDark}}" />
|
||||
<Setter Property="FontFamily" Value="OpenSansRegular"/>
|
||||
<Setter Property="FontSize" Value="14"/>
|
||||
<Setter Property="BorderWidth" Value="0"/>
|
||||
<Setter Property="CornerRadius" Value="8"/>
|
||||
<Setter Property="Padding" Value="14,10"/>
|
||||
<Setter Property="MinimumHeightRequest" Value="44"/>
|
||||
<Setter Property="MinimumWidthRequest" Value="44"/>
|
||||
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||
<VisualStateGroupList>
|
||||
<VisualStateGroup x:Name="CommonStates">
|
||||
<VisualState x:Name="Normal" />
|
||||
<VisualState x:Name="Disabled">
|
||||
<VisualState.Setters>
|
||||
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray200}}" />
|
||||
<Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray600}}" />
|
||||
</VisualState.Setters>
|
||||
</VisualState>
|
||||
<VisualState x:Name="PointerOver" />
|
||||
</VisualStateGroup>
|
||||
</VisualStateGroupList>
|
||||
</Setter>
|
||||
</Style>
|
||||
|
||||
<Style TargetType="CheckBox">
|
||||
<Setter Property="Color" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
||||
<Setter Property="MinimumHeightRequest" Value="44"/>
|
||||
<Setter Property="MinimumWidthRequest" Value="44"/>
|
||||
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||
<VisualStateGroupList>
|
||||
<VisualStateGroup x:Name="CommonStates">
|
||||
<VisualState x:Name="Normal" />
|
||||
<VisualState x:Name="Disabled">
|
||||
<VisualState.Setters>
|
||||
<Setter Property="Color" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||
</VisualState.Setters>
|
||||
</VisualState>
|
||||
</VisualStateGroup>
|
||||
</VisualStateGroupList>
|
||||
</Setter>
|
||||
</Style>
|
||||
|
||||
<Style TargetType="DatePicker">
|
||||
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}" />
|
||||
<Setter Property="BackgroundColor" Value="Transparent" />
|
||||
<Setter Property="FontFamily" Value="OpenSansRegular"/>
|
||||
<Setter Property="FontSize" Value="14"/>
|
||||
<Setter Property="MinimumHeightRequest" Value="44"/>
|
||||
<Setter Property="MinimumWidthRequest" Value="44"/>
|
||||
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||
<VisualStateGroupList>
|
||||
<VisualStateGroup x:Name="CommonStates">
|
||||
<VisualState x:Name="Normal" />
|
||||
<VisualState x:Name="Disabled">
|
||||
<VisualState.Setters>
|
||||
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}" />
|
||||
</VisualState.Setters>
|
||||
</VisualState>
|
||||
</VisualStateGroup>
|
||||
</VisualStateGroupList>
|
||||
</Setter>
|
||||
</Style>
|
||||
|
||||
<Style TargetType="Editor">
|
||||
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource White}}" />
|
||||
<Setter Property="BackgroundColor" Value="Transparent" />
|
||||
<Setter Property="FontFamily" Value="OpenSansRegular"/>
|
||||
<Setter Property="FontSize" Value="14" />
|
||||
<Setter Property="PlaceholderColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}" />
|
||||
<Setter Property="MinimumHeightRequest" Value="44"/>
|
||||
<Setter Property="MinimumWidthRequest" Value="44"/>
|
||||
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||
<VisualStateGroupList>
|
||||
<VisualStateGroup x:Name="CommonStates">
|
||||
<VisualState x:Name="Normal" />
|
||||
<VisualState x:Name="Disabled">
|
||||
<VisualState.Setters>
|
||||
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||
</VisualState.Setters>
|
||||
</VisualState>
|
||||
</VisualStateGroup>
|
||||
</VisualStateGroupList>
|
||||
</Setter>
|
||||
</Style>
|
||||
|
||||
<Style TargetType="Entry">
|
||||
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource White}}" />
|
||||
<Setter Property="BackgroundColor" Value="Transparent" />
|
||||
<Setter Property="FontFamily" Value="OpenSansRegular"/>
|
||||
<Setter Property="FontSize" Value="14" />
|
||||
<Setter Property="PlaceholderColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}" />
|
||||
<Setter Property="MinimumHeightRequest" Value="44"/>
|
||||
<Setter Property="MinimumWidthRequest" Value="44"/>
|
||||
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||
<VisualStateGroupList>
|
||||
<VisualStateGroup x:Name="CommonStates">
|
||||
<VisualState x:Name="Normal" />
|
||||
<VisualState x:Name="Disabled">
|
||||
<VisualState.Setters>
|
||||
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||
</VisualState.Setters>
|
||||
</VisualState>
|
||||
</VisualStateGroup>
|
||||
</VisualStateGroupList>
|
||||
</Setter>
|
||||
</Style>
|
||||
|
||||
<Style TargetType="Frame">
|
||||
<Setter Property="HasShadow" Value="False" />
|
||||
<Setter Property="BorderColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray950}}" />
|
||||
<Setter Property="CornerRadius" Value="8" />
|
||||
</Style>
|
||||
|
||||
<Style TargetType="ImageButton">
|
||||
<Setter Property="Opacity" Value="1" />
|
||||
<Setter Property="BorderColor" Value="Transparent"/>
|
||||
<Setter Property="BorderWidth" Value="0"/>
|
||||
<Setter Property="CornerRadius" Value="0"/>
|
||||
<Setter Property="MinimumHeightRequest" Value="44"/>
|
||||
<Setter Property="MinimumWidthRequest" Value="44"/>
|
||||
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||
<VisualStateGroupList>
|
||||
<VisualStateGroup x:Name="CommonStates">
|
||||
<VisualState x:Name="Normal" />
|
||||
<VisualState x:Name="Disabled">
|
||||
<VisualState.Setters>
|
||||
<Setter Property="Opacity" Value="0.5" />
|
||||
</VisualState.Setters>
|
||||
</VisualState>
|
||||
<VisualState x:Name="PointerOver" />
|
||||
</VisualStateGroup>
|
||||
</VisualStateGroupList>
|
||||
</Setter>
|
||||
</Style>
|
||||
|
||||
<Style TargetType="Label">
|
||||
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource White}}" />
|
||||
<Setter Property="BackgroundColor" Value="Transparent" />
|
||||
<Setter Property="FontFamily" Value="OpenSansRegular" />
|
||||
<Setter Property="FontSize" Value="14" />
|
||||
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||
<VisualStateGroupList>
|
||||
<VisualStateGroup x:Name="CommonStates">
|
||||
<VisualState x:Name="Normal" />
|
||||
<VisualState x:Name="Disabled">
|
||||
<VisualState.Setters>
|
||||
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||
</VisualState.Setters>
|
||||
</VisualState>
|
||||
</VisualStateGroup>
|
||||
</VisualStateGroupList>
|
||||
</Setter>
|
||||
</Style>
|
||||
|
||||
<Style TargetType="Span">
|
||||
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource White}}" />
|
||||
</Style>
|
||||
|
||||
<Style TargetType="Label" x:Key="Headline">
|
||||
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource MidnightBlue}, Dark={StaticResource White}}" />
|
||||
<Setter Property="FontSize" Value="32" />
|
||||
<Setter Property="HorizontalOptions" Value="Center" />
|
||||
<Setter Property="HorizontalTextAlignment" Value="Center" />
|
||||
</Style>
|
||||
|
||||
<Style TargetType="Label" x:Key="SubHeadline">
|
||||
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource MidnightBlue}, Dark={StaticResource White}}" />
|
||||
<Setter Property="FontSize" Value="24" />
|
||||
<Setter Property="HorizontalOptions" Value="Center" />
|
||||
<Setter Property="HorizontalTextAlignment" Value="Center" />
|
||||
</Style>
|
||||
|
||||
<Style TargetType="ListView">
|
||||
<Setter Property="SeparatorColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}" />
|
||||
<Setter Property="RefreshControlColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource Gray200}}" />
|
||||
</Style>
|
||||
|
||||
<Style TargetType="Picker">
|
||||
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}" />
|
||||
<Setter Property="TitleColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource Gray200}}" />
|
||||
<Setter Property="BackgroundColor" Value="Transparent" />
|
||||
<Setter Property="FontFamily" Value="OpenSansRegular"/>
|
||||
<Setter Property="FontSize" Value="14"/>
|
||||
<Setter Property="MinimumHeightRequest" Value="44"/>
|
||||
<Setter Property="MinimumWidthRequest" Value="44"/>
|
||||
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||
<VisualStateGroupList>
|
||||
<VisualStateGroup x:Name="CommonStates">
|
||||
<VisualState x:Name="Normal" />
|
||||
<VisualState x:Name="Disabled">
|
||||
<VisualState.Setters>
|
||||
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||
<Setter Property="TitleColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||
</VisualState.Setters>
|
||||
</VisualState>
|
||||
</VisualStateGroup>
|
||||
</VisualStateGroupList>
|
||||
</Setter>
|
||||
</Style>
|
||||
|
||||
<Style TargetType="ProgressBar">
|
||||
<Setter Property="ProgressColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
||||
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||
<VisualStateGroupList>
|
||||
<VisualStateGroup x:Name="CommonStates">
|
||||
<VisualState x:Name="Normal" />
|
||||
<VisualState x:Name="Disabled">
|
||||
<VisualState.Setters>
|
||||
<Setter Property="ProgressColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||
</VisualState.Setters>
|
||||
</VisualState>
|
||||
</VisualStateGroup>
|
||||
</VisualStateGroupList>
|
||||
</Setter>
|
||||
</Style>
|
||||
|
||||
<Style TargetType="RadioButton">
|
||||
<Setter Property="BackgroundColor" Value="Transparent"/>
|
||||
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource White}}" />
|
||||
<Setter Property="FontFamily" Value="OpenSansRegular"/>
|
||||
<Setter Property="FontSize" Value="14"/>
|
||||
<Setter Property="MinimumHeightRequest" Value="44"/>
|
||||
<Setter Property="MinimumWidthRequest" Value="44"/>
|
||||
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||
<VisualStateGroupList>
|
||||
<VisualStateGroup x:Name="CommonStates">
|
||||
<VisualState x:Name="Normal" />
|
||||
<VisualState x:Name="Disabled">
|
||||
<VisualState.Setters>
|
||||
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||
</VisualState.Setters>
|
||||
</VisualState>
|
||||
</VisualStateGroup>
|
||||
</VisualStateGroupList>
|
||||
</Setter>
|
||||
</Style>
|
||||
|
||||
<Style TargetType="RefreshView">
|
||||
<Setter Property="RefreshColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource Gray200}}" />
|
||||
</Style>
|
||||
|
||||
<Style TargetType="SearchBar">
|
||||
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}" />
|
||||
<Setter Property="PlaceholderColor" Value="{StaticResource Gray500}" />
|
||||
<Setter Property="CancelButtonColor" Value="{StaticResource Gray500}" />
|
||||
<Setter Property="BackgroundColor" Value="Transparent" />
|
||||
<Setter Property="FontFamily" Value="OpenSansRegular" />
|
||||
<Setter Property="FontSize" Value="14" />
|
||||
<Setter Property="MinimumHeightRequest" Value="44"/>
|
||||
<Setter Property="MinimumWidthRequest" Value="44"/>
|
||||
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||
<VisualStateGroupList>
|
||||
<VisualStateGroup x:Name="CommonStates">
|
||||
<VisualState x:Name="Normal" />
|
||||
<VisualState x:Name="Disabled">
|
||||
<VisualState.Setters>
|
||||
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||
<Setter Property="PlaceholderColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||
</VisualState.Setters>
|
||||
</VisualState>
|
||||
</VisualStateGroup>
|
||||
</VisualStateGroupList>
|
||||
</Setter>
|
||||
</Style>
|
||||
|
||||
<Style TargetType="SearchHandler">
|
||||
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}" />
|
||||
<Setter Property="PlaceholderColor" Value="{StaticResource Gray500}" />
|
||||
<Setter Property="BackgroundColor" Value="Transparent" />
|
||||
<Setter Property="FontFamily" Value="OpenSansRegular" />
|
||||
<Setter Property="FontSize" Value="14" />
|
||||
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||
<VisualStateGroupList>
|
||||
<VisualStateGroup x:Name="CommonStates">
|
||||
<VisualState x:Name="Normal" />
|
||||
<VisualState x:Name="Disabled">
|
||||
<VisualState.Setters>
|
||||
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||
<Setter Property="PlaceholderColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||
</VisualState.Setters>
|
||||
</VisualState>
|
||||
</VisualStateGroup>
|
||||
</VisualStateGroupList>
|
||||
</Setter>
|
||||
</Style>
|
||||
|
||||
<Style TargetType="Shadow">
|
||||
<Setter Property="Radius" Value="15" />
|
||||
<Setter Property="Opacity" Value="0.5" />
|
||||
<Setter Property="Brush" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource White}}" />
|
||||
<Setter Property="Offset" Value="10,10" />
|
||||
</Style>
|
||||
|
||||
<Style TargetType="Slider">
|
||||
<Setter Property="MinimumTrackColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
||||
<Setter Property="MaximumTrackColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray600}}" />
|
||||
<Setter Property="ThumbColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
||||
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||
<VisualStateGroupList>
|
||||
<VisualStateGroup x:Name="CommonStates">
|
||||
<VisualState x:Name="Normal" />
|
||||
<VisualState x:Name="Disabled">
|
||||
<VisualState.Setters>
|
||||
<Setter Property="MinimumTrackColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}"/>
|
||||
<Setter Property="MaximumTrackColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}"/>
|
||||
<Setter Property="ThumbColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}"/>
|
||||
</VisualState.Setters>
|
||||
</VisualState>
|
||||
</VisualStateGroup>
|
||||
</VisualStateGroupList>
|
||||
</Setter>
|
||||
</Style>
|
||||
|
||||
<Style TargetType="SwipeItem">
|
||||
<Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Black}}" />
|
||||
</Style>
|
||||
|
||||
<Style TargetType="Switch">
|
||||
<Setter Property="OnColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
||||
<Setter Property="ThumbColor" Value="{StaticResource White}" />
|
||||
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||
<VisualStateGroupList>
|
||||
<VisualStateGroup x:Name="CommonStates">
|
||||
<VisualState x:Name="Normal" />
|
||||
<VisualState x:Name="Disabled">
|
||||
<VisualState.Setters>
|
||||
<Setter Property="OnColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||
<Setter Property="ThumbColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||
</VisualState.Setters>
|
||||
</VisualState>
|
||||
<VisualState x:Name="On">
|
||||
<VisualState.Setters>
|
||||
<Setter Property="OnColor" Value="{AppThemeBinding Light={StaticResource Secondary}, Dark={StaticResource Gray200}}" />
|
||||
<Setter Property="ThumbColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
||||
</VisualState.Setters>
|
||||
</VisualState>
|
||||
<VisualState x:Name="Off">
|
||||
<VisualState.Setters>
|
||||
<Setter Property="ThumbColor" Value="{AppThemeBinding Light={StaticResource Gray400}, Dark={StaticResource Gray500}}" />
|
||||
</VisualState.Setters>
|
||||
</VisualState>
|
||||
</VisualStateGroup>
|
||||
</VisualStateGroupList>
|
||||
</Setter>
|
||||
</Style>
|
||||
|
||||
<Style TargetType="TimePicker">
|
||||
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}" />
|
||||
<Setter Property="BackgroundColor" Value="Transparent"/>
|
||||
<Setter Property="FontFamily" Value="OpenSansRegular"/>
|
||||
<Setter Property="FontSize" Value="14"/>
|
||||
<Setter Property="MinimumHeightRequest" Value="44"/>
|
||||
<Setter Property="MinimumWidthRequest" Value="44"/>
|
||||
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||
<VisualStateGroupList>
|
||||
<VisualStateGroup x:Name="CommonStates">
|
||||
<VisualState x:Name="Normal" />
|
||||
<VisualState x:Name="Disabled">
|
||||
<VisualState.Setters>
|
||||
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||
</VisualState.Setters>
|
||||
</VisualState>
|
||||
</VisualStateGroup>
|
||||
</VisualStateGroupList>
|
||||
</Setter>
|
||||
</Style>
|
||||
|
||||
<Style TargetType="Page" ApplyToDerivedTypes="True">
|
||||
<Setter Property="Padding" Value="0"/>
|
||||
<Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource OffBlack}}" />
|
||||
</Style>
|
||||
|
||||
<Style TargetType="Shell" ApplyToDerivedTypes="True">
|
||||
<Setter Property="Shell.BackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource OffBlack}}" />
|
||||
<Setter Property="Shell.ForegroundColor" Value="{OnPlatform WinUI={StaticResource Primary}, Default={StaticResource White}}" />
|
||||
<Setter Property="Shell.TitleColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource SecondaryDarkText}}" />
|
||||
<Setter Property="Shell.DisabledColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray950}}" />
|
||||
<Setter Property="Shell.UnselectedColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray200}}" />
|
||||
<Setter Property="Shell.NavBarHasShadow" Value="False" />
|
||||
<Setter Property="Shell.TabBarBackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Black}}" />
|
||||
<Setter Property="Shell.TabBarForegroundColor" Value="{AppThemeBinding Light={StaticResource Magenta}, Dark={StaticResource White}}" />
|
||||
<Setter Property="Shell.TabBarTitleColor" Value="{AppThemeBinding Light={StaticResource Magenta}, Dark={StaticResource White}}" />
|
||||
<Setter Property="Shell.TabBarUnselectedColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource Gray200}}" />
|
||||
</Style>
|
||||
|
||||
<Style TargetType="NavigationPage">
|
||||
<Setter Property="BarBackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource OffBlack}}" />
|
||||
<Setter Property="BarTextColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource White}}" />
|
||||
<Setter Property="IconColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource White}}" />
|
||||
</Style>
|
||||
|
||||
<Style TargetType="TabbedPage">
|
||||
<Setter Property="BarBackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Gray950}}" />
|
||||
<Setter Property="BarTextColor" Value="{AppThemeBinding Light={StaticResource Magenta}, Dark={StaticResource White}}" />
|
||||
<Setter Property="UnselectedTabColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray950}}" />
|
||||
<Setter Property="SelectedTabColor" Value="{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray200}}" />
|
||||
</Style>
|
||||
|
||||
</ResourceDictionary>
|
23
obj/Debug/net8.0-android/case_map.txt
Normal file
23
obj/Debug/net8.0-android/case_map.txt
Normal file
@ -0,0 +1,23 @@
|
||||
animation\enterfromleft;animation\enterfromleft
|
||||
animation\enterfromright;animation\enterfromright
|
||||
animation\exittoleft;animation\exittoleft
|
||||
animation\exittoright;animation\exittoright
|
||||
animation\nav_default_enter_anim;animation\nav_default_enter_anim
|
||||
animation\nav_default_exit_anim;animation\nav_default_exit_anim
|
||||
animation\nav_default_pop_enter_anim;animation\nav_default_pop_enter_anim
|
||||
animation\nav_default_pop_exit_anim;animation\nav_default_pop_exit_anim
|
||||
drawable\maui_splash;drawable\maui_splash
|
||||
drawable\maui_splash_image;drawable\maui_splash_image
|
||||
layout\drawer_layout;layout\drawer_layout
|
||||
layout\flyoutcontent;compatibility\Android\Resources\layout\flyoutcontent
|
||||
layout\fragment_backstack;layout\fragment_backstack
|
||||
layout\navigationlayout;layout\navigationlayout
|
||||
layout\shellcontent;compatibility\Android\Resources\layout\shellcontent
|
||||
layout\tabbar;android\Resources\layout\Tabbar
|
||||
layout\toolbar;android\Resources\layout\Toolbar
|
||||
values\attr;values\attr
|
||||
values\attrs;android\Resources\values\attrs
|
||||
values\colors;values\colors
|
||||
values\strings;values\strings
|
||||
values\styles;android\Resources\values\styles
|
||||
xml\microsoft_maui_essentials_fileprovider_file_paths;resources\xml\microsoft_maui_essentials_fileprovider_file_paths
|
131
obj/Debug/net8.0-android/lp/100/jl/R.txt
Normal file
131
obj/Debug/net8.0-android/lp/100/jl/R.txt
Normal file
@ -0,0 +1,131 @@
|
||||
int attr alpha 0x7f040001
|
||||
int attr font 0x7f040002
|
||||
int attr fontProviderAuthority 0x7f040003
|
||||
int attr fontProviderCerts 0x7f040004
|
||||
int attr fontProviderFetchStrategy 0x7f040005
|
||||
int attr fontProviderFetchTimeout 0x7f040006
|
||||
int attr fontProviderPackage 0x7f040007
|
||||
int attr fontProviderQuery 0x7f040008
|
||||
int attr fontStyle 0x7f040009
|
||||
int attr fontVariationSettings 0x7f04000a
|
||||
int attr fontWeight 0x7f04000b
|
||||
int attr ttcIndex 0x7f04000c
|
||||
int color notification_action_color_filter 0x7f060001
|
||||
int color notification_icon_bg_color 0x7f060002
|
||||
int color ripple_material_light 0x7f060003
|
||||
int color secondary_text_default_material_light 0x7f060004
|
||||
int dimen compat_button_inset_horizontal_material 0x7f080001
|
||||
int dimen compat_button_inset_vertical_material 0x7f080002
|
||||
int dimen compat_button_padding_horizontal_material 0x7f080003
|
||||
int dimen compat_button_padding_vertical_material 0x7f080004
|
||||
int dimen compat_control_corner_material 0x7f080005
|
||||
int dimen compat_notification_large_icon_max_height 0x7f080006
|
||||
int dimen compat_notification_large_icon_max_width 0x7f080007
|
||||
int dimen notification_action_icon_size 0x7f080008
|
||||
int dimen notification_action_text_size 0x7f080009
|
||||
int dimen notification_big_circle_margin 0x7f08000a
|
||||
int dimen notification_content_margin_start 0x7f08000b
|
||||
int dimen notification_large_icon_height 0x7f08000c
|
||||
int dimen notification_large_icon_width 0x7f08000d
|
||||
int dimen notification_main_column_padding_top 0x7f08000e
|
||||
int dimen notification_media_narrow_margin 0x7f08000f
|
||||
int dimen notification_right_icon_size 0x7f080010
|
||||
int dimen notification_right_side_padding_top 0x7f080011
|
||||
int dimen notification_small_icon_background_padding 0x7f080012
|
||||
int dimen notification_small_icon_size_as_large 0x7f080013
|
||||
int dimen notification_subtext_size 0x7f080014
|
||||
int dimen notification_top_pad 0x7f080015
|
||||
int dimen notification_top_pad_large_text 0x7f080016
|
||||
int drawable notification_action_background 0x7f090001
|
||||
int drawable notification_bg 0x7f090002
|
||||
int drawable notification_bg_low 0x7f090003
|
||||
int drawable notification_bg_low_normal 0x7f090004
|
||||
int drawable notification_bg_low_pressed 0x7f090005
|
||||
int drawable notification_bg_normal 0x7f090006
|
||||
int drawable notification_bg_normal_pressed 0x7f090007
|
||||
int drawable notification_icon_background 0x7f090008
|
||||
int drawable notification_template_icon_bg 0x7f090009
|
||||
int drawable notification_template_icon_low_bg 0x7f09000a
|
||||
int drawable notification_tile_bg 0x7f09000b
|
||||
int drawable notify_panel_notification_icon_bg 0x7f09000c
|
||||
int id action_container 0x7f0c0001
|
||||
int id action_divider 0x7f0c0002
|
||||
int id action_image 0x7f0c0003
|
||||
int id action_text 0x7f0c0004
|
||||
int id actions 0x7f0c0005
|
||||
int id async 0x7f0c0006
|
||||
int id blocking 0x7f0c0007
|
||||
int id chronometer 0x7f0c0008
|
||||
int id forever 0x7f0c0009
|
||||
int id icon 0x7f0c000a
|
||||
int id icon_group 0x7f0c000b
|
||||
int id info 0x7f0c000c
|
||||
int id italic 0x7f0c000d
|
||||
int id line1 0x7f0c000e
|
||||
int id line3 0x7f0c000f
|
||||
int id normal 0x7f0c0010
|
||||
int id notification_background 0x7f0c0011
|
||||
int id notification_main_column 0x7f0c0012
|
||||
int id notification_main_column_container 0x7f0c0013
|
||||
int id right_icon 0x7f0c0014
|
||||
int id right_side 0x7f0c0015
|
||||
int id tag_transition_group 0x7f0c0016
|
||||
int id tag_unhandled_key_event_manager 0x7f0c0017
|
||||
int id tag_unhandled_key_listeners 0x7f0c0018
|
||||
int id text 0x7f0c0019
|
||||
int id text2 0x7f0c001a
|
||||
int id time 0x7f0c001b
|
||||
int id title 0x7f0c001c
|
||||
int integer status_bar_notification_info_maxnum 0x7f0d0001
|
||||
int layout notification_action 0x7f0f0001
|
||||
int layout notification_action_tombstone 0x7f0f0002
|
||||
int layout notification_template_custom_big 0x7f0f0003
|
||||
int layout notification_template_icon_group 0x7f0f0004
|
||||
int layout notification_template_part_chronometer 0x7f0f0005
|
||||
int layout notification_template_part_time 0x7f0f0006
|
||||
int string status_bar_notification_info_overflow 0x7f150001
|
||||
int style TextAppearance_Compat_Notification 0x7f160001
|
||||
int style TextAppearance_Compat_Notification_Info 0x7f160002
|
||||
int style TextAppearance_Compat_Notification_Line2 0x7f160003
|
||||
int style TextAppearance_Compat_Notification_Time 0x7f160004
|
||||
int style TextAppearance_Compat_Notification_Title 0x7f160005
|
||||
int style Widget_Compat_NotificationActionContainer 0x7f160006
|
||||
int style Widget_Compat_NotificationActionText 0x7f160007
|
||||
int[] styleable ColorStateListItem { 0x7f040001, 0x101031f, 0x10101a5 }
|
||||
int styleable ColorStateListItem_alpha 0
|
||||
int styleable ColorStateListItem_android_alpha 1
|
||||
int styleable ColorStateListItem_android_color 2
|
||||
int[] styleable FontFamily { 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008 }
|
||||
int styleable FontFamily_fontProviderAuthority 0
|
||||
int styleable FontFamily_fontProviderCerts 1
|
||||
int styleable FontFamily_fontProviderFetchStrategy 2
|
||||
int styleable FontFamily_fontProviderFetchTimeout 3
|
||||
int styleable FontFamily_fontProviderPackage 4
|
||||
int styleable FontFamily_fontProviderQuery 5
|
||||
int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f040002, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c }
|
||||
int styleable FontFamilyFont_android_font 0
|
||||
int styleable FontFamilyFont_android_fontStyle 1
|
||||
int styleable FontFamilyFont_android_fontVariationSettings 2
|
||||
int styleable FontFamilyFont_android_fontWeight 3
|
||||
int styleable FontFamilyFont_android_ttcIndex 4
|
||||
int styleable FontFamilyFont_font 5
|
||||
int styleable FontFamilyFont_fontStyle 6
|
||||
int styleable FontFamilyFont_fontVariationSettings 7
|
||||
int styleable FontFamilyFont_fontWeight 8
|
||||
int styleable FontFamilyFont_ttcIndex 9
|
||||
int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 }
|
||||
int styleable GradientColor_android_centerColor 0
|
||||
int styleable GradientColor_android_centerX 1
|
||||
int styleable GradientColor_android_centerY 2
|
||||
int styleable GradientColor_android_endColor 3
|
||||
int styleable GradientColor_android_endX 4
|
||||
int styleable GradientColor_android_endY 5
|
||||
int styleable GradientColor_android_gradientRadius 6
|
||||
int styleable GradientColor_android_startColor 7
|
||||
int styleable GradientColor_android_startX 8
|
||||
int styleable GradientColor_android_startY 9
|
||||
int styleable GradientColor_android_tileMode 10
|
||||
int styleable GradientColor_android_type 11
|
||||
int[] styleable GradientColorItem { 0x10101a5, 0x1010514 }
|
||||
int styleable GradientColorItem_android_color 0
|
||||
int styleable GradientColorItem_android_offset 1
|
1
obj/Debug/net8.0-android/lp/101/jl/R.txt
Normal file
1
obj/Debug/net8.0-android/lp/101/jl/R.txt
Normal file
@ -0,0 +1 @@
|
||||
int id view_tree_saved_state_registry_owner 0x0
|
17
obj/Debug/net8.0-android/lp/101/jl/proguard.txt
Normal file
17
obj/Debug/net8.0-android/lp/101/jl/proguard.txt
Normal file
@ -0,0 +1,17 @@
|
||||
# Copyright (C) 2019 The Android Open Source Project
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
-keepclassmembers,allowobfuscation class * implements androidx.savedstate.SavedStateRegistry$AutoRecreated {
|
||||
<init>();
|
||||
}
|
0
obj/Debug/net8.0-android/lp/101/jl/public.txt
Normal file
0
obj/Debug/net8.0-android/lp/101/jl/public.txt
Normal file
0
obj/Debug/net8.0-android/lp/102/jl/R.txt
Normal file
0
obj/Debug/net8.0-android/lp/102/jl/R.txt
Normal file
0
obj/Debug/net8.0-android/lp/102/jl/public.txt
Normal file
0
obj/Debug/net8.0-android/lp/102/jl/public.txt
Normal file
2
obj/Debug/net8.0-android/lp/103/jl/R.txt
Normal file
2
obj/Debug/net8.0-android/lp/103/jl/R.txt
Normal file
@ -0,0 +1,2 @@
|
||||
int id is_pooling_container_tag 0x0
|
||||
int id pooling_container_listener_holder_tag 0x0
|
0
obj/Debug/net8.0-android/lp/103/jl/public.txt
Normal file
0
obj/Debug/net8.0-android/lp/103/jl/public.txt
Normal file
30
obj/Debug/net8.0-android/lp/104/jl/R.txt
Normal file
30
obj/Debug/net8.0-android/lp/104/jl/R.txt
Normal file
@ -0,0 +1,30 @@
|
||||
int attr fastScrollEnabled 0x0
|
||||
int attr fastScrollHorizontalThumbDrawable 0x0
|
||||
int attr fastScrollHorizontalTrackDrawable 0x0
|
||||
int attr fastScrollVerticalThumbDrawable 0x0
|
||||
int attr fastScrollVerticalTrackDrawable 0x0
|
||||
int attr layoutManager 0x0
|
||||
int attr recyclerViewStyle 0x0
|
||||
int attr reverseLayout 0x0
|
||||
int attr spanCount 0x0
|
||||
int attr stackFromEnd 0x0
|
||||
int dimen fastscroll_default_thickness 0x0
|
||||
int dimen fastscroll_margin 0x0
|
||||
int dimen fastscroll_minimum_range 0x0
|
||||
int dimen item_touch_helper_max_drag_scroll_per_frame 0x0
|
||||
int dimen item_touch_helper_swipe_escape_max_velocity 0x0
|
||||
int dimen item_touch_helper_swipe_escape_velocity 0x0
|
||||
int id item_touch_helper_previous_elevation 0x0
|
||||
int[] styleable RecyclerView { 0x10100eb, 0x10100f1, 0x10100c4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
|
||||
int styleable RecyclerView_android_clipToPadding 0
|
||||
int styleable RecyclerView_android_descendantFocusability 1
|
||||
int styleable RecyclerView_android_orientation 2
|
||||
int styleable RecyclerView_fastScrollEnabled 3
|
||||
int styleable RecyclerView_fastScrollHorizontalThumbDrawable 4
|
||||
int styleable RecyclerView_fastScrollHorizontalTrackDrawable 5
|
||||
int styleable RecyclerView_fastScrollVerticalThumbDrawable 6
|
||||
int styleable RecyclerView_fastScrollVerticalTrackDrawable 7
|
||||
int styleable RecyclerView_layoutManager 8
|
||||
int styleable RecyclerView_reverseLayout 9
|
||||
int styleable RecyclerView_spanCount 10
|
||||
int styleable RecyclerView_stackFromEnd 11
|
548
obj/Debug/net8.0-android/lp/104/jl/baseline-prof.txt
Normal file
548
obj/Debug/net8.0-android/lp/104/jl/baseline-prof.txt
Normal file
@ -0,0 +1,548 @@
|
||||
HSPLandroidx/recyclerview/R$styleable;-><clinit>()V
|
||||
HSPLandroidx/recyclerview/widget/AdapterHelper$UpdateOp;-><init>(IIILjava/lang/Object;)V
|
||||
HSPLandroidx/recyclerview/widget/AdapterHelper;-><init>(Landroidx/recyclerview/widget/AdapterHelper$Callback;)V
|
||||
HSPLandroidx/recyclerview/widget/AdapterHelper;-><init>(Landroidx/recyclerview/widget/AdapterHelper$Callback;Z)V
|
||||
HSPLandroidx/recyclerview/widget/AdapterHelper;->applyAdd(Landroidx/recyclerview/widget/AdapterHelper$UpdateOp;)V
|
||||
HSPLandroidx/recyclerview/widget/AdapterHelper;->consumePostponedUpdates()V
|
||||
HSPLandroidx/recyclerview/widget/AdapterHelper;->consumeUpdatesInOnePass()V
|
||||
HSPLandroidx/recyclerview/widget/AdapterHelper;->findPositionOffset(I)I
|
||||
HSPLandroidx/recyclerview/widget/AdapterHelper;->findPositionOffset(II)I
|
||||
HSPLandroidx/recyclerview/widget/AdapterHelper;->hasPendingUpdates()Z
|
||||
HSPLandroidx/recyclerview/widget/AdapterHelper;->obtainUpdateOp(IIILjava/lang/Object;)Landroidx/recyclerview/widget/AdapterHelper$UpdateOp;
|
||||
HSPLandroidx/recyclerview/widget/AdapterHelper;->onItemRangeInserted(II)Z
|
||||
HSPLandroidx/recyclerview/widget/AdapterHelper;->postponeAndUpdateViewHolders(Landroidx/recyclerview/widget/AdapterHelper$UpdateOp;)V
|
||||
HSPLandroidx/recyclerview/widget/AdapterHelper;->preProcess()V
|
||||
HSPLandroidx/recyclerview/widget/AdapterHelper;->recycleUpdateOp(Landroidx/recyclerview/widget/AdapterHelper$UpdateOp;)V
|
||||
HSPLandroidx/recyclerview/widget/AdapterHelper;->recycleUpdateOpsAndClearList(Ljava/util/List;)V
|
||||
HSPLandroidx/recyclerview/widget/AdapterHelper;->reset()V
|
||||
HSPLandroidx/recyclerview/widget/AdapterListUpdateCallback;-><init>(Landroidx/recyclerview/widget/RecyclerView$Adapter;)V
|
||||
HSPLandroidx/recyclerview/widget/AdapterListUpdateCallback;->onInserted(II)V
|
||||
HSPLandroidx/recyclerview/widget/AsyncDifferConfig$Builder;-><clinit>()V
|
||||
HSPLandroidx/recyclerview/widget/AsyncDifferConfig$Builder;-><init>(Landroidx/recyclerview/widget/DiffUtil$ItemCallback;)V
|
||||
HSPLandroidx/recyclerview/widget/AsyncDifferConfig$Builder;->build()Landroidx/recyclerview/widget/AsyncDifferConfig;
|
||||
HSPLandroidx/recyclerview/widget/AsyncDifferConfig$Builder;->setBackgroundThreadExecutor(Ljava/util/concurrent/Executor;)Landroidx/recyclerview/widget/AsyncDifferConfig$Builder;
|
||||
HSPLandroidx/recyclerview/widget/AsyncDifferConfig;-><init>(Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Landroidx/recyclerview/widget/DiffUtil$ItemCallback;)V
|
||||
HSPLandroidx/recyclerview/widget/AsyncDifferConfig;->getMainThreadExecutor()Ljava/util/concurrent/Executor;
|
||||
HSPLandroidx/recyclerview/widget/AsyncListDiffer$MainThreadExecutor;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/AsyncListDiffer;-><clinit>()V
|
||||
HSPLandroidx/recyclerview/widget/AsyncListDiffer;-><init>(Landroidx/recyclerview/widget/ListUpdateCallback;Landroidx/recyclerview/widget/AsyncDifferConfig;)V
|
||||
HSPLandroidx/recyclerview/widget/AsyncListDiffer;->addListListener(Landroidx/recyclerview/widget/AsyncListDiffer$ListListener;)V
|
||||
HSPLandroidx/recyclerview/widget/AsyncListDiffer;->getCurrentList()Ljava/util/List;
|
||||
HSPLandroidx/recyclerview/widget/AsyncListDiffer;->onCurrentListChanged(Ljava/util/List;Ljava/lang/Runnable;)V
|
||||
HSPLandroidx/recyclerview/widget/AsyncListDiffer;->submitList(Ljava/util/List;)V
|
||||
HSPLandroidx/recyclerview/widget/AsyncListDiffer;->submitList(Ljava/util/List;Ljava/lang/Runnable;)V
|
||||
HSPLandroidx/recyclerview/widget/ChildHelper$Bucket;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/ChildHelper$Bucket;->clear(I)V
|
||||
HSPLandroidx/recyclerview/widget/ChildHelper$Bucket;->countOnesBefore(I)I
|
||||
HSPLandroidx/recyclerview/widget/ChildHelper$Bucket;->get(I)Z
|
||||
HSPLandroidx/recyclerview/widget/ChildHelper$Bucket;->insert(IZ)V
|
||||
HSPLandroidx/recyclerview/widget/ChildHelper$Bucket;->remove(I)Z
|
||||
HSPLandroidx/recyclerview/widget/ChildHelper$Bucket;->reset()V
|
||||
HSPLandroidx/recyclerview/widget/ChildHelper;-><init>(Landroidx/recyclerview/widget/ChildHelper$Callback;)V
|
||||
HSPLandroidx/recyclerview/widget/ChildHelper;->addView(Landroid/view/View;IZ)V
|
||||
HSPLandroidx/recyclerview/widget/ChildHelper;->findHiddenNonRemovedView(I)Landroid/view/View;
|
||||
HSPLandroidx/recyclerview/widget/ChildHelper;->getChildAt(I)Landroid/view/View;
|
||||
HSPLandroidx/recyclerview/widget/ChildHelper;->getChildCount()I
|
||||
HSPLandroidx/recyclerview/widget/ChildHelper;->getOffset(I)I
|
||||
HSPLandroidx/recyclerview/widget/ChildHelper;->getUnfilteredChildAt(I)Landroid/view/View;
|
||||
HSPLandroidx/recyclerview/widget/ChildHelper;->getUnfilteredChildCount()I
|
||||
HSPLandroidx/recyclerview/widget/ChildHelper;->isHidden(Landroid/view/View;)Z
|
||||
HSPLandroidx/recyclerview/widget/ChildHelper;->removeAllViewsUnfiltered()V
|
||||
HSPLandroidx/recyclerview/widget/ChildHelper;->removeViewAt(I)V
|
||||
HSPLandroidx/recyclerview/widget/ChildHelper;->removeViewIfHidden(Landroid/view/View;)Z
|
||||
HSPLandroidx/recyclerview/widget/DefaultItemAnimator$3;-><init>(Landroidx/recyclerview/widget/DefaultItemAnimator;Ljava/util/ArrayList;)V
|
||||
HSPLandroidx/recyclerview/widget/DefaultItemAnimator$3;->run()V
|
||||
HSPLandroidx/recyclerview/widget/DefaultItemAnimator$5;-><init>(Landroidx/recyclerview/widget/DefaultItemAnimator;Landroidx/recyclerview/widget/RecyclerView$ViewHolder;Landroid/view/View;Landroid/view/ViewPropertyAnimator;)V
|
||||
HSPLandroidx/recyclerview/widget/DefaultItemAnimator$5;->onAnimationEnd(Landroid/animation/Animator;)V
|
||||
HSPLandroidx/recyclerview/widget/DefaultItemAnimator$5;->onAnimationStart(Landroid/animation/Animator;)V
|
||||
HSPLandroidx/recyclerview/widget/DefaultItemAnimator;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->animateAdd(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)Z
|
||||
HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->animateAddImpl(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
|
||||
HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->dispatchFinishedWhenDone()V
|
||||
HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->endAnimation(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
|
||||
HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->endAnimations()V
|
||||
HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->endChangeAnimation(Ljava/util/List;Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
|
||||
HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->isRunning()Z
|
||||
HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->resetAnimation(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
|
||||
HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->runPendingAnimations()V
|
||||
HSPLandroidx/recyclerview/widget/DiffUtil$ItemCallback;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/GapWorker$1;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/GapWorker$LayoutPrefetchRegistryImpl;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/GapWorker$LayoutPrefetchRegistryImpl;->addPosition(II)V
|
||||
HSPLandroidx/recyclerview/widget/GapWorker$LayoutPrefetchRegistryImpl;->clearPrefetchPositions()V
|
||||
HSPLandroidx/recyclerview/widget/GapWorker$LayoutPrefetchRegistryImpl;->collectPrefetchPositionsFromView(Landroidx/recyclerview/widget/RecyclerView;Z)V
|
||||
HSPLandroidx/recyclerview/widget/GapWorker$LayoutPrefetchRegistryImpl;->lastPrefetchIncludedPosition(I)Z
|
||||
HSPLandroidx/recyclerview/widget/GapWorker$LayoutPrefetchRegistryImpl;->setPrefetchVector(II)V
|
||||
HSPLandroidx/recyclerview/widget/GapWorker$Task;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/GapWorker$Task;->clear()V
|
||||
HSPLandroidx/recyclerview/widget/GapWorker;-><clinit>()V
|
||||
HSPLandroidx/recyclerview/widget/GapWorker;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/GapWorker;->add(Landroidx/recyclerview/widget/RecyclerView;)V
|
||||
HSPLandroidx/recyclerview/widget/GapWorker;->buildTaskList()V
|
||||
HSPLandroidx/recyclerview/widget/GapWorker;->flushTaskWithDeadline(Landroidx/recyclerview/widget/GapWorker$Task;J)V
|
||||
HSPLandroidx/recyclerview/widget/GapWorker;->flushTasksWithDeadline(J)V
|
||||
HSPLandroidx/recyclerview/widget/GapWorker;->isPrefetchPositionAttached(Landroidx/recyclerview/widget/RecyclerView;I)Z
|
||||
HSPLandroidx/recyclerview/widget/GapWorker;->postFromTraversal(Landroidx/recyclerview/widget/RecyclerView;II)V
|
||||
HSPLandroidx/recyclerview/widget/GapWorker;->prefetch(J)V
|
||||
HSPLandroidx/recyclerview/widget/GapWorker;->prefetchPositionWithDeadline(Landroidx/recyclerview/widget/RecyclerView;IJ)Landroidx/recyclerview/widget/RecyclerView$ViewHolder;
|
||||
HSPLandroidx/recyclerview/widget/GapWorker;->run()V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;->assignCoordinateFromPadding()V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;->reset()V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager$LayoutChunkResult;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager$LayoutChunkResult;->resetInternal()V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager$LayoutState;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager$LayoutState;->hasMore(Landroidx/recyclerview/widget/RecyclerView$State;)Z
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager$LayoutState;->next(Landroidx/recyclerview/widget/RecyclerView$Recycler;)Landroid/view/View;
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;II)V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->assertNotInLayoutOrScroll(Ljava/lang/String;)V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->calculateExtraLayoutSpace(Landroidx/recyclerview/widget/RecyclerView$State;[I)V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->canScrollHorizontally()Z
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->canScrollVertically()Z
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->collectAdjacentPrefetchPositions(IILandroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/RecyclerView$LayoutManager$LayoutPrefetchRegistry;)V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->collectPrefetchPositionsForLayoutState(Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/LinearLayoutManager$LayoutState;Landroidx/recyclerview/widget/RecyclerView$LayoutManager$LayoutPrefetchRegistry;)V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->computeScrollExtent(Landroidx/recyclerview/widget/RecyclerView$State;)I
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->computeScrollOffset(Landroidx/recyclerview/widget/RecyclerView$State;)I
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->computeScrollRange(Landroidx/recyclerview/widget/RecyclerView$State;)I
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->computeVerticalScrollExtent(Landroidx/recyclerview/widget/RecyclerView$State;)I
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->computeVerticalScrollOffset(Landroidx/recyclerview/widget/RecyclerView$State;)I
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->computeVerticalScrollRange(Landroidx/recyclerview/widget/RecyclerView$State;)I
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->createLayoutState()Landroidx/recyclerview/widget/LinearLayoutManager$LayoutState;
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->ensureLayoutState()V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->fill(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/LinearLayoutManager$LayoutState;Landroidx/recyclerview/widget/RecyclerView$State;Z)I
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->findFirstVisibleChildClosestToEnd(ZZ)Landroid/view/View;
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->findFirstVisibleChildClosestToStart(ZZ)Landroid/view/View;
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->findFirstVisibleItemPosition()I
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->findLastVisibleItemPosition()I
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->findOneVisibleChild(IIZZ)Landroid/view/View;
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->fixLayoutEndGap(ILandroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Z)I
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->fixLayoutStartGap(ILandroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Z)I
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->getChildClosestToEnd()Landroid/view/View;
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->getExtraLayoutSpace(Landroidx/recyclerview/widget/RecyclerView$State;)I
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->isAutoMeasureEnabled()Z
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->isLayoutRTL()Z
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->layoutChunk(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/LinearLayoutManager$LayoutState;Landroidx/recyclerview/widget/LinearLayoutManager$LayoutChunkResult;)V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->layoutForPredictiveAnimations(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;II)V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->onAnchorReady(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;I)V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->onInitializeAccessibilityEvent(Landroid/view/accessibility/AccessibilityEvent;)V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->onLayoutChildren(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;)V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->onLayoutCompleted(Landroidx/recyclerview/widget/RecyclerView$State;)V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->recycleByLayoutState(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/LinearLayoutManager$LayoutState;)V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->recycleChildren(Landroidx/recyclerview/widget/RecyclerView$Recycler;II)V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->recycleViewsFromStart(Landroidx/recyclerview/widget/RecyclerView$Recycler;II)V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->resolveIsInfinite()Z
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->resolveShouldLayoutReverse()V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->scrollBy(ILandroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;)I
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->scrollVerticallyBy(ILandroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;)I
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->setOrientation(I)V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->setReverseLayout(Z)V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->setStackFromEnd(Z)V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->supportsPredictiveItemAnimations()Z
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->updateAnchorFromChildren(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;)Z
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->updateAnchorFromPendingData(Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;)Z
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->updateAnchorInfoForLayout(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;)V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->updateLayoutState(IIZLandroidx/recyclerview/widget/RecyclerView$State;)V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->updateLayoutStateToFillEnd(II)V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->updateLayoutStateToFillEnd(Landroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;)V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->updateLayoutStateToFillStart(II)V
|
||||
HSPLandroidx/recyclerview/widget/LinearLayoutManager;->updateLayoutStateToFillStart(Landroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;)V
|
||||
HSPLandroidx/recyclerview/widget/ListAdapter$1;-><init>(Landroidx/recyclerview/widget/ListAdapter;)V
|
||||
HSPLandroidx/recyclerview/widget/ListAdapter$1;->onCurrentListChanged(Ljava/util/List;Ljava/util/List;)V
|
||||
HSPLandroidx/recyclerview/widget/ListAdapter;-><init>(Landroidx/recyclerview/widget/AsyncDifferConfig;)V
|
||||
HSPLandroidx/recyclerview/widget/ListAdapter;->getItem(I)Ljava/lang/Object;
|
||||
HSPLandroidx/recyclerview/widget/ListAdapter;->getItemCount()I
|
||||
HSPLandroidx/recyclerview/widget/ListAdapter;->onCurrentListChanged(Ljava/util/List;Ljava/util/List;)V
|
||||
HSPLandroidx/recyclerview/widget/ListAdapter;->submitList(Ljava/util/List;)V
|
||||
HSPLandroidx/recyclerview/widget/OpReorderer;-><init>(Landroidx/recyclerview/widget/OpReorderer$Callback;)V
|
||||
HSPLandroidx/recyclerview/widget/OpReorderer;->getLastMoveOutOfOrder(Ljava/util/List;)I
|
||||
HSPLandroidx/recyclerview/widget/OpReorderer;->reorderOps(Ljava/util/List;)V
|
||||
HSPLandroidx/recyclerview/widget/OrientationHelper$2;-><init>(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;)V
|
||||
HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getDecoratedEnd(Landroid/view/View;)I
|
||||
HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getDecoratedMeasurement(Landroid/view/View;)I
|
||||
HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getDecoratedMeasurementInOther(Landroid/view/View;)I
|
||||
HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getDecoratedStart(Landroid/view/View;)I
|
||||
HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getEndAfterPadding()I
|
||||
HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getEndPadding()I
|
||||
HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getMode()I
|
||||
HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getStartAfterPadding()I
|
||||
HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getTotalSpace()I
|
||||
HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getTransformedEndWithDecoration(Landroid/view/View;)I
|
||||
HSPLandroidx/recyclerview/widget/OrientationHelper$2;->offsetChildren(I)V
|
||||
HSPLandroidx/recyclerview/widget/OrientationHelper;-><init>(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;)V
|
||||
HSPLandroidx/recyclerview/widget/OrientationHelper;-><init>(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;Landroidx/recyclerview/widget/OrientationHelper$1;)V
|
||||
HSPLandroidx/recyclerview/widget/OrientationHelper;->createOrientationHelper(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;I)Landroidx/recyclerview/widget/OrientationHelper;
|
||||
HSPLandroidx/recyclerview/widget/OrientationHelper;->createVerticalHelper(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;)Landroidx/recyclerview/widget/OrientationHelper;
|
||||
HSPLandroidx/recyclerview/widget/OrientationHelper;->onLayoutComplete()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$1;-><init>(Landroidx/recyclerview/widget/RecyclerView;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$2;-><init>(Landroidx/recyclerview/widget/RecyclerView;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$2;->run()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$3;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$4;-><init>(Landroidx/recyclerview/widget/RecyclerView;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$4;->processAppeared(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$5;-><init>(Landroidx/recyclerview/widget/RecyclerView;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$5;->addView(Landroid/view/View;I)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$5;->getChildAt(I)Landroid/view/View;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$5;->getChildCount()I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$5;->indexOfChild(Landroid/view/View;)I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$5;->removeAllViews()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$5;->removeViewAt(I)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$6;-><init>(Landroidx/recyclerview/widget/RecyclerView;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$6;->dispatchUpdate(Landroidx/recyclerview/widget/AdapterHelper$UpdateOp;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$6;->offsetPositionsForAdd(II)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$6;->onDispatchSecondPass(Landroidx/recyclerview/widget/AdapterHelper$UpdateOp;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Adapter$StateRestorationPolicy;-><clinit>()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Adapter$StateRestorationPolicy;-><init>(Ljava/lang/String;I)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->bindViewHolder(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;I)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->createViewHolder(Landroid/view/ViewGroup;I)Landroidx/recyclerview/widget/RecyclerView$ViewHolder;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->getItemViewType(I)I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->hasStableIds()Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->notifyItemRangeInserted(II)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->onAttachedToRecyclerView(Landroidx/recyclerview/widget/RecyclerView;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->onBindViewHolder(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;ILjava/util/List;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->onViewAttachedToWindow(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->onViewDetachedFromWindow(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->onViewRecycled(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->registerAdapterDataObserver(Landroidx/recyclerview/widget/RecyclerView$AdapterDataObserver;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$AdapterDataObservable;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$AdapterDataObservable;->notifyItemRangeInserted(II)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$AdapterDataObserver;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$EdgeEffectFactory;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;->setFrom(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;->setFrom(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;I)Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator;->dispatchAnimationFinished(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator;->dispatchAnimationsFinished()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator;->getAddDuration()J
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator;->obtainHolderInfo()Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator;->onAnimationFinished(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator;->recordPostLayoutInformation(Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator;->setListener(Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemAnimatorListener;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimatorRestoreListener;-><init>(Landroidx/recyclerview/widget/RecyclerView;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimatorRestoreListener;->onAnimationFinished(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager$1;-><init>(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager$2;-><init>(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager$2;->getChildAt(I)Landroid/view/View;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager$2;->getChildEnd(Landroid/view/View;)I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager$2;->getChildStart(Landroid/view/View;)I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager$2;->getParentEnd()I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager$2;->getParentStart()I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager$Properties;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->addView(Landroid/view/View;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->addView(Landroid/view/View;I)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->addViewInt(Landroid/view/View;IZ)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->assertNotInLayoutOrScroll(Ljava/lang/String;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->checkLayoutParams(Landroidx/recyclerview/widget/RecyclerView$LayoutParams;)Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->chooseSize(III)I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->detachAndScrapAttachedViews(Landroidx/recyclerview/widget/RecyclerView$Recycler;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->dispatchAttachedToWindow(Landroidx/recyclerview/widget/RecyclerView;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->generateLayoutParams(Landroid/content/Context;Landroid/util/AttributeSet;)Landroidx/recyclerview/widget/RecyclerView$LayoutParams;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getBottomDecorationHeight(Landroid/view/View;)I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getChildAt(I)Landroid/view/View;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getChildCount()I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getChildMeasureSpec(IIIIZ)I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getColumnCountForAccessibility(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;)I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getDecoratedBottom(Landroid/view/View;)I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getDecoratedMeasuredHeight(Landroid/view/View;)I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getDecoratedMeasuredWidth(Landroid/view/View;)I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getDecoratedTop(Landroid/view/View;)I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getFocusedChild()Landroid/view/View;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getHeight()I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getHeightMode()I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getLayoutDirection()I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getPaddingBottom()I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getPaddingLeft()I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getPaddingRight()I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getPaddingTop()I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getPosition(Landroid/view/View;)I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getProperties(Landroid/content/Context;Landroid/util/AttributeSet;II)Landroidx/recyclerview/widget/RecyclerView$LayoutManager$Properties;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getRowCountForAccessibility(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;)I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getSelectionModeForAccessibility(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;)I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getTopDecorationHeight(Landroid/view/View;)I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getTransformedBoundingBox(Landroid/view/View;ZLandroid/graphics/Rect;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getWidth()I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getWidthMode()I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->isItemPrefetchEnabled()Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->isLayoutHierarchical(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;)Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->layoutDecoratedWithMargins(Landroid/view/View;IIII)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->measureChildWithMargins(Landroid/view/View;II)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->offsetChildrenVertical(I)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onAdapterChanged(Landroidx/recyclerview/widget/RecyclerView$Adapter;Landroidx/recyclerview/widget/RecyclerView$Adapter;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onAttachedToWindow(Landroidx/recyclerview/widget/RecyclerView;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onInitializeAccessibilityEvent(Landroid/view/accessibility/AccessibilityEvent;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onInitializeAccessibilityEvent(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Landroid/view/accessibility/AccessibilityEvent;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onInitializeAccessibilityNodeInfo(Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onInitializeAccessibilityNodeInfo(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onInitializeAccessibilityNodeInfoForItem(Landroid/view/View;Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onInitializeAccessibilityNodeInfoForItem(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Landroid/view/View;Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onItemsAdded(Landroidx/recyclerview/widget/RecyclerView;II)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onLayoutCompleted(Landroidx/recyclerview/widget/RecyclerView$State;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onMeasure(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;II)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onScrollStateChanged(I)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->removeAndRecycleAllViews(Landroidx/recyclerview/widget/RecyclerView$Recycler;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->removeAndRecycleScrapInt(Landroidx/recyclerview/widget/RecyclerView$Recycler;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->removeAndRecycleViewAt(ILandroidx/recyclerview/widget/RecyclerView$Recycler;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->removeViewAt(I)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->requestLayout()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->setExactMeasureSpecsFrom(Landroidx/recyclerview/widget/RecyclerView;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->setMeasureSpecs(II)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->setRecyclerView(Landroidx/recyclerview/widget/RecyclerView;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->shouldMeasureChild(Landroid/view/View;IILandroidx/recyclerview/widget/RecyclerView$LayoutParams;)Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->stopSmoothScroller()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutParams;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutParams;->getViewLayoutPosition()I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutParams;->isItemChanged()Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$LayoutParams;->isItemRemoved()Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$OnScrollListener;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$OnScrollListener;->onScrollStateChanged(Landroidx/recyclerview/widget/RecyclerView;I)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool$ScrapData;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->attach()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->clear()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->factorInBindTime(IJ)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->factorInCreateTime(IJ)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->getRecycledView(I)Landroidx/recyclerview/widget/RecyclerView$ViewHolder;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->getScrapDataForType(I)Landroidx/recyclerview/widget/RecyclerView$RecycledViewPool$ScrapData;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->onAdapterChanged(Landroidx/recyclerview/widget/RecyclerView$Adapter;Landroidx/recyclerview/widget/RecyclerView$Adapter;Z)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->putRecycledView(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->runningAverage(JJ)J
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->willBindInTime(IJJ)Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->willCreateInTime(IJJ)Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;-><init>(Landroidx/recyclerview/widget/RecyclerView;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->addViewHolderToRecycledViewPool(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;Z)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->attachAccessibilityDelegateOnBind(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->clear()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->clearOldPositions()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->clearScrap()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->dispatchViewRecycled(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->getRecycledViewPool()Landroidx/recyclerview/widget/RecyclerView$RecycledViewPool;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->getScrapCount()I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->getScrapList()Ljava/util/List;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->getScrapOrHiddenOrCachedHolderForPosition(IZ)Landroidx/recyclerview/widget/RecyclerView$ViewHolder;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->getViewForPosition(I)Landroid/view/View;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->getViewForPosition(IZ)Landroid/view/View;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->markItemDecorInsetsDirty()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->markKnownViewsInvalid()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->offsetPositionRecordsForInsert(II)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->onAdapterChanged(Landroidx/recyclerview/widget/RecyclerView$Adapter;Landroidx/recyclerview/widget/RecyclerView$Adapter;Z)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->recycleAndClearCachedViews()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->recycleCachedViewAt(I)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->recycleView(Landroid/view/View;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->recycleViewHolderInternal(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->tryBindViewHolderByDeadline(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;IIJ)Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->tryGetViewHolderForPositionByDeadline(IZJ)Landroidx/recyclerview/widget/RecyclerView$ViewHolder;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->updateViewCacheSize()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->validateViewHolderForOffsetPosition(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$RecyclerViewDataObserver;-><init>(Landroidx/recyclerview/widget/RecyclerView;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$RecyclerViewDataObserver;->onItemRangeInserted(II)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$RecyclerViewDataObserver;->triggerUpdateProcessor()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$State;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$State;->assertLayoutStep(I)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$State;->getItemCount()I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$State;->hasTargetScrollPosition()Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$State;->isPreLayout()Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$State;->willRunPredictiveAnimations()Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewFlinger;-><init>(Landroidx/recyclerview/widget/RecyclerView;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewFlinger;->fling(II)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewFlinger;->internalPostOnAnimation()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewFlinger;->postOnAnimation()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewFlinger;->run()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewFlinger;->stop()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;-><clinit>()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;-><init>(Landroid/view/View;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->clearPayload()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->doesTransientStatePreventRecycling()Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->getItemViewType()I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->getLayoutPosition()I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->getUnmodifiedPayloads()Ljava/util/List;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->hasAnyOfTheFlags(I)Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->isAttachedToTransitionOverlay()Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->isBound()Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->isInvalid()Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->isRecyclable()Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->isRemoved()Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->isScrap()Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->isTmpDetached()Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->isUpdated()Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->needsUpdate()Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->resetInternal()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->setFlags(II)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->setIsRecyclable(Z)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->shouldBeKeptAsChild()Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->shouldIgnore()Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->wasReturnedFromScrap()Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;-><clinit>()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->absorbGlows(II)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->access$200(Landroidx/recyclerview/widget/RecyclerView;)Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->addOnScrollListener(Landroidx/recyclerview/widget/RecyclerView$OnScrollListener;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->animateAppearance(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->assertNotInLayoutOrScroll(Ljava/lang/String;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->checkLayoutParams(Landroid/view/ViewGroup$LayoutParams;)Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->clearNestedRecyclerViewIfNotNested(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->clearOldPositions()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->computeHorizontalScrollExtent()I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->computeHorizontalScrollOffset()I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->computeHorizontalScrollRange()I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->computeVerticalScrollExtent()I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->computeVerticalScrollOffset()I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->computeVerticalScrollRange()I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->considerReleasingGlowsOnScroll(II)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->consumePendingUpdateOperations()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->createLayoutManager(Landroid/content/Context;Ljava/lang/String;Landroid/util/AttributeSet;II)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->defaultOnMeasure(II)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->didChildRangeChange(II)Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchChildAttached(Landroid/view/View;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchChildDetached(Landroid/view/View;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchContentChangedIfNecessary()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchLayout()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchLayoutStep1()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchLayoutStep2()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchLayoutStep3()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchNestedFling(FFZ)Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchNestedPreFling(FF)Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchNestedPreScroll(II[I[II)Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchNestedScroll(IIII[II[I)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchOnScrollStateChanged(I)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchOnScrolled(II)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchPendingImportantForAccessibilityChanges()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchToOnItemTouchListeners(Landroid/view/MotionEvent;)Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->draw(Landroid/graphics/Canvas;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->drawChild(Landroid/graphics/Canvas;Landroid/view/View;J)Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->fillRemainingScrollValues(Landroidx/recyclerview/widget/RecyclerView$State;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->findInterceptingOnItemTouchListener(Landroid/view/MotionEvent;)Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->findMinMaxChildLayoutPositions([I)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->findNestedRecyclerView(Landroid/view/View;)Landroidx/recyclerview/widget/RecyclerView;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->fling(II)Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->generateLayoutParams(Landroid/util/AttributeSet;)Landroid/view/ViewGroup$LayoutParams;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->getAccessibilityClassName()Ljava/lang/CharSequence;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->getChangedHolderKey(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)J
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->getChildViewHolder(Landroid/view/View;)Landroidx/recyclerview/widget/RecyclerView$ViewHolder;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->getChildViewHolderInt(Landroid/view/View;)Landroidx/recyclerview/widget/RecyclerView$ViewHolder;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->getFullClassName(Landroid/content/Context;Ljava/lang/String;)Ljava/lang/String;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->getItemDecorInsetsForChild(Landroid/view/View;)Landroid/graphics/Rect;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->getLayoutManager()Landroidx/recyclerview/widget/RecyclerView$LayoutManager;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->getNanoTime()J
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->getScrollState()I
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->getScrollingChildHelper()Landroidx/core/view/NestedScrollingChildHelper;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->hasPendingAdapterUpdates()Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->initAdapterManager()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->initAutofill()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->initChildrenHelper()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->invalidateGlows()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->isAccessibilityEnabled()Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->isAttachedToWindow()Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->isComputingLayout()Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->markItemDecorInsetsDirty()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->markKnownViewsInvalid()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->offsetChildrenVertical(I)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->offsetPositionRecordsForInsert(II)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->onAttachedToWindow()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->onChildAttachedToWindow(Landroid/view/View;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->onChildDetachedFromWindow(Landroid/view/View;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->onDraw(Landroid/graphics/Canvas;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->onEnterLayoutOrScroll()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->onExitLayoutOrScroll()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->onExitLayoutOrScroll(Z)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->onInterceptTouchEvent(Landroid/view/MotionEvent;)Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->onLayout(ZIIII)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->onMeasure(II)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->onScrollStateChanged(I)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->onScrolled(II)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->onSizeChanged(IIII)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->onTouchEvent(Landroid/view/MotionEvent;)Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->postAnimationRunner()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->predictiveItemAnimationsEnabled()Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->processAdapterUpdatesAndSetAnimationFlags()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->processDataSetCompletelyChanged(Z)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->pullGlows(FFFF)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->recoverFocusFromState()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->releaseGlows()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->removeAndRecycleViews()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->removeAnimatingView(Landroid/view/View;)Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->repositionShadowingViews()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->requestLayout()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->resetFocusInfo()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->resetScroll()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->saveFocusInfo()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->saveOldPositions()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->scrollByInternal(IILandroid/view/MotionEvent;I)Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->scrollStep(II[I)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->sendAccessibilityEventUnchecked(Landroid/view/accessibility/AccessibilityEvent;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->setAccessibilityDelegateCompat(Landroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->setAdapter(Landroidx/recyclerview/widget/RecyclerView$Adapter;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->setAdapterInternal(Landroidx/recyclerview/widget/RecyclerView$Adapter;ZZ)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->setLayoutFrozen(Z)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->setLayoutManager(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->setNestedScrollingEnabled(Z)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->setScrollState(I)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->shouldDeferAccessibilityEvent(Landroid/view/accessibility/AccessibilityEvent;)Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->startInterceptRequestLayout()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->startNestedScroll(II)Z
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->stopInterceptRequestLayout(Z)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->stopNestedScroll()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->stopNestedScroll(I)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->stopScroll()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->stopScrollersInternal()V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerView;->suppressLayout(Z)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate$ItemDelegate;-><init>(Landroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate$ItemDelegate;->getAccessibilityNodeProvider(Landroid/view/View;)Landroidx/core/view/accessibility/AccessibilityNodeProviderCompat;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate$ItemDelegate;->getAndRemoveOriginalDelegateForItem(Landroid/view/View;)Landroidx/core/view/AccessibilityDelegateCompat;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate$ItemDelegate;->onInitializeAccessibilityNodeInfo(Landroid/view/View;Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate$ItemDelegate;->saveOriginalDelegate(Landroid/view/View;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate;-><init>(Landroidx/recyclerview/widget/RecyclerView;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate;->getItemDelegate()Landroidx/core/view/AccessibilityDelegateCompat;
|
||||
HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate;->onInitializeAccessibilityEvent(Landroid/view/View;Landroid/view/accessibility/AccessibilityEvent;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate;->onInitializeAccessibilityNodeInfo(Landroid/view/View;Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)V
|
||||
HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate;->shouldIgnore()Z
|
||||
HSPLandroidx/recyclerview/widget/ScrollbarHelper;->computeScrollExtent(Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/OrientationHelper;Landroid/view/View;Landroid/view/View;Landroidx/recyclerview/widget/RecyclerView$LayoutManager;Z)I
|
||||
HSPLandroidx/recyclerview/widget/ScrollbarHelper;->computeScrollOffset(Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/OrientationHelper;Landroid/view/View;Landroid/view/View;Landroidx/recyclerview/widget/RecyclerView$LayoutManager;ZZ)I
|
||||
HSPLandroidx/recyclerview/widget/ScrollbarHelper;->computeScrollRange(Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/OrientationHelper;Landroid/view/View;Landroid/view/View;Landroidx/recyclerview/widget/RecyclerView$LayoutManager;Z)I
|
||||
HSPLandroidx/recyclerview/widget/SimpleItemAnimator;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/SimpleItemAnimator;->animateAppearance(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;)Z
|
||||
HSPLandroidx/recyclerview/widget/SimpleItemAnimator;->dispatchAddFinished(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
|
||||
HSPLandroidx/recyclerview/widget/SimpleItemAnimator;->dispatchAddStarting(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
|
||||
HSPLandroidx/recyclerview/widget/SimpleItemAnimator;->onAddFinished(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
|
||||
HSPLandroidx/recyclerview/widget/SimpleItemAnimator;->onAddStarting(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
|
||||
HSPLandroidx/recyclerview/widget/ViewBoundsCheck$BoundFlags;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/ViewBoundsCheck$BoundFlags;->addFlags(I)V
|
||||
HSPLandroidx/recyclerview/widget/ViewBoundsCheck$BoundFlags;->boundsMatch()Z
|
||||
HSPLandroidx/recyclerview/widget/ViewBoundsCheck$BoundFlags;->compare(II)I
|
||||
HSPLandroidx/recyclerview/widget/ViewBoundsCheck$BoundFlags;->resetFlags()V
|
||||
HSPLandroidx/recyclerview/widget/ViewBoundsCheck$BoundFlags;->setBounds(IIII)V
|
||||
HSPLandroidx/recyclerview/widget/ViewBoundsCheck;-><init>(Landroidx/recyclerview/widget/ViewBoundsCheck$Callback;)V
|
||||
HSPLandroidx/recyclerview/widget/ViewBoundsCheck;->findOneViewWithinBoundFlags(IIII)Landroid/view/View;
|
||||
HSPLandroidx/recyclerview/widget/ViewInfoStore$InfoRecord;-><clinit>()V
|
||||
HSPLandroidx/recyclerview/widget/ViewInfoStore$InfoRecord;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/ViewInfoStore$InfoRecord;->obtain()Landroidx/recyclerview/widget/ViewInfoStore$InfoRecord;
|
||||
HSPLandroidx/recyclerview/widget/ViewInfoStore$InfoRecord;->recycle(Landroidx/recyclerview/widget/ViewInfoStore$InfoRecord;)V
|
||||
HSPLandroidx/recyclerview/widget/ViewInfoStore;-><init>()V
|
||||
HSPLandroidx/recyclerview/widget/ViewInfoStore;->addToPostLayout(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;)V
|
||||
HSPLandroidx/recyclerview/widget/ViewInfoStore;->clear()V
|
||||
HSPLandroidx/recyclerview/widget/ViewInfoStore;->getFromOldChangeHolders(J)Landroidx/recyclerview/widget/RecyclerView$ViewHolder;
|
||||
HSPLandroidx/recyclerview/widget/ViewInfoStore;->process(Landroidx/recyclerview/widget/ViewInfoStore$ProcessCallback;)V
|
||||
HSPLandroidx/recyclerview/widget/ViewInfoStore;->removeFromDisappearedInLayout(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
|
||||
HSPLandroidx/recyclerview/widget/ViewInfoStore;->removeViewHolder(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
|
||||
PLandroidx/recyclerview/widget/GapWorker;->remove(Landroidx/recyclerview/widget/RecyclerView;)V
|
||||
PLandroidx/recyclerview/widget/LinearLayoutManager$SavedState$1;-><init>()V
|
||||
PLandroidx/recyclerview/widget/LinearLayoutManager$SavedState;-><clinit>()V
|
||||
PLandroidx/recyclerview/widget/LinearLayoutManager$SavedState;-><init>()V
|
||||
PLandroidx/recyclerview/widget/LinearLayoutManager;->getChildClosestToStart()Landroid/view/View;
|
||||
PLandroidx/recyclerview/widget/LinearLayoutManager;->onDetachedFromWindow(Landroidx/recyclerview/widget/RecyclerView;Landroidx/recyclerview/widget/RecyclerView$Recycler;)V
|
||||
PLandroidx/recyclerview/widget/LinearLayoutManager;->onSaveInstanceState()Landroid/os/Parcelable;
|
||||
PLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->dispatchDetachedFromWindow(Landroidx/recyclerview/widget/RecyclerView;Landroidx/recyclerview/widget/RecyclerView$Recycler;)V
|
||||
PLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onDetachedFromWindow(Landroidx/recyclerview/widget/RecyclerView;)V
|
||||
PLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onDetachedFromWindow(Landroidx/recyclerview/widget/RecyclerView;Landroidx/recyclerview/widget/RecyclerView$Recycler;)V
|
||||
PLandroidx/recyclerview/widget/RecyclerView$SavedState$1;-><init>()V
|
||||
PLandroidx/recyclerview/widget/RecyclerView$SavedState;-><clinit>()V
|
||||
PLandroidx/recyclerview/widget/RecyclerView$SavedState;-><init>(Landroid/os/Parcelable;)V
|
||||
PLandroidx/recyclerview/widget/RecyclerView;->dispatchSaveInstanceState(Landroid/util/SparseArray;)V
|
||||
PLandroidx/recyclerview/widget/RecyclerView;->onDetachedFromWindow()V
|
||||
PLandroidx/recyclerview/widget/RecyclerView;->onSaveInstanceState()Landroid/os/Parcelable;
|
||||
PLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate$ItemDelegate;->onInitializeAccessibilityEvent(Landroid/view/View;Landroid/view/accessibility/AccessibilityEvent;)V
|
||||
PLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate$ItemDelegate;->sendAccessibilityEventUnchecked(Landroid/view/View;Landroid/view/accessibility/AccessibilityEvent;)V
|
||||
PLandroidx/recyclerview/widget/ViewInfoStore$InfoRecord;->drainCache()V
|
||||
PLandroidx/recyclerview/widget/ViewInfoStore;->onDetach()V
|
25
obj/Debug/net8.0-android/lp/104/jl/proguard.txt
Normal file
25
obj/Debug/net8.0-android/lp/104/jl/proguard.txt
Normal file
@ -0,0 +1,25 @@
|
||||
# Copyright (C) 2015 The Android Open Source Project
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
# When layoutManager xml attribute is used, RecyclerView inflates
|
||||
#LayoutManagers' constructors using reflection.
|
||||
-keep public class * extends androidx.recyclerview.widget.RecyclerView$LayoutManager {
|
||||
public <init>(android.content.Context, android.util.AttributeSet, int, int);
|
||||
public <init>();
|
||||
}
|
||||
|
||||
-keepclassmembers class androidx.recyclerview.widget.RecyclerView {
|
||||
public void suppressLayout(boolean);
|
||||
public boolean isLayoutSuppressed();
|
||||
}
|
9
obj/Debug/net8.0-android/lp/104/jl/public.txt
Normal file
9
obj/Debug/net8.0-android/lp/104/jl/public.txt
Normal file
@ -0,0 +1,9 @@
|
||||
attr fastScrollEnabled
|
||||
attr fastScrollHorizontalThumbDrawable
|
||||
attr fastScrollHorizontalTrackDrawable
|
||||
attr fastScrollVerticalThumbDrawable
|
||||
attr fastScrollVerticalTrackDrawable
|
||||
attr layoutManager
|
||||
attr reverseLayout
|
||||
attr spanCount
|
||||
attr stackFromEnd
|
1
obj/Debug/net8.0-android/lp/105/jl/R.txt
Normal file
1
obj/Debug/net8.0-android/lp/105/jl/R.txt
Normal file
@ -0,0 +1 @@
|
||||
int id view_tree_view_model_store_owner 0x0
|
15
obj/Debug/net8.0-android/lp/105/jl/baseline-prof.txt
Normal file
15
obj/Debug/net8.0-android/lp/105/jl/baseline-prof.txt
Normal file
@ -0,0 +1,15 @@
|
||||
# Baseline profiles for Lifecycle ViewModel
|
||||
|
||||
HSPLandroidx/lifecycle/ViewModel;-><init>()V
|
||||
HSPLandroidx/lifecycle/ViewModelLazy;-><init>(Lkotlin/reflect/KClass;Lkotlin/jvm/functions/Function0;Lkotlin/jvm/functions/Function0;)V
|
||||
HSPLandroidx/lifecycle/ViewModelLazy;->getValue()Landroidx/lifecycle/ViewModel;
|
||||
HSPLandroidx/lifecycle/ViewModelLazy;->getValue()Ljava/lang/Object;
|
||||
HSPLandroidx/lifecycle/ViewModelProvider;-><init>(Landroidx/lifecycle/ViewModelStore;Landroidx/lifecycle/ViewModelProvider$Factory;)V
|
||||
HSPLandroidx/lifecycle/ViewModelProvider;->get(Ljava/lang/Class;)Landroidx/lifecycle/ViewModel;
|
||||
HSPLandroidx/lifecycle/ViewModelProvider;->get(Ljava/lang/String;Ljava/lang/Class;)Landroidx/lifecycle/ViewModel;
|
||||
HSPLandroidx/lifecycle/ViewModelStore;-><init>()V
|
||||
HSPLandroidx/lifecycle/ViewModelStore;->get(Ljava/lang/String;)Landroidx/lifecycle/ViewModel;
|
||||
HSPLandroidx/lifecycle/ViewModelStore;->put(Ljava/lang/String;Landroidx/lifecycle/ViewModel;)V
|
||||
PLandroidx/lifecycle/ViewModel;->clear()V
|
||||
PLandroidx/lifecycle/ViewModel;->onCleared()V
|
||||
PLandroidx/lifecycle/ViewModelStore;->clear()V
|
7
obj/Debug/net8.0-android/lp/105/jl/proguard.txt
Normal file
7
obj/Debug/net8.0-android/lp/105/jl/proguard.txt
Normal file
@ -0,0 +1,7 @@
|
||||
-keepclassmembers,allowobfuscation class * extends androidx.lifecycle.ViewModel {
|
||||
<init>();
|
||||
}
|
||||
|
||||
-keepclassmembers,allowobfuscation class * extends androidx.lifecycle.AndroidViewModel {
|
||||
<init>(android.app.Application);
|
||||
}
|
0
obj/Debug/net8.0-android/lp/105/jl/public.txt
Normal file
0
obj/Debug/net8.0-android/lp/105/jl/public.txt
Normal file
0
obj/Debug/net8.0-android/lp/106/jl/R.txt
Normal file
0
obj/Debug/net8.0-android/lp/106/jl/R.txt
Normal file
40
obj/Debug/net8.0-android/lp/106/jl/baseline-prof.txt
Normal file
40
obj/Debug/net8.0-android/lp/106/jl/baseline-prof.txt
Normal file
@ -0,0 +1,40 @@
|
||||
# Baseline profiles for lifecycle-livedata-core
|
||||
|
||||
HSPLandroidx/lifecycle/LiveData$1;-><init>(Landroidx/lifecycle/LiveData;)V
|
||||
HSPLandroidx/lifecycle/LiveData$1;->run()V
|
||||
HSPLandroidx/lifecycle/LiveData$AlwaysActiveObserver;-><init>(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/Observer;)V
|
||||
HSPLandroidx/lifecycle/LiveData$AlwaysActiveObserver;->shouldBeActive()Z
|
||||
HSPLandroidx/lifecycle/LiveData$LifecycleBoundObserver;-><init>(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Observer;)V
|
||||
HSPLandroidx/lifecycle/LiveData$LifecycleBoundObserver;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
|
||||
HSPLandroidx/lifecycle/LiveData$LifecycleBoundObserver;->shouldBeActive()Z
|
||||
HSPLandroidx/lifecycle/LiveData$ObserverWrapper;-><init>(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/Observer;)V
|
||||
HSPLandroidx/lifecycle/LiveData$ObserverWrapper;->activeStateChanged(Z)V
|
||||
HSPLandroidx/lifecycle/LiveData$ObserverWrapper;->detachObserver()V
|
||||
HSPLandroidx/lifecycle/LiveData;-><clinit>()V
|
||||
HSPLandroidx/lifecycle/LiveData;-><init>()V
|
||||
HSPLandroidx/lifecycle/LiveData;->assertMainThread(Ljava/lang/String;)V
|
||||
HSPLandroidx/lifecycle/LiveData;->changeActiveCounter(I)V
|
||||
HSPLandroidx/lifecycle/LiveData;->considerNotify(Landroidx/lifecycle/LiveData$ObserverWrapper;)V
|
||||
HSPLandroidx/lifecycle/LiveData;->dispatchingValue(Landroidx/lifecycle/LiveData$ObserverWrapper;)V
|
||||
HSPLandroidx/lifecycle/LiveData;->getValue()Ljava/lang/Object;
|
||||
HSPLandroidx/lifecycle/LiveData;->getVersion()I
|
||||
HSPLandroidx/lifecycle/LiveData;->hasActiveObservers()Z
|
||||
HSPLandroidx/lifecycle/LiveData;->observe(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Observer;)V
|
||||
HSPLandroidx/lifecycle/LiveData;->observeForever(Landroidx/lifecycle/Observer;)V
|
||||
HSPLandroidx/lifecycle/LiveData;->onActive()V
|
||||
HSPLandroidx/lifecycle/LiveData;->onInactive()V
|
||||
HSPLandroidx/lifecycle/LiveData;->postValue(Ljava/lang/Object;)V
|
||||
HSPLandroidx/lifecycle/LiveData;->removeObserver(Landroidx/lifecycle/Observer;)V
|
||||
HSPLandroidx/lifecycle/LiveData;->setValue(Ljava/lang/Object;)V
|
||||
HSPLandroidx/lifecycle/MediatorLiveData$Source;-><init>(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/Observer;)V
|
||||
HSPLandroidx/lifecycle/MediatorLiveData$Source;->onChanged(Ljava/lang/Object;)V
|
||||
HSPLandroidx/lifecycle/MediatorLiveData$Source;->plug()V
|
||||
HSPLandroidx/lifecycle/MediatorLiveData$Source;->unplug()V
|
||||
HSPLandroidx/lifecycle/MediatorLiveData;-><init>()V
|
||||
HSPLandroidx/lifecycle/MediatorLiveData;->addSource(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/Observer;)V
|
||||
HSPLandroidx/lifecycle/MediatorLiveData;->onActive()V
|
||||
HSPLandroidx/lifecycle/MediatorLiveData;->onInactive()V
|
||||
HSPLandroidx/lifecycle/MediatorLiveData;->removeSource(Landroidx/lifecycle/LiveData;)V
|
||||
HSPLandroidx/lifecycle/MutableLiveData;-><init>()V
|
||||
HSPLandroidx/lifecycle/MutableLiveData;->setValue(Ljava/lang/Object;)V
|
||||
PLandroidx/lifecycle/LiveData$LifecycleBoundObserver;->detachObserver()V
|
0
obj/Debug/net8.0-android/lp/106/jl/public.txt
Normal file
0
obj/Debug/net8.0-android/lp/106/jl/public.txt
Normal file
131
obj/Debug/net8.0-android/lp/107/jl/R.txt
Normal file
131
obj/Debug/net8.0-android/lp/107/jl/R.txt
Normal file
@ -0,0 +1,131 @@
|
||||
int attr alpha 0x7f040001
|
||||
int attr font 0x7f040002
|
||||
int attr fontProviderAuthority 0x7f040003
|
||||
int attr fontProviderCerts 0x7f040004
|
||||
int attr fontProviderFetchStrategy 0x7f040005
|
||||
int attr fontProviderFetchTimeout 0x7f040006
|
||||
int attr fontProviderPackage 0x7f040007
|
||||
int attr fontProviderQuery 0x7f040008
|
||||
int attr fontStyle 0x7f040009
|
||||
int attr fontVariationSettings 0x7f04000a
|
||||
int attr fontWeight 0x7f04000b
|
||||
int attr ttcIndex 0x7f04000c
|
||||
int color notification_action_color_filter 0x7f060001
|
||||
int color notification_icon_bg_color 0x7f060002
|
||||
int color ripple_material_light 0x7f060003
|
||||
int color secondary_text_default_material_light 0x7f060004
|
||||
int dimen compat_button_inset_horizontal_material 0x7f070001
|
||||
int dimen compat_button_inset_vertical_material 0x7f070002
|
||||
int dimen compat_button_padding_horizontal_material 0x7f070003
|
||||
int dimen compat_button_padding_vertical_material 0x7f070004
|
||||
int dimen compat_control_corner_material 0x7f070005
|
||||
int dimen compat_notification_large_icon_max_height 0x7f070006
|
||||
int dimen compat_notification_large_icon_max_width 0x7f070007
|
||||
int dimen notification_action_icon_size 0x7f070008
|
||||
int dimen notification_action_text_size 0x7f070009
|
||||
int dimen notification_big_circle_margin 0x7f07000a
|
||||
int dimen notification_content_margin_start 0x7f07000b
|
||||
int dimen notification_large_icon_height 0x7f07000c
|
||||
int dimen notification_large_icon_width 0x7f07000d
|
||||
int dimen notification_main_column_padding_top 0x7f07000e
|
||||
int dimen notification_media_narrow_margin 0x7f07000f
|
||||
int dimen notification_right_icon_size 0x7f070010
|
||||
int dimen notification_right_side_padding_top 0x7f070011
|
||||
int dimen notification_small_icon_background_padding 0x7f070012
|
||||
int dimen notification_small_icon_size_as_large 0x7f070013
|
||||
int dimen notification_subtext_size 0x7f070014
|
||||
int dimen notification_top_pad 0x7f070015
|
||||
int dimen notification_top_pad_large_text 0x7f070016
|
||||
int drawable notification_action_background 0x7f080001
|
||||
int drawable notification_bg 0x7f080002
|
||||
int drawable notification_bg_low 0x7f080003
|
||||
int drawable notification_bg_low_normal 0x7f080004
|
||||
int drawable notification_bg_low_pressed 0x7f080005
|
||||
int drawable notification_bg_normal 0x7f080006
|
||||
int drawable notification_bg_normal_pressed 0x7f080007
|
||||
int drawable notification_icon_background 0x7f080008
|
||||
int drawable notification_template_icon_bg 0x7f080009
|
||||
int drawable notification_template_icon_low_bg 0x7f08000a
|
||||
int drawable notification_tile_bg 0x7f08000b
|
||||
int drawable notify_panel_notification_icon_bg 0x7f08000c
|
||||
int id action_container 0x7f0b0001
|
||||
int id action_divider 0x7f0b0002
|
||||
int id action_image 0x7f0b0003
|
||||
int id action_text 0x7f0b0004
|
||||
int id actions 0x7f0b0005
|
||||
int id async 0x7f0b0006
|
||||
int id blocking 0x7f0b0007
|
||||
int id chronometer 0x7f0b0008
|
||||
int id forever 0x7f0b0009
|
||||
int id icon 0x7f0b000a
|
||||
int id icon_group 0x7f0b000b
|
||||
int id info 0x7f0b000c
|
||||
int id italic 0x7f0b000d
|
||||
int id line1 0x7f0b000e
|
||||
int id line3 0x7f0b000f
|
||||
int id normal 0x7f0b0010
|
||||
int id notification_background 0x7f0b0011
|
||||
int id notification_main_column 0x7f0b0012
|
||||
int id notification_main_column_container 0x7f0b0013
|
||||
int id right_icon 0x7f0b0014
|
||||
int id right_side 0x7f0b0015
|
||||
int id tag_transition_group 0x7f0b0016
|
||||
int id tag_unhandled_key_event_manager 0x7f0b0017
|
||||
int id tag_unhandled_key_listeners 0x7f0b0018
|
||||
int id text 0x7f0b0019
|
||||
int id text2 0x7f0b001a
|
||||
int id time 0x7f0b001b
|
||||
int id title 0x7f0b001c
|
||||
int integer status_bar_notification_info_maxnum 0x7f0c0001
|
||||
int layout notification_action 0x7f0e0001
|
||||
int layout notification_action_tombstone 0x7f0e0002
|
||||
int layout notification_template_custom_big 0x7f0e0003
|
||||
int layout notification_template_icon_group 0x7f0e0004
|
||||
int layout notification_template_part_chronometer 0x7f0e0005
|
||||
int layout notification_template_part_time 0x7f0e0006
|
||||
int string status_bar_notification_info_overflow 0x7f140001
|
||||
int style TextAppearance_Compat_Notification 0x7f150001
|
||||
int style TextAppearance_Compat_Notification_Info 0x7f150002
|
||||
int style TextAppearance_Compat_Notification_Line2 0x7f150003
|
||||
int style TextAppearance_Compat_Notification_Time 0x7f150004
|
||||
int style TextAppearance_Compat_Notification_Title 0x7f150005
|
||||
int style Widget_Compat_NotificationActionContainer 0x7f150006
|
||||
int style Widget_Compat_NotificationActionText 0x7f150007
|
||||
int[] styleable ColorStateListItem { 0x7f040001, 0x101031f, 0x10101a5 }
|
||||
int styleable ColorStateListItem_alpha 0
|
||||
int styleable ColorStateListItem_android_alpha 1
|
||||
int styleable ColorStateListItem_android_color 2
|
||||
int[] styleable FontFamily { 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008 }
|
||||
int styleable FontFamily_fontProviderAuthority 0
|
||||
int styleable FontFamily_fontProviderCerts 1
|
||||
int styleable FontFamily_fontProviderFetchStrategy 2
|
||||
int styleable FontFamily_fontProviderFetchTimeout 3
|
||||
int styleable FontFamily_fontProviderPackage 4
|
||||
int styleable FontFamily_fontProviderQuery 5
|
||||
int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f040002, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c }
|
||||
int styleable FontFamilyFont_android_font 0
|
||||
int styleable FontFamilyFont_android_fontStyle 1
|
||||
int styleable FontFamilyFont_android_fontVariationSettings 2
|
||||
int styleable FontFamilyFont_android_fontWeight 3
|
||||
int styleable FontFamilyFont_android_ttcIndex 4
|
||||
int styleable FontFamilyFont_font 5
|
||||
int styleable FontFamilyFont_fontStyle 6
|
||||
int styleable FontFamilyFont_fontVariationSettings 7
|
||||
int styleable FontFamilyFont_fontWeight 8
|
||||
int styleable FontFamilyFont_ttcIndex 9
|
||||
int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 }
|
||||
int styleable GradientColor_android_centerColor 0
|
||||
int styleable GradientColor_android_centerX 1
|
||||
int styleable GradientColor_android_centerY 2
|
||||
int styleable GradientColor_android_endColor 3
|
||||
int styleable GradientColor_android_endX 4
|
||||
int styleable GradientColor_android_endY 5
|
||||
int styleable GradientColor_android_gradientRadius 6
|
||||
int styleable GradientColor_android_startColor 7
|
||||
int styleable GradientColor_android_startX 8
|
||||
int styleable GradientColor_android_startY 9
|
||||
int styleable GradientColor_android_tileMode 10
|
||||
int styleable GradientColor_android_type 11
|
||||
int[] styleable GradientColorItem { 0x10101a5, 0x1010514 }
|
||||
int styleable GradientColorItem_android_color 0
|
||||
int styleable GradientColorItem_android_offset 1
|
0
obj/Debug/net8.0-android/lp/108/jl/R.txt
Normal file
0
obj/Debug/net8.0-android/lp/108/jl/R.txt
Normal file
7
obj/Debug/net8.0-android/lp/108/jl/proguard.txt
Normal file
7
obj/Debug/net8.0-android/lp/108/jl/proguard.txt
Normal file
@ -0,0 +1,7 @@
|
||||
-keepclassmembers,allowobfuscation class * extends androidx.lifecycle.ViewModel {
|
||||
<init>(androidx.lifecycle.SavedStateHandle);
|
||||
}
|
||||
|
||||
-keepclassmembers,allowobfuscation class * extends androidx.lifecycle.AndroidViewModel {
|
||||
<init>(android.app.Application,androidx.lifecycle.SavedStateHandle);
|
||||
}
|
0
obj/Debug/net8.0-android/lp/108/jl/public.txt
Normal file
0
obj/Debug/net8.0-android/lp/108/jl/public.txt
Normal file
2
obj/Debug/net8.0-android/lp/109/jl/R.txt
Normal file
2
obj/Debug/net8.0-android/lp/109/jl/R.txt
Normal file
@ -0,0 +1,2 @@
|
||||
int id report_drawn 0x0
|
||||
int id view_tree_on_back_pressed_dispatcher_owner 0x0
|
86
obj/Debug/net8.0-android/lp/109/jl/baseline-prof.txt
Normal file
86
obj/Debug/net8.0-android/lp/109/jl/baseline-prof.txt
Normal file
@ -0,0 +1,86 @@
|
||||
# Baseline profiles for androidx.activity
|
||||
|
||||
HSPLandroidx/activity/ComponentActivity$1;-><init>(Landroidx/activity/ComponentActivity;)V
|
||||
HSPLandroidx/activity/ComponentActivity$2;-><init>(Landroidx/activity/ComponentActivity;)V
|
||||
HSPLandroidx/activity/ComponentActivity$3;-><init>(Landroidx/activity/ComponentActivity;)V
|
||||
HSPLandroidx/activity/ComponentActivity$3;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
|
||||
HSPLandroidx/activity/ComponentActivity$4;-><init>(Landroidx/activity/ComponentActivity;)V
|
||||
HSPLandroidx/activity/ComponentActivity$4;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
|
||||
HSPLandroidx/activity/ComponentActivity$5;-><init>(Landroidx/activity/ComponentActivity;)V
|
||||
HSPLandroidx/activity/ComponentActivity$5;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
|
||||
HSPLandroidx/activity/ComponentActivity$6;-><init>(Landroidx/activity/ComponentActivity;)V
|
||||
HSPLandroidx/activity/ComponentActivity$7;-><init>(Landroidx/activity/ComponentActivity;)V
|
||||
HSPLandroidx/activity/ComponentActivity$7;->onContextAvailable(Landroid/content/Context;)V
|
||||
HSPLandroidx/activity/ComponentActivity;-><init>()V
|
||||
HSPLandroidx/activity/ComponentActivity;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V
|
||||
HSPLandroidx/activity/ComponentActivity;->ensureViewModelStore()V
|
||||
HSPLandroidx/activity/ComponentActivity;->getActivityResultRegistry()Landroidx/activity/result/ActivityResultRegistry;
|
||||
HSPLandroidx/activity/ComponentActivity;->getLifecycle()Landroidx/lifecycle/Lifecycle;
|
||||
HSPLandroidx/activity/ComponentActivity;->getOnBackPressedDispatcher()Landroidx/activity/OnBackPressedDispatcher;
|
||||
HSPLandroidx/activity/ComponentActivity;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry;
|
||||
HSPLandroidx/activity/ComponentActivity;->getViewModelStore()Landroidx/lifecycle/ViewModelStore;
|
||||
HSPLandroidx/activity/ComponentActivity;->onCreate(Landroid/os/Bundle;)V
|
||||
HSPLandroidx/activity/OnBackPressedCallback;-><init>(Z)V
|
||||
HSPLandroidx/activity/OnBackPressedCallback;->addCancellable(Landroidx/activity/Cancellable;)V
|
||||
HSPLandroidx/activity/OnBackPressedCallback;->remove()V
|
||||
HSPLandroidx/activity/OnBackPressedCallback;->setEnabled(Z)V
|
||||
HSPLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;-><init>(Landroidx/activity/OnBackPressedDispatcher;Landroidx/lifecycle/Lifecycle;Landroidx/activity/OnBackPressedCallback;)V
|
||||
HSPLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
|
||||
HSPLandroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;-><init>(Landroidx/activity/OnBackPressedDispatcher;Landroidx/activity/OnBackPressedCallback;)V
|
||||
HSPLandroidx/activity/OnBackPressedDispatcher;-><init>(Ljava/lang/Runnable;)V
|
||||
HSPLandroidx/activity/OnBackPressedDispatcher;->addCallback(Landroidx/lifecycle/LifecycleOwner;Landroidx/activity/OnBackPressedCallback;)V
|
||||
HSPLandroidx/activity/OnBackPressedDispatcher;->addCancellableCallback(Landroidx/activity/OnBackPressedCallback;)Landroidx/activity/Cancellable;
|
||||
HSPLandroidx/activity/contextaware/ContextAwareHelper;-><init>()V
|
||||
HSPLandroidx/activity/contextaware/ContextAwareHelper;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V
|
||||
HSPLandroidx/activity/contextaware/ContextAwareHelper;->dispatchOnContextAvailable(Landroid/content/Context;)V
|
||||
HSPLandroidx/activity/result/ActivityResultLauncher;-><init>()V
|
||||
HSPLandroidx/activity/result/ActivityResultRegistry$3;-><init>(Landroidx/activity/result/ActivityResultRegistry;Ljava/lang/String;ILandroidx/activity/result/contract/ActivityResultContract;)V
|
||||
HSPLandroidx/activity/result/ActivityResultRegistry$CallbackAndContract;-><init>(Landroidx/activity/result/ActivityResultCallback;Landroidx/activity/result/contract/ActivityResultContract;)V
|
||||
HSPLandroidx/activity/result/ActivityResultRegistry;-><init>()V
|
||||
HSPLandroidx/activity/result/ActivityResultRegistry;->bindRcKey(ILjava/lang/String;)V
|
||||
HSPLandroidx/activity/result/ActivityResultRegistry;->generateRandomNumber()I
|
||||
HSPLandroidx/activity/result/ActivityResultRegistry;->register(Ljava/lang/String;Landroidx/activity/result/contract/ActivityResultContract;Landroidx/activity/result/ActivityResultCallback;)Landroidx/activity/result/ActivityResultLauncher;
|
||||
HSPLandroidx/activity/result/ActivityResultRegistry;->registerKey(Ljava/lang/String;)I
|
||||
HSPLandroidx/activity/result/contract/ActivityResultContract;-><init>()V
|
||||
HSPLandroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions;-><init>()V
|
||||
HSPLandroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult;-><init>()V
|
||||
Landroidx/activity/Cancellable;
|
||||
Landroidx/activity/ComponentActivity$1;
|
||||
Landroidx/activity/ComponentActivity$2;
|
||||
Landroidx/activity/ComponentActivity$3;
|
||||
Landroidx/activity/ComponentActivity$4;
|
||||
Landroidx/activity/ComponentActivity$5;
|
||||
Landroidx/activity/ComponentActivity$6;
|
||||
Landroidx/activity/ComponentActivity$7;
|
||||
Landroidx/activity/ComponentActivity$NonConfigurationInstances;
|
||||
Landroidx/activity/ComponentActivity;
|
||||
Landroidx/activity/OnBackPressedCallback;
|
||||
Landroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;
|
||||
Landroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;
|
||||
Landroidx/activity/OnBackPressedDispatcher;
|
||||
Landroidx/activity/OnBackPressedDispatcherOwner;
|
||||
Landroidx/activity/contextaware/ContextAware;
|
||||
Landroidx/activity/contextaware/ContextAwareHelper;
|
||||
Landroidx/activity/contextaware/OnContextAvailableListener;
|
||||
Landroidx/activity/result/ActivityResult;
|
||||
Landroidx/activity/result/ActivityResultCallback;
|
||||
Landroidx/activity/result/ActivityResultCaller;
|
||||
Landroidx/activity/result/ActivityResultLauncher;
|
||||
Landroidx/activity/result/ActivityResultRegistry$3;
|
||||
Landroidx/activity/result/ActivityResultRegistry$CallbackAndContract;
|
||||
Landroidx/activity/result/ActivityResultRegistry;
|
||||
Landroidx/activity/result/ActivityResultRegistryOwner;
|
||||
Landroidx/activity/result/contract/ActivityResultContract;
|
||||
Landroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions;
|
||||
Landroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult;
|
||||
PLandroidx/activity/ComponentActivity$1;->run()V
|
||||
PLandroidx/activity/ComponentActivity;->access$001(Landroidx/activity/ComponentActivity;)V
|
||||
PLandroidx/activity/ComponentActivity;->onBackPressed()V
|
||||
PLandroidx/activity/OnBackPressedCallback;->isEnabled()Z
|
||||
PLandroidx/activity/OnBackPressedCallback;->removeCancellable(Landroidx/activity/Cancellable;)V
|
||||
PLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->cancel()V
|
||||
PLandroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;->cancel()V
|
||||
PLandroidx/activity/OnBackPressedDispatcher;->onBackPressed()V
|
||||
PLandroidx/activity/contextaware/ContextAwareHelper;->clearAvailableContext()V
|
||||
PLandroidx/activity/result/ActivityResultRegistry$3;->unregister()V
|
||||
PLandroidx/activity/result/ActivityResultRegistry;->unregister(Ljava/lang/String;)V
|
0
obj/Debug/net8.0-android/lp/109/jl/public.txt
Normal file
0
obj/Debug/net8.0-android/lp/109/jl/public.txt
Normal file
17
obj/Debug/net8.0-android/lp/110/jl/R.txt
Normal file
17
obj/Debug/net8.0-android/lp/110/jl/R.txt
Normal file
@ -0,0 +1,17 @@
|
||||
int anim fragment_fast_out_extra_slow_in 0x0
|
||||
int animator fragment_close_enter 0x0
|
||||
int animator fragment_close_exit 0x0
|
||||
int animator fragment_fade_enter 0x0
|
||||
int animator fragment_fade_exit 0x0
|
||||
int animator fragment_open_enter 0x0
|
||||
int animator fragment_open_exit 0x0
|
||||
int id fragment_container_view_tag 0x0
|
||||
int id special_effects_controller_view_tag 0x0
|
||||
int id visible_removing_fragment_view_tag 0x0
|
||||
int[] styleable Fragment { 0x10100d0, 0x1010003, 0x10100d1 }
|
||||
int styleable Fragment_android_id 0
|
||||
int styleable Fragment_android_name 1
|
||||
int styleable Fragment_android_tag 2
|
||||
int[] styleable FragmentContainerView { 0x1010003, 0x10100d1 }
|
||||
int styleable FragmentContainerView_android_name 0
|
||||
int styleable FragmentContainerView_android_tag 1
|
477
obj/Debug/net8.0-android/lp/110/jl/baseline-prof.txt
Normal file
477
obj/Debug/net8.0-android/lp/110/jl/baseline-prof.txt
Normal file
@ -0,0 +1,477 @@
|
||||
# Baseline profiles for androidx.fragment
|
||||
|
||||
HSPLandroidx/fragment/R$styleable;-><clinit>()V
|
||||
HSPLandroidx/fragment/app/BackStackRecord;-><init>(Landroidx/fragment/app/FragmentManager;)V
|
||||
HSPLandroidx/fragment/app/BackStackRecord;->bumpBackStackNesting(I)V
|
||||
HSPLandroidx/fragment/app/BackStackRecord;->commit()I
|
||||
HSPLandroidx/fragment/app/BackStackRecord;->commitInternal(Z)I
|
||||
HSPLandroidx/fragment/app/BackStackRecord;->doAddOp(ILandroidx/fragment/app/Fragment;Ljava/lang/String;I)V
|
||||
HSPLandroidx/fragment/app/BackStackRecord;->executeOps()V
|
||||
HSPLandroidx/fragment/app/BackStackRecord;->expandOps(Ljava/util/ArrayList;Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/BackStackRecord;->generateOps(Ljava/util/ArrayList;Ljava/util/ArrayList;)Z
|
||||
HSPLandroidx/fragment/app/BackStackRecord;->runOnCommitRunnables()V
|
||||
HSPLandroidx/fragment/app/BackStackRecord;->setPrimaryNavigationFragment(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentTransaction;
|
||||
HSPLandroidx/fragment/app/DefaultSpecialEffectsController;-><init>(Landroid/view/ViewGroup;)V
|
||||
HSPLandroidx/fragment/app/Fragment$1;-><init>(Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/Fragment$4;-><init>(Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/Fragment$4;->onFindViewById(I)Landroid/view/View;
|
||||
HSPLandroidx/fragment/app/Fragment$4;->onHasView()Z
|
||||
HSPLandroidx/fragment/app/Fragment$5;-><init>(Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/Fragment$5;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
|
||||
HSPLandroidx/fragment/app/Fragment$AnimationInfo;-><init>()V
|
||||
HSPLandroidx/fragment/app/Fragment;-><clinit>()V
|
||||
HSPLandroidx/fragment/app/Fragment;-><init>()V
|
||||
HSPLandroidx/fragment/app/Fragment;->createFragmentContainer()Landroidx/fragment/app/FragmentContainer;
|
||||
HSPLandroidx/fragment/app/Fragment;->ensureAnimationInfo()Landroidx/fragment/app/Fragment$AnimationInfo;
|
||||
HSPLandroidx/fragment/app/Fragment;->equals(Ljava/lang/Object;)Z
|
||||
HSPLandroidx/fragment/app/Fragment;->getActivity()Landroidx/fragment/app/FragmentActivity;
|
||||
HSPLandroidx/fragment/app/Fragment;->getChildFragmentManager()Landroidx/fragment/app/FragmentManager;
|
||||
HSPLandroidx/fragment/app/Fragment;->getContext()Landroid/content/Context;
|
||||
HSPLandroidx/fragment/app/Fragment;->getFocusedView()Landroid/view/View;
|
||||
HSPLandroidx/fragment/app/Fragment;->getId()I
|
||||
HSPLandroidx/fragment/app/Fragment;->getLayoutInflater(Landroid/os/Bundle;)Landroid/view/LayoutInflater;
|
||||
HSPLandroidx/fragment/app/Fragment;->getLifecycle()Landroidx/lifecycle/Lifecycle;
|
||||
HSPLandroidx/fragment/app/Fragment;->getMinimumMaxLifecycleState()I
|
||||
HSPLandroidx/fragment/app/Fragment;->getParentFragment()Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/Fragment;->getParentFragmentManager()Landroidx/fragment/app/FragmentManager;
|
||||
HSPLandroidx/fragment/app/Fragment;->getPostOnViewCreatedAlpha()F
|
||||
HSPLandroidx/fragment/app/Fragment;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry;
|
||||
HSPLandroidx/fragment/app/Fragment;->getTag()Ljava/lang/String;
|
||||
HSPLandroidx/fragment/app/Fragment;->getView()Landroid/view/View;
|
||||
HSPLandroidx/fragment/app/Fragment;->getViewLifecycleOwner()Landroidx/lifecycle/LifecycleOwner;
|
||||
HSPLandroidx/fragment/app/Fragment;->getViewLifecycleOwnerLiveData()Landroidx/lifecycle/LiveData;
|
||||
HSPLandroidx/fragment/app/Fragment;->getViewModelStore()Landroidx/lifecycle/ViewModelStore;
|
||||
HSPLandroidx/fragment/app/Fragment;->initLifecycle()V
|
||||
HSPLandroidx/fragment/app/Fragment;->instantiate(Landroid/content/Context;Ljava/lang/String;Landroid/os/Bundle;)Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/Fragment;->isAdded()Z
|
||||
HSPLandroidx/fragment/app/Fragment;->isMenuVisible()Z
|
||||
HSPLandroidx/fragment/app/Fragment;->noteStateNotSaved()V
|
||||
HSPLandroidx/fragment/app/Fragment;->onActivityCreated(Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->onAttach(Landroid/app/Activity;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->onAttach(Landroid/content/Context;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->onAttachFragment(Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->onCreate(Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->onGetLayoutInflater(Landroid/os/Bundle;)Landroid/view/LayoutInflater;
|
||||
HSPLandroidx/fragment/app/Fragment;->onInflate(Landroid/app/Activity;Landroid/util/AttributeSet;Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->onInflate(Landroid/content/Context;Landroid/util/AttributeSet;Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->onPrimaryNavigationFragmentChanged(Z)V
|
||||
HSPLandroidx/fragment/app/Fragment;->onResume()V
|
||||
HSPLandroidx/fragment/app/Fragment;->onStart()V
|
||||
HSPLandroidx/fragment/app/Fragment;->onViewCreated(Landroid/view/View;Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->onViewStateRestored(Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->performActivityCreated(Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->performAttach()V
|
||||
HSPLandroidx/fragment/app/Fragment;->performCreate(Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->performCreateOptionsMenu(Landroid/view/Menu;Landroid/view/MenuInflater;)Z
|
||||
HSPLandroidx/fragment/app/Fragment;->performCreateView(Landroid/view/LayoutInflater;Landroid/view/ViewGroup;Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->performGetLayoutInflater(Landroid/os/Bundle;)Landroid/view/LayoutInflater;
|
||||
HSPLandroidx/fragment/app/Fragment;->performPrepareOptionsMenu(Landroid/view/Menu;)Z
|
||||
HSPLandroidx/fragment/app/Fragment;->performPrimaryNavigationFragmentChanged()V
|
||||
HSPLandroidx/fragment/app/Fragment;->performResume()V
|
||||
HSPLandroidx/fragment/app/Fragment;->performStart()V
|
||||
HSPLandroidx/fragment/app/Fragment;->performViewCreated()V
|
||||
HSPLandroidx/fragment/app/Fragment;->requireContext()Landroid/content/Context;
|
||||
HSPLandroidx/fragment/app/Fragment;->requireView()Landroid/view/View;
|
||||
HSPLandroidx/fragment/app/Fragment;->restoreChildFragmentState(Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->restoreViewState()V
|
||||
HSPLandroidx/fragment/app/Fragment;->restoreViewState(Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->setAnimations(IIII)V
|
||||
HSPLandroidx/fragment/app/Fragment;->setArguments(Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->setFocusedView(Landroid/view/View;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->setNextTransition(I)V
|
||||
HSPLandroidx/fragment/app/Fragment;->setPopDirection(Z)V
|
||||
HSPLandroidx/fragment/app/Fragment;->setPostOnViewCreatedAlpha(F)V
|
||||
HSPLandroidx/fragment/app/Fragment;->setSharedElementNames(Ljava/util/ArrayList;Ljava/util/ArrayList;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->toString()Ljava/lang/String;
|
||||
HSPLandroidx/fragment/app/FragmentActivity$$ExternalSyntheticLambda0;-><init>(Landroidx/fragment/app/FragmentActivity;)V
|
||||
HSPLandroidx/fragment/app/FragmentActivity$$ExternalSyntheticLambda0;->onContextAvailable(Landroid/content/Context;)V
|
||||
HSPLandroidx/fragment/app/FragmentActivity$$ExternalSyntheticLambda1;-><init>(Landroidx/fragment/app/FragmentActivity;)V
|
||||
HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;-><init>(Landroidx/fragment/app/FragmentActivity;)V
|
||||
HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->getActivityResultRegistry()Landroidx/activity/result/ActivityResultRegistry;
|
||||
HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->getLifecycle()Landroidx/lifecycle/Lifecycle;
|
||||
HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->getOnBackPressedDispatcher()Landroidx/activity/OnBackPressedDispatcher;
|
||||
HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry;
|
||||
HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->getViewModelStore()Landroidx/lifecycle/ViewModelStore;
|
||||
HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->onAttachFragment(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->onGetLayoutInflater()Landroid/view/LayoutInflater;
|
||||
HSPLandroidx/fragment/app/FragmentActivity;-><init>()V
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->dispatchFragmentsOnCreateView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->getSupportFragmentManager()Landroidx/fragment/app/FragmentManager;
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->init()V
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->lambda$init$1$androidx-fragment-app-FragmentActivity(Landroid/content/Context;)V
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->onAttachFragment(Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->onCreate(Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->onCreatePanelMenu(ILandroid/view/Menu;)Z
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->onCreateView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->onCreateView(Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->onPostResume()V
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->onPrepareOptionsPanel(Landroid/view/View;Landroid/view/Menu;)Z
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->onPreparePanel(ILandroid/view/View;Landroid/view/Menu;)Z
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->onResume()V
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->onResumeFragments()V
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->onStart()V
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->onStateNotSaved()V
|
||||
HSPLandroidx/fragment/app/FragmentContainer;-><init>()V
|
||||
HSPLandroidx/fragment/app/FragmentContainer;->instantiate(Landroid/content/Context;Ljava/lang/String;Landroid/os/Bundle;)Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/FragmentContainerView;-><init>(Landroid/content/Context;)V
|
||||
HSPLandroidx/fragment/app/FragmentContainerView;->addView(Landroid/view/View;ILandroid/view/ViewGroup$LayoutParams;)V
|
||||
HSPLandroidx/fragment/app/FragmentContainerView;->dispatchDraw(Landroid/graphics/Canvas;)V
|
||||
HSPLandroidx/fragment/app/FragmentContainerView;->drawChild(Landroid/graphics/Canvas;Landroid/view/View;J)Z
|
||||
HSPLandroidx/fragment/app/FragmentController;-><init>(Landroidx/fragment/app/FragmentHostCallback;)V
|
||||
HSPLandroidx/fragment/app/FragmentController;->attachHost(Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentController;->createController(Landroidx/fragment/app/FragmentHostCallback;)Landroidx/fragment/app/FragmentController;
|
||||
HSPLandroidx/fragment/app/FragmentController;->dispatchActivityCreated()V
|
||||
HSPLandroidx/fragment/app/FragmentController;->dispatchCreate()V
|
||||
HSPLandroidx/fragment/app/FragmentController;->dispatchCreateOptionsMenu(Landroid/view/Menu;Landroid/view/MenuInflater;)Z
|
||||
HSPLandroidx/fragment/app/FragmentController;->dispatchPrepareOptionsMenu(Landroid/view/Menu;)Z
|
||||
HSPLandroidx/fragment/app/FragmentController;->dispatchResume()V
|
||||
HSPLandroidx/fragment/app/FragmentController;->dispatchStart()V
|
||||
HSPLandroidx/fragment/app/FragmentController;->execPendingActions()Z
|
||||
HSPLandroidx/fragment/app/FragmentController;->getSupportFragmentManager()Landroidx/fragment/app/FragmentManager;
|
||||
HSPLandroidx/fragment/app/FragmentController;->noteStateNotSaved()V
|
||||
HSPLandroidx/fragment/app/FragmentController;->onCreateView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
|
||||
HSPLandroidx/fragment/app/FragmentFactory;-><clinit>()V
|
||||
HSPLandroidx/fragment/app/FragmentFactory;-><init>()V
|
||||
HSPLandroidx/fragment/app/FragmentFactory;->isFragmentClass(Ljava/lang/ClassLoader;Ljava/lang/String;)Z
|
||||
HSPLandroidx/fragment/app/FragmentFactory;->loadClass(Ljava/lang/ClassLoader;Ljava/lang/String;)Ljava/lang/Class;
|
||||
HSPLandroidx/fragment/app/FragmentFactory;->loadFragmentClass(Ljava/lang/ClassLoader;Ljava/lang/String;)Ljava/lang/Class;
|
||||
HSPLandroidx/fragment/app/FragmentHostCallback;-><init>(Landroid/app/Activity;Landroid/content/Context;Landroid/os/Handler;I)V
|
||||
HSPLandroidx/fragment/app/FragmentHostCallback;-><init>(Landroidx/fragment/app/FragmentActivity;)V
|
||||
HSPLandroidx/fragment/app/FragmentHostCallback;->getActivity()Landroid/app/Activity;
|
||||
HSPLandroidx/fragment/app/FragmentHostCallback;->getContext()Landroid/content/Context;
|
||||
HSPLandroidx/fragment/app/FragmentHostCallback;->getHandler()Landroid/os/Handler;
|
||||
HSPLandroidx/fragment/app/FragmentLayoutInflaterFactory$1;-><init>(Landroidx/fragment/app/FragmentLayoutInflaterFactory;Landroidx/fragment/app/FragmentStateManager;)V
|
||||
HSPLandroidx/fragment/app/FragmentLayoutInflaterFactory$1;->onViewAttachedToWindow(Landroid/view/View;)V
|
||||
HSPLandroidx/fragment/app/FragmentLayoutInflaterFactory;-><init>(Landroidx/fragment/app/FragmentManager;)V
|
||||
HSPLandroidx/fragment/app/FragmentLayoutInflaterFactory;->onCreateView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
|
||||
HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher$FragmentLifecycleCallbacksHolder;-><init>(Landroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;-><init>(Landroidx/fragment/app/FragmentManager;)V
|
||||
HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentActivityCreated(Landroidx/fragment/app/Fragment;Landroid/os/Bundle;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentAttached(Landroidx/fragment/app/Fragment;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentCreated(Landroidx/fragment/app/Fragment;Landroid/os/Bundle;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentPreAttached(Landroidx/fragment/app/Fragment;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentPreCreated(Landroidx/fragment/app/Fragment;Landroid/os/Bundle;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentResumed(Landroidx/fragment/app/Fragment;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentStarted(Landroidx/fragment/app/Fragment;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentViewCreated(Landroidx/fragment/app/Fragment;Landroid/view/View;Landroid/os/Bundle;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->registerFragmentLifecycleCallbacks(Landroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$$ExternalSyntheticLambda0;-><init>(Landroidx/fragment/app/FragmentManager;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$1;-><init>(Landroidx/fragment/app/FragmentManager;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$2;-><init>(Landroidx/fragment/app/FragmentManager;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$2;->instantiate(Ljava/lang/ClassLoader;Ljava/lang/String;)Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/FragmentManager$3;-><init>(Landroidx/fragment/app/FragmentManager;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$3;->createController(Landroid/view/ViewGroup;)Landroidx/fragment/app/SpecialEffectsController;
|
||||
HSPLandroidx/fragment/app/FragmentManager$4;-><init>(Landroidx/fragment/app/FragmentManager;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$6;-><init>(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$6;->onAttachFragment(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$7;-><init>(Landroidx/fragment/app/FragmentManager;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$8;-><init>(Landroidx/fragment/app/FragmentManager;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$9;-><init>(Landroidx/fragment/app/FragmentManager;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$FragmentIntentSenderContract;-><init>()V
|
||||
HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;-><init>()V
|
||||
HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentActivityCreated(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentAttached(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;Landroid/content/Context;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentPreAttached(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;Landroid/content/Context;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentPreCreated(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentResumed(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentStarted(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentViewCreated(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;Landroid/view/View;Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;-><clinit>()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;-><init>()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->addFragment(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentStateManager;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->addFragmentOnAttachListener(Landroidx/fragment/app/FragmentOnAttachListener;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->attachController(Landroidx/fragment/app/FragmentHostCallback;Landroidx/fragment/app/FragmentContainer;Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->beginTransaction()Landroidx/fragment/app/FragmentTransaction;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->checkForMenus()Z
|
||||
HSPLandroidx/fragment/app/FragmentManager;->checkStateLoss()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->cleanupExec()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->collectAllSpecialEffectsController()Ljava/util/Set;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->collectChangedControllers(Ljava/util/ArrayList;II)Ljava/util/Set;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->createOrGetFragmentStateManager(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentStateManager;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->dispatchActivityCreated()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->dispatchAttach()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->dispatchCreate()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->dispatchCreateOptionsMenu(Landroid/view/Menu;Landroid/view/MenuInflater;)Z
|
||||
HSPLandroidx/fragment/app/FragmentManager;->dispatchOnAttachFragment(Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->dispatchParentPrimaryNavigationFragmentChanged(Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->dispatchPrepareOptionsMenu(Landroid/view/Menu;)Z
|
||||
HSPLandroidx/fragment/app/FragmentManager;->dispatchPrimaryNavigationFragmentChanged()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->dispatchResume()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->dispatchStart()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->dispatchStateChange(I)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->dispatchViewCreated()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->doPendingDeferredStart()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->enqueueAction(Landroidx/fragment/app/FragmentManager$OpGenerator;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->ensureExecReady(Z)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->execPendingActions(Z)Z
|
||||
HSPLandroidx/fragment/app/FragmentManager;->executeOps(Ljava/util/ArrayList;Ljava/util/ArrayList;II)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->executeOpsTogether(Ljava/util/ArrayList;Ljava/util/ArrayList;II)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->findActiveFragment(Ljava/lang/String;)Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->findFragmentById(I)Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->generateOpsForPendingActions(Ljava/util/ArrayList;Ljava/util/ArrayList;)Z
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getBackStackEntryCount()I
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getChildNonConfig(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentManagerViewModel;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getContainer()Landroidx/fragment/app/FragmentContainer;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getFragmentContainer(Landroidx/fragment/app/Fragment;)Landroid/view/ViewGroup;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getFragmentFactory()Landroidx/fragment/app/FragmentFactory;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getHost()Landroidx/fragment/app/FragmentHostCallback;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getLayoutInflaterFactory()Landroid/view/LayoutInflater$Factory2;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getLifecycleCallbacksDispatcher()Landroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getParent()Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getPrimaryNavigationFragment()Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getSpecialEffectsControllerFactory()Landroidx/fragment/app/SpecialEffectsControllerFactory;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getStrictModePolicy()Landroidx/fragment/app/strictmode/FragmentStrictMode$Policy;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getViewFragment(Landroid/view/View;)Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getViewModelStore(Landroidx/fragment/app/Fragment;)Landroidx/lifecycle/ViewModelStore;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->isLoggingEnabled(I)Z
|
||||
HSPLandroidx/fragment/app/FragmentManager;->isMenuAvailable(Landroidx/fragment/app/Fragment;)Z
|
||||
HSPLandroidx/fragment/app/FragmentManager;->isParentMenuVisible(Landroidx/fragment/app/Fragment;)Z
|
||||
HSPLandroidx/fragment/app/FragmentManager;->isPrimaryNavigation(Landroidx/fragment/app/Fragment;)Z
|
||||
HSPLandroidx/fragment/app/FragmentManager;->isStateAtLeast(I)Z
|
||||
HSPLandroidx/fragment/app/FragmentManager;->isStateSaved()Z
|
||||
HSPLandroidx/fragment/app/FragmentManager;->moveToState(IZ)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->noteStateNotSaved()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->performPendingDeferredStart(Landroidx/fragment/app/FragmentStateManager;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->registerFragmentLifecycleCallbacks(Landroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->removeRedundantOperationsAndExecute(Ljava/util/ArrayList;Ljava/util/ArrayList;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->scheduleCommit()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->setExitAnimationOrder(Landroidx/fragment/app/Fragment;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->setPrimaryNavigationFragment(Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->startPendingDeferredFragments()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->updateOnBackPressedCallbackEnabled()V
|
||||
HSPLandroidx/fragment/app/FragmentManagerImpl;-><init>()V
|
||||
HSPLandroidx/fragment/app/FragmentManagerViewModel$1;-><init>()V
|
||||
HSPLandroidx/fragment/app/FragmentManagerViewModel$1;->create(Ljava/lang/Class;)Landroidx/lifecycle/ViewModel;
|
||||
HSPLandroidx/fragment/app/FragmentManagerViewModel;-><clinit>()V
|
||||
HSPLandroidx/fragment/app/FragmentManagerViewModel;-><init>(Z)V
|
||||
HSPLandroidx/fragment/app/FragmentManagerViewModel;->getChildNonConfig(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentManagerViewModel;
|
||||
HSPLandroidx/fragment/app/FragmentManagerViewModel;->getInstance(Landroidx/lifecycle/ViewModelStore;)Landroidx/fragment/app/FragmentManagerViewModel;
|
||||
HSPLandroidx/fragment/app/FragmentManagerViewModel;->getViewModelStore(Landroidx/fragment/app/Fragment;)Landroidx/lifecycle/ViewModelStore;
|
||||
HSPLandroidx/fragment/app/FragmentManagerViewModel;->setIsStateSaved(Z)V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager$1;-><init>(Landroidx/fragment/app/FragmentStateManager;Landroid/view/View;)V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager$1;->onViewAttachedToWindow(Landroid/view/View;)V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager$2;-><clinit>()V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;-><init>(Landroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;Landroidx/fragment/app/FragmentStore;Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;->activityCreated()V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;->addViewToContainer()V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;->attach()V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;->computeExpectedState()I
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;->create()V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;->createView()V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;->ensureInflatedView()V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;->getFragment()Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;->moveToExpectedState()V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;->restoreState(Ljava/lang/ClassLoader;)V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;->resume()V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;->setFragmentManagerState(I)V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;->start()V
|
||||
HSPLandroidx/fragment/app/FragmentStore;-><init>()V
|
||||
HSPLandroidx/fragment/app/FragmentStore;->addFragment(Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentStore;->burpActive()V
|
||||
HSPLandroidx/fragment/app/FragmentStore;->containsActiveFragment(Ljava/lang/String;)Z
|
||||
HSPLandroidx/fragment/app/FragmentStore;->dispatchStateChange(I)V
|
||||
HSPLandroidx/fragment/app/FragmentStore;->findActiveFragment(Ljava/lang/String;)Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/FragmentStore;->findFragmentById(I)Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/FragmentStore;->findFragmentIndexInContainer(Landroidx/fragment/app/Fragment;)I
|
||||
HSPLandroidx/fragment/app/FragmentStore;->getActiveFragmentStateManagers()Ljava/util/List;
|
||||
HSPLandroidx/fragment/app/FragmentStore;->getActiveFragments()Ljava/util/List;
|
||||
HSPLandroidx/fragment/app/FragmentStore;->getFragmentStateManager(Ljava/lang/String;)Landroidx/fragment/app/FragmentStateManager;
|
||||
HSPLandroidx/fragment/app/FragmentStore;->getFragments()Ljava/util/List;
|
||||
HSPLandroidx/fragment/app/FragmentStore;->makeActive(Landroidx/fragment/app/FragmentStateManager;)V
|
||||
HSPLandroidx/fragment/app/FragmentStore;->moveToExpectedState()V
|
||||
HSPLandroidx/fragment/app/FragmentStore;->setNonConfig(Landroidx/fragment/app/FragmentManagerViewModel;)V
|
||||
HSPLandroidx/fragment/app/FragmentTransaction$Op;-><init>(ILandroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentTransaction$Op;-><init>(ILandroidx/fragment/app/Fragment;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentTransaction;-><init>(Landroidx/fragment/app/FragmentFactory;Ljava/lang/ClassLoader;)V
|
||||
HSPLandroidx/fragment/app/FragmentTransaction;->addOp(Landroidx/fragment/app/FragmentTransaction$Op;)V
|
||||
HSPLandroidx/fragment/app/FragmentTransaction;->doAddOp(ILandroidx/fragment/app/Fragment;Ljava/lang/String;I)V
|
||||
HSPLandroidx/fragment/app/FragmentTransaction;->replace(ILandroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentTransaction;
|
||||
HSPLandroidx/fragment/app/FragmentTransaction;->replace(ILandroidx/fragment/app/Fragment;Ljava/lang/String;)Landroidx/fragment/app/FragmentTransaction;
|
||||
HSPLandroidx/fragment/app/FragmentTransaction;->setPrimaryNavigationFragment(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentTransaction;
|
||||
HSPLandroidx/fragment/app/FragmentTransaction;->setReorderingAllowed(Z)Landroidx/fragment/app/FragmentTransaction;
|
||||
HSPLandroidx/fragment/app/FragmentViewLifecycleOwner;-><init>(Landroidx/fragment/app/Fragment;Landroidx/lifecycle/ViewModelStore;)V
|
||||
HSPLandroidx/fragment/app/FragmentViewLifecycleOwner;->getLifecycle()Landroidx/lifecycle/Lifecycle;
|
||||
HSPLandroidx/fragment/app/FragmentViewLifecycleOwner;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry;
|
||||
HSPLandroidx/fragment/app/FragmentViewLifecycleOwner;->handleLifecycleEvent(Landroidx/lifecycle/Lifecycle$Event;)V
|
||||
HSPLandroidx/fragment/app/FragmentViewLifecycleOwner;->initialize()V
|
||||
HSPLandroidx/fragment/app/FragmentViewLifecycleOwner;->performRestore(Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/FragmentViewModelLazyKt;->createViewModelLazy(Landroidx/fragment/app/Fragment;Lkotlin/reflect/KClass;Lkotlin/jvm/functions/Function0;Lkotlin/jvm/functions/Function0;)Lkotlin/Lazy;
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$1;-><init>(Landroidx/fragment/app/SpecialEffectsController;Landroidx/fragment/app/SpecialEffectsController$FragmentStateManagerOperation;)V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$1;->run()V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$2;-><init>(Landroidx/fragment/app/SpecialEffectsController;Landroidx/fragment/app/SpecialEffectsController$FragmentStateManagerOperation;)V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$2;->run()V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$3;-><clinit>()V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$FragmentStateManagerOperation;-><init>(Landroidx/fragment/app/SpecialEffectsController$Operation$State;Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;Landroidx/fragment/app/FragmentStateManager;Landroidx/core/os/CancellationSignal;)V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$FragmentStateManagerOperation;->complete()V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$FragmentStateManagerOperation;->onStart()V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation$1;-><init>(Landroidx/fragment/app/SpecialEffectsController$Operation;)V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;-><clinit>()V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;-><init>(Ljava/lang/String;I)V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;->values()[Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation$State;-><clinit>()V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation$State;-><init>(Ljava/lang/String;I)V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation$State;->applyState(Landroid/view/View;)V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation$State;->from(I)Landroidx/fragment/app/SpecialEffectsController$Operation$State;
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation$State;->values()[Landroidx/fragment/app/SpecialEffectsController$Operation$State;
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation;-><init>(Landroidx/fragment/app/SpecialEffectsController$Operation$State;Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;Landroidx/fragment/app/Fragment;Landroidx/core/os/CancellationSignal;)V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->addCompletionListener(Ljava/lang/Runnable;)V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->cancel()V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->complete()V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->getFinalState()Landroidx/fragment/app/SpecialEffectsController$Operation$State;
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->getFragment()Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->getLifecycleImpact()Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->isCanceled()Z
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->mergeWith(Landroidx/fragment/app/SpecialEffectsController$Operation$State;Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;)V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController;-><init>(Landroid/view/ViewGroup;)V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController;->enqueue(Landroidx/fragment/app/SpecialEffectsController$Operation$State;Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;Landroidx/fragment/app/FragmentStateManager;)V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController;->enqueueAdd(Landroidx/fragment/app/SpecialEffectsController$Operation$State;Landroidx/fragment/app/FragmentStateManager;)V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController;->executePendingOperations()V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController;->findPendingOperation(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/SpecialEffectsController$Operation;
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController;->findRunningOperation(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/SpecialEffectsController$Operation;
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController;->forceCompleteAllOperations()V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController;->getAwaitingCompletionLifecycleImpact(Landroidx/fragment/app/FragmentStateManager;)Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController;->getOrCreateController(Landroid/view/ViewGroup;Landroidx/fragment/app/FragmentManager;)Landroidx/fragment/app/SpecialEffectsController;
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController;->getOrCreateController(Landroid/view/ViewGroup;Landroidx/fragment/app/SpecialEffectsControllerFactory;)Landroidx/fragment/app/SpecialEffectsController;
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController;->markPostponedState()V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController;->updateFinalState()V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController;->updateOperationDirection(Z)V
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Flag;->$values()[Landroidx/fragment/app/strictmode/FragmentStrictMode$Flag;
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Flag;-><clinit>()V
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Flag;-><init>(Ljava/lang/String;I)V
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Policy$Companion;-><init>()V
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Policy$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Policy;-><clinit>()V
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Policy;-><init>(Ljava/util/Set;Landroidx/fragment/app/strictmode/FragmentStrictMode$OnViolationListener;Ljava/util/Map;)V
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Policy;->getFlags$fragment_release()Ljava/util/Set;
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentStrictMode;-><clinit>()V
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentStrictMode;-><init>()V
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentStrictMode;->getNearestPolicy(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/strictmode/FragmentStrictMode$Policy;
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentStrictMode;->logIfDebuggingEnabled(Landroidx/fragment/app/strictmode/Violation;)V
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentStrictMode;->onFragmentTagUsage(Landroidx/fragment/app/Fragment;Landroid/view/ViewGroup;)V
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentTagUsageViolation;-><init>(Landroidx/fragment/app/Fragment;Landroid/view/ViewGroup;)V
|
||||
HSPLandroidx/fragment/app/strictmode/Violation;-><init>(Landroidx/fragment/app/Fragment;Ljava/lang/String;)V
|
||||
Landroidx/fragment/R$id;
|
||||
Landroidx/fragment/R$styleable;
|
||||
Landroidx/fragment/app/BackStackRecord;
|
||||
Landroidx/fragment/app/DefaultSpecialEffectsController;
|
||||
Landroidx/fragment/app/Fragment$1;
|
||||
Landroidx/fragment/app/Fragment$4;
|
||||
Landroidx/fragment/app/Fragment$5;
|
||||
Landroidx/fragment/app/Fragment$AnimationInfo;
|
||||
Landroidx/fragment/app/Fragment;
|
||||
Landroidx/fragment/app/FragmentActivity$$ExternalSyntheticLambda0;
|
||||
Landroidx/fragment/app/FragmentActivity$$ExternalSyntheticLambda1;
|
||||
Landroidx/fragment/app/FragmentActivity$HostCallbacks;
|
||||
Landroidx/fragment/app/FragmentActivity;
|
||||
Landroidx/fragment/app/FragmentContainer;
|
||||
Landroidx/fragment/app/FragmentContainerView;
|
||||
Landroidx/fragment/app/FragmentController;
|
||||
Landroidx/fragment/app/FragmentFactory;
|
||||
Landroidx/fragment/app/FragmentHostCallback;
|
||||
Landroidx/fragment/app/FragmentLayoutInflaterFactory$1;
|
||||
Landroidx/fragment/app/FragmentLayoutInflaterFactory;
|
||||
Landroidx/fragment/app/FragmentLifecycleCallbacksDispatcher$FragmentLifecycleCallbacksHolder;
|
||||
Landroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;
|
||||
Landroidx/fragment/app/FragmentManager$$ExternalSyntheticLambda0;
|
||||
Landroidx/fragment/app/FragmentManager$1;
|
||||
Landroidx/fragment/app/FragmentManager$2;
|
||||
Landroidx/fragment/app/FragmentManager$3;
|
||||
Landroidx/fragment/app/FragmentManager$4;
|
||||
Landroidx/fragment/app/FragmentManager$6;
|
||||
Landroidx/fragment/app/FragmentManager$7;
|
||||
Landroidx/fragment/app/FragmentManager$8;
|
||||
Landroidx/fragment/app/FragmentManager$9;
|
||||
Landroidx/fragment/app/FragmentManager$BackStackEntry;
|
||||
Landroidx/fragment/app/FragmentManager$FragmentIntentSenderContract;
|
||||
Landroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;
|
||||
Landroidx/fragment/app/FragmentManager$OpGenerator;
|
||||
Landroidx/fragment/app/FragmentManager;
|
||||
Landroidx/fragment/app/FragmentManagerImpl;
|
||||
Landroidx/fragment/app/FragmentManagerViewModel$1;
|
||||
Landroidx/fragment/app/FragmentManagerViewModel;
|
||||
Landroidx/fragment/app/FragmentOnAttachListener;
|
||||
Landroidx/fragment/app/FragmentResultOwner;
|
||||
Landroidx/fragment/app/FragmentStateManager$1;
|
||||
Landroidx/fragment/app/FragmentStateManager$2;
|
||||
Landroidx/fragment/app/FragmentStateManager;
|
||||
Landroidx/fragment/app/FragmentStore;
|
||||
Landroidx/fragment/app/FragmentTransaction$Op;
|
||||
Landroidx/fragment/app/FragmentTransaction;
|
||||
Landroidx/fragment/app/FragmentViewLifecycleOwner;
|
||||
Landroidx/fragment/app/FragmentViewModelLazyKt;
|
||||
Landroidx/fragment/app/SpecialEffectsController$1;
|
||||
Landroidx/fragment/app/SpecialEffectsController$2;
|
||||
Landroidx/fragment/app/SpecialEffectsController$3;
|
||||
Landroidx/fragment/app/SpecialEffectsController$FragmentStateManagerOperation;
|
||||
Landroidx/fragment/app/SpecialEffectsController$Operation$1;
|
||||
Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;
|
||||
Landroidx/fragment/app/SpecialEffectsController$Operation$State;
|
||||
Landroidx/fragment/app/SpecialEffectsController$Operation;
|
||||
Landroidx/fragment/app/SpecialEffectsController;
|
||||
Landroidx/fragment/app/SpecialEffectsControllerFactory;
|
||||
Landroidx/fragment/app/strictmode/FragmentStrictMode$Flag;
|
||||
Landroidx/fragment/app/strictmode/FragmentStrictMode$Policy$Companion;
|
||||
Landroidx/fragment/app/strictmode/FragmentStrictMode$Policy;
|
||||
Landroidx/fragment/app/strictmode/FragmentStrictMode;
|
||||
Landroidx/fragment/app/strictmode/FragmentTagUsageViolation;
|
||||
Landroidx/fragment/app/strictmode/Violation;
|
||||
PLandroidx/fragment/app/Fragment$Api19Impl;->cancelPendingInputEvents(Landroid/view/View;)V
|
||||
PLandroidx/fragment/app/Fragment;->getHost()Ljava/lang/Object;
|
||||
PLandroidx/fragment/app/Fragment;->initState()V
|
||||
PLandroidx/fragment/app/Fragment;->onDestroy()V
|
||||
PLandroidx/fragment/app/Fragment;->onDestroyView()V
|
||||
PLandroidx/fragment/app/Fragment;->onDetach()V
|
||||
PLandroidx/fragment/app/Fragment;->onPause()V
|
||||
PLandroidx/fragment/app/Fragment;->onStop()V
|
||||
PLandroidx/fragment/app/Fragment;->performDestroy()V
|
||||
PLandroidx/fragment/app/Fragment;->performDestroyView()V
|
||||
PLandroidx/fragment/app/Fragment;->performDetach()V
|
||||
PLandroidx/fragment/app/Fragment;->performPause()V
|
||||
PLandroidx/fragment/app/Fragment;->performStop()V
|
||||
PLandroidx/fragment/app/FragmentActivity$HostCallbacks;->onGetHost()Landroidx/fragment/app/FragmentActivity;
|
||||
PLandroidx/fragment/app/FragmentActivity$HostCallbacks;->onGetHost()Ljava/lang/Object;
|
||||
PLandroidx/fragment/app/FragmentActivity;->markFragmentsCreated()V
|
||||
PLandroidx/fragment/app/FragmentActivity;->markState(Landroidx/fragment/app/FragmentManager;Landroidx/lifecycle/Lifecycle$State;)Z
|
||||
PLandroidx/fragment/app/FragmentActivity;->onDestroy()V
|
||||
PLandroidx/fragment/app/FragmentActivity;->onPause()V
|
||||
PLandroidx/fragment/app/FragmentActivity;->onStop()V
|
||||
PLandroidx/fragment/app/FragmentContainerView;->addDisappearingFragmentView(Landroid/view/View;)V
|
||||
PLandroidx/fragment/app/FragmentContainerView;->removeView(Landroid/view/View;)V
|
||||
PLandroidx/fragment/app/FragmentController;->dispatchDestroy()V
|
||||
PLandroidx/fragment/app/FragmentController;->dispatchPause()V
|
||||
PLandroidx/fragment/app/FragmentController;->dispatchStop()V
|
||||
PLandroidx/fragment/app/FragmentLayoutInflaterFactory$1;->onViewDetachedFromWindow(Landroid/view/View;)V
|
||||
PLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentDestroyed(Landroidx/fragment/app/Fragment;Z)V
|
||||
PLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentDetached(Landroidx/fragment/app/Fragment;Z)V
|
||||
PLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentPaused(Landroidx/fragment/app/Fragment;Z)V
|
||||
PLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentStopped(Landroidx/fragment/app/Fragment;Z)V
|
||||
PLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentViewDestroyed(Landroidx/fragment/app/Fragment;Z)V
|
||||
PLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentDestroyed(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
|
||||
PLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentDetached(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
|
||||
PLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentPaused(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
|
||||
PLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentStopped(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
|
||||
PLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentViewDestroyed(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
|
||||
PLandroidx/fragment/app/FragmentManager;->clearBackStackStateViewModels()V
|
||||
PLandroidx/fragment/app/FragmentManager;->dispatchDestroy()V
|
||||
PLandroidx/fragment/app/FragmentManager;->dispatchDestroyView()V
|
||||
PLandroidx/fragment/app/FragmentManager;->dispatchPause()V
|
||||
PLandroidx/fragment/app/FragmentManager;->dispatchStop()V
|
||||
PLandroidx/fragment/app/FragmentManager;->endAnimatingAwayFragments()V
|
||||
PLandroidx/fragment/app/FragmentManager;->getFragments()Ljava/util/List;
|
||||
PLandroidx/fragment/app/FragmentManager;->isDestroyed()Z
|
||||
PLandroidx/fragment/app/FragmentManagerViewModel;->clearNonConfigState(Landroidx/fragment/app/Fragment;)V
|
||||
PLandroidx/fragment/app/FragmentManagerViewModel;->clearNonConfigStateInternal(Ljava/lang/String;)V
|
||||
PLandroidx/fragment/app/FragmentManagerViewModel;->isCleared()Z
|
||||
PLandroidx/fragment/app/FragmentManagerViewModel;->onCleared()V
|
||||
PLandroidx/fragment/app/FragmentManagerViewModel;->shouldDestroy(Landroidx/fragment/app/Fragment;)Z
|
||||
PLandroidx/fragment/app/FragmentStateManager;->destroy()V
|
||||
PLandroidx/fragment/app/FragmentStateManager;->destroyFragmentView()V
|
||||
PLandroidx/fragment/app/FragmentStateManager;->detach()V
|
||||
PLandroidx/fragment/app/FragmentStateManager;->pause()V
|
||||
PLandroidx/fragment/app/FragmentStateManager;->saveViewState()V
|
||||
PLandroidx/fragment/app/FragmentStateManager;->stop()V
|
||||
PLandroidx/fragment/app/FragmentStore;->getNonConfig()Landroidx/fragment/app/FragmentManagerViewModel;
|
||||
PLandroidx/fragment/app/FragmentStore;->makeInactive(Landroidx/fragment/app/FragmentStateManager;)V
|
||||
PLandroidx/fragment/app/FragmentViewLifecycleOwner;->performSave(Landroid/os/Bundle;)V
|
||||
PLandroidx/fragment/app/FragmentViewLifecycleOwner;->setCurrentState(Landroidx/lifecycle/Lifecycle$State;)V
|
||||
PLandroidx/fragment/app/SpecialEffectsController;->enqueueRemove(Landroidx/fragment/app/FragmentStateManager;)V
|
29
obj/Debug/net8.0-android/lp/110/jl/proguard.txt
Normal file
29
obj/Debug/net8.0-android/lp/110/jl/proguard.txt
Normal file
@ -0,0 +1,29 @@
|
||||
# Copyright (C) 2020 The Android Open Source Project
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
# The default FragmentFactory creates Fragment instances using reflection
|
||||
-if public class ** extends androidx.fragment.app.Fragment
|
||||
-keepclasseswithmembers,allowobfuscation public class <1> {
|
||||
public <init>();
|
||||
}
|
||||
|
||||
# FragmentTransition will reflectively lookup:
|
||||
# androidx.transition.FragmentTransitionSupport
|
||||
# We should ensure that we keep the constructor if the code using this is alive
|
||||
-if class androidx.fragment.app.FragmentTransition {
|
||||
private static androidx.fragment.app.FragmentTransitionImpl resolveSupportImpl();
|
||||
}
|
||||
-keep class androidx.transition.FragmentTransitionSupport {
|
||||
public <init>();
|
||||
}
|
0
obj/Debug/net8.0-android/lp/110/jl/public.txt
Normal file
0
obj/Debug/net8.0-android/lp/110/jl/public.txt
Normal file
203
obj/Debug/net8.0-android/lp/111/jl/R.txt
Normal file
203
obj/Debug/net8.0-android/lp/111/jl/R.txt
Normal file
@ -0,0 +1,203 @@
|
||||
int attr alpha 0x0
|
||||
int attr fastScrollEnabled 0x0
|
||||
int attr fastScrollHorizontalThumbDrawable 0x0
|
||||
int attr fastScrollHorizontalTrackDrawable 0x0
|
||||
int attr fastScrollVerticalThumbDrawable 0x0
|
||||
int attr fastScrollVerticalTrackDrawable 0x0
|
||||
int attr font 0x0
|
||||
int attr fontProviderAuthority 0x0
|
||||
int attr fontProviderCerts 0x0
|
||||
int attr fontProviderFetchStrategy 0x0
|
||||
int attr fontProviderFetchTimeout 0x0
|
||||
int attr fontProviderPackage 0x0
|
||||
int attr fontProviderQuery 0x0
|
||||
int attr fontStyle 0x0
|
||||
int attr fontVariationSettings 0x0
|
||||
int attr fontWeight 0x0
|
||||
int attr layoutManager 0x0
|
||||
int attr recyclerViewStyle 0x0
|
||||
int attr reverseLayout 0x0
|
||||
int attr spanCount 0x0
|
||||
int attr stackFromEnd 0x0
|
||||
int attr ttcIndex 0x0
|
||||
int color notification_action_color_filter 0x0
|
||||
int color notification_icon_bg_color 0x0
|
||||
int color ripple_material_light 0x0
|
||||
int color secondary_text_default_material_light 0x0
|
||||
int dimen compat_button_inset_horizontal_material 0x0
|
||||
int dimen compat_button_inset_vertical_material 0x0
|
||||
int dimen compat_button_padding_horizontal_material 0x0
|
||||
int dimen compat_button_padding_vertical_material 0x0
|
||||
int dimen compat_control_corner_material 0x0
|
||||
int dimen compat_notification_large_icon_max_height 0x0
|
||||
int dimen compat_notification_large_icon_max_width 0x0
|
||||
int dimen fastscroll_default_thickness 0x0
|
||||
int dimen fastscroll_margin 0x0
|
||||
int dimen fastscroll_minimum_range 0x0
|
||||
int dimen item_touch_helper_max_drag_scroll_per_frame 0x0
|
||||
int dimen item_touch_helper_swipe_escape_max_velocity 0x0
|
||||
int dimen item_touch_helper_swipe_escape_velocity 0x0
|
||||
int dimen notification_action_icon_size 0x0
|
||||
int dimen notification_action_text_size 0x0
|
||||
int dimen notification_big_circle_margin 0x0
|
||||
int dimen notification_content_margin_start 0x0
|
||||
int dimen notification_large_icon_height 0x0
|
||||
int dimen notification_large_icon_width 0x0
|
||||
int dimen notification_main_column_padding_top 0x0
|
||||
int dimen notification_media_narrow_margin 0x0
|
||||
int dimen notification_right_icon_size 0x0
|
||||
int dimen notification_right_side_padding_top 0x0
|
||||
int dimen notification_small_icon_background_padding 0x0
|
||||
int dimen notification_small_icon_size_as_large 0x0
|
||||
int dimen notification_subtext_size 0x0
|
||||
int dimen notification_top_pad 0x0
|
||||
int dimen notification_top_pad_large_text 0x0
|
||||
int drawable notification_action_background 0x0
|
||||
int drawable notification_bg 0x0
|
||||
int drawable notification_bg_low 0x0
|
||||
int drawable notification_bg_low_normal 0x0
|
||||
int drawable notification_bg_low_pressed 0x0
|
||||
int drawable notification_bg_normal 0x0
|
||||
int drawable notification_bg_normal_pressed 0x0
|
||||
int drawable notification_icon_background 0x0
|
||||
int drawable notification_template_icon_bg 0x0
|
||||
int drawable notification_template_icon_low_bg 0x0
|
||||
int drawable notification_tile_bg 0x0
|
||||
int drawable notify_panel_notification_icon_bg 0x0
|
||||
int id accessibility_action_clickable_span 0x0
|
||||
int id accessibility_custom_action_0 0x0
|
||||
int id accessibility_custom_action_1 0x0
|
||||
int id accessibility_custom_action_10 0x0
|
||||
int id accessibility_custom_action_11 0x0
|
||||
int id accessibility_custom_action_12 0x0
|
||||
int id accessibility_custom_action_13 0x0
|
||||
int id accessibility_custom_action_14 0x0
|
||||
int id accessibility_custom_action_15 0x0
|
||||
int id accessibility_custom_action_16 0x0
|
||||
int id accessibility_custom_action_17 0x0
|
||||
int id accessibility_custom_action_18 0x0
|
||||
int id accessibility_custom_action_19 0x0
|
||||
int id accessibility_custom_action_2 0x0
|
||||
int id accessibility_custom_action_20 0x0
|
||||
int id accessibility_custom_action_21 0x0
|
||||
int id accessibility_custom_action_22 0x0
|
||||
int id accessibility_custom_action_23 0x0
|
||||
int id accessibility_custom_action_24 0x0
|
||||
int id accessibility_custom_action_25 0x0
|
||||
int id accessibility_custom_action_26 0x0
|
||||
int id accessibility_custom_action_27 0x0
|
||||
int id accessibility_custom_action_28 0x0
|
||||
int id accessibility_custom_action_29 0x0
|
||||
int id accessibility_custom_action_3 0x0
|
||||
int id accessibility_custom_action_30 0x0
|
||||
int id accessibility_custom_action_31 0x0
|
||||
int id accessibility_custom_action_4 0x0
|
||||
int id accessibility_custom_action_5 0x0
|
||||
int id accessibility_custom_action_6 0x0
|
||||
int id accessibility_custom_action_7 0x0
|
||||
int id accessibility_custom_action_8 0x0
|
||||
int id accessibility_custom_action_9 0x0
|
||||
int id action_container 0x0
|
||||
int id action_divider 0x0
|
||||
int id action_image 0x0
|
||||
int id action_text 0x0
|
||||
int id actions 0x0
|
||||
int id async 0x0
|
||||
int id blocking 0x0
|
||||
int id chronometer 0x0
|
||||
int id dialog_button 0x0
|
||||
int id forever 0x0
|
||||
int id icon 0x0
|
||||
int id icon_group 0x0
|
||||
int id info 0x0
|
||||
int id italic 0x0
|
||||
int id item_touch_helper_previous_elevation 0x0
|
||||
int id line1 0x0
|
||||
int id line3 0x0
|
||||
int id normal 0x0
|
||||
int id notification_background 0x0
|
||||
int id notification_main_column 0x0
|
||||
int id notification_main_column_container 0x0
|
||||
int id right_icon 0x0
|
||||
int id right_side 0x0
|
||||
int id tag_accessibility_actions 0x0
|
||||
int id tag_accessibility_clickable_spans 0x0
|
||||
int id tag_accessibility_heading 0x0
|
||||
int id tag_accessibility_pane_title 0x0
|
||||
int id tag_screen_reader_focusable 0x0
|
||||
int id tag_transition_group 0x0
|
||||
int id tag_unhandled_key_event_manager 0x0
|
||||
int id tag_unhandled_key_listeners 0x0
|
||||
int id text 0x0
|
||||
int id text2 0x0
|
||||
int id time 0x0
|
||||
int id title 0x0
|
||||
int integer status_bar_notification_info_maxnum 0x0
|
||||
int layout custom_dialog 0x0
|
||||
int layout notification_action 0x0
|
||||
int layout notification_action_tombstone 0x0
|
||||
int layout notification_template_custom_big 0x0
|
||||
int layout notification_template_icon_group 0x0
|
||||
int layout notification_template_part_chronometer 0x0
|
||||
int layout notification_template_part_time 0x0
|
||||
int string status_bar_notification_info_overflow 0x0
|
||||
int style TextAppearance_Compat_Notification 0x0
|
||||
int style TextAppearance_Compat_Notification_Info 0x0
|
||||
int style TextAppearance_Compat_Notification_Line2 0x0
|
||||
int style TextAppearance_Compat_Notification_Time 0x0
|
||||
int style TextAppearance_Compat_Notification_Title 0x0
|
||||
int style Widget_Compat_NotificationActionContainer 0x0
|
||||
int style Widget_Compat_NotificationActionText 0x0
|
||||
int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5 }
|
||||
int styleable ColorStateListItem_alpha 0
|
||||
int styleable ColorStateListItem_android_alpha 1
|
||||
int styleable ColorStateListItem_android_color 2
|
||||
int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
|
||||
int styleable FontFamily_fontProviderAuthority 0
|
||||
int styleable FontFamily_fontProviderCerts 1
|
||||
int styleable FontFamily_fontProviderFetchStrategy 2
|
||||
int styleable FontFamily_fontProviderFetchTimeout 3
|
||||
int styleable FontFamily_fontProviderPackage 4
|
||||
int styleable FontFamily_fontProviderQuery 5
|
||||
int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x0, 0x0, 0x0, 0x0, 0x0 }
|
||||
int styleable FontFamilyFont_android_font 0
|
||||
int styleable FontFamilyFont_android_fontStyle 1
|
||||
int styleable FontFamilyFont_android_fontVariationSettings 2
|
||||
int styleable FontFamilyFont_android_fontWeight 3
|
||||
int styleable FontFamilyFont_android_ttcIndex 4
|
||||
int styleable FontFamilyFont_font 5
|
||||
int styleable FontFamilyFont_fontStyle 6
|
||||
int styleable FontFamilyFont_fontVariationSettings 7
|
||||
int styleable FontFamilyFont_fontWeight 8
|
||||
int styleable FontFamilyFont_ttcIndex 9
|
||||
int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 }
|
||||
int styleable GradientColor_android_centerColor 0
|
||||
int styleable GradientColor_android_centerX 1
|
||||
int styleable GradientColor_android_centerY 2
|
||||
int styleable GradientColor_android_endColor 3
|
||||
int styleable GradientColor_android_endX 4
|
||||
int styleable GradientColor_android_endY 5
|
||||
int styleable GradientColor_android_gradientRadius 6
|
||||
int styleable GradientColor_android_startColor 7
|
||||
int styleable GradientColor_android_startX 8
|
||||
int styleable GradientColor_android_startY 9
|
||||
int styleable GradientColor_android_tileMode 10
|
||||
int styleable GradientColor_android_type 11
|
||||
int[] styleable GradientColorItem { 0x10101a5, 0x1010514 }
|
||||
int styleable GradientColorItem_android_color 0
|
||||
int styleable GradientColorItem_android_offset 1
|
||||
int[] styleable RecyclerView { 0x10100eb, 0x10100f1, 0x10100c4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
|
||||
int styleable RecyclerView_android_clipToPadding 0
|
||||
int styleable RecyclerView_android_descendantFocusability 1
|
||||
int styleable RecyclerView_android_orientation 2
|
||||
int styleable RecyclerView_fastScrollEnabled 3
|
||||
int styleable RecyclerView_fastScrollHorizontalThumbDrawable 4
|
||||
int styleable RecyclerView_fastScrollHorizontalTrackDrawable 5
|
||||
int styleable RecyclerView_fastScrollVerticalThumbDrawable 6
|
||||
int styleable RecyclerView_fastScrollVerticalTrackDrawable 7
|
||||
int styleable RecyclerView_layoutManager 8
|
||||
int styleable RecyclerView_reverseLayout 9
|
||||
int styleable RecyclerView_spanCount 10
|
||||
int styleable RecyclerView_stackFromEnd 11
|
||||
int[] styleable ViewPager2 { 0x10100c4 }
|
||||
int styleable ViewPager2_android_orientation 0
|
171
obj/Debug/net8.0-android/lp/112/jl/R.txt
Normal file
171
obj/Debug/net8.0-android/lp/112/jl/R.txt
Normal file
@ -0,0 +1,171 @@
|
||||
int attr alpha 0x7f040001
|
||||
int attr font 0x7f040002
|
||||
int attr fontProviderAuthority 0x7f040003
|
||||
int attr fontProviderCerts 0x7f040004
|
||||
int attr fontProviderFetchStrategy 0x7f040005
|
||||
int attr fontProviderFetchTimeout 0x7f040006
|
||||
int attr fontProviderPackage 0x7f040007
|
||||
int attr fontProviderQuery 0x7f040008
|
||||
int attr fontStyle 0x7f040009
|
||||
int attr fontVariationSettings 0x7f04000a
|
||||
int attr fontWeight 0x7f04000b
|
||||
int attr ttcIndex 0x7f04000c
|
||||
int color notification_action_color_filter 0x7f060001
|
||||
int color notification_icon_bg_color 0x7f060002
|
||||
int color ripple_material_light 0x7f060003
|
||||
int color secondary_text_default_material_light 0x7f060004
|
||||
int dimen compat_button_inset_horizontal_material 0x7f070001
|
||||
int dimen compat_button_inset_vertical_material 0x7f070002
|
||||
int dimen compat_button_padding_horizontal_material 0x7f070003
|
||||
int dimen compat_button_padding_vertical_material 0x7f070004
|
||||
int dimen compat_control_corner_material 0x7f070005
|
||||
int dimen compat_notification_large_icon_max_height 0x7f070006
|
||||
int dimen compat_notification_large_icon_max_width 0x7f070007
|
||||
int dimen notification_action_icon_size 0x7f070008
|
||||
int dimen notification_action_text_size 0x7f070009
|
||||
int dimen notification_big_circle_margin 0x7f07000a
|
||||
int dimen notification_content_margin_start 0x7f07000b
|
||||
int dimen notification_large_icon_height 0x7f07000c
|
||||
int dimen notification_large_icon_width 0x7f07000d
|
||||
int dimen notification_main_column_padding_top 0x7f07000e
|
||||
int dimen notification_media_narrow_margin 0x7f07000f
|
||||
int dimen notification_right_icon_size 0x7f070010
|
||||
int dimen notification_right_side_padding_top 0x7f070011
|
||||
int dimen notification_small_icon_background_padding 0x7f070012
|
||||
int dimen notification_small_icon_size_as_large 0x7f070013
|
||||
int dimen notification_subtext_size 0x7f070014
|
||||
int dimen notification_top_pad 0x7f070015
|
||||
int dimen notification_top_pad_large_text 0x7f070016
|
||||
int drawable notification_action_background 0x7f080001
|
||||
int drawable notification_bg 0x7f080002
|
||||
int drawable notification_bg_low 0x7f080003
|
||||
int drawable notification_bg_low_normal 0x7f080004
|
||||
int drawable notification_bg_low_pressed 0x7f080005
|
||||
int drawable notification_bg_normal 0x7f080006
|
||||
int drawable notification_bg_normal_pressed 0x7f080007
|
||||
int drawable notification_icon_background 0x7f080008
|
||||
int drawable notification_template_icon_bg 0x7f080009
|
||||
int drawable notification_template_icon_low_bg 0x7f08000a
|
||||
int drawable notification_tile_bg 0x7f08000b
|
||||
int drawable notify_panel_notification_icon_bg 0x7f08000c
|
||||
int id accessibility_action_clickable_span 0x7f0b0001
|
||||
int id accessibility_custom_action_0 0x7f0b0002
|
||||
int id accessibility_custom_action_1 0x7f0b0003
|
||||
int id accessibility_custom_action_10 0x7f0b0004
|
||||
int id accessibility_custom_action_11 0x7f0b0005
|
||||
int id accessibility_custom_action_12 0x7f0b0006
|
||||
int id accessibility_custom_action_13 0x7f0b0007
|
||||
int id accessibility_custom_action_14 0x7f0b0008
|
||||
int id accessibility_custom_action_15 0x7f0b0009
|
||||
int id accessibility_custom_action_16 0x7f0b000a
|
||||
int id accessibility_custom_action_17 0x7f0b000b
|
||||
int id accessibility_custom_action_18 0x7f0b000c
|
||||
int id accessibility_custom_action_19 0x7f0b000d
|
||||
int id accessibility_custom_action_2 0x7f0b000e
|
||||
int id accessibility_custom_action_20 0x7f0b000f
|
||||
int id accessibility_custom_action_21 0x7f0b0010
|
||||
int id accessibility_custom_action_22 0x7f0b0011
|
||||
int id accessibility_custom_action_23 0x7f0b0012
|
||||
int id accessibility_custom_action_24 0x7f0b0013
|
||||
int id accessibility_custom_action_25 0x7f0b0014
|
||||
int id accessibility_custom_action_26 0x7f0b0015
|
||||
int id accessibility_custom_action_27 0x7f0b0016
|
||||
int id accessibility_custom_action_28 0x7f0b0017
|
||||
int id accessibility_custom_action_29 0x7f0b0018
|
||||
int id accessibility_custom_action_3 0x7f0b0019
|
||||
int id accessibility_custom_action_30 0x7f0b001a
|
||||
int id accessibility_custom_action_31 0x7f0b001b
|
||||
int id accessibility_custom_action_4 0x7f0b001c
|
||||
int id accessibility_custom_action_5 0x7f0b001d
|
||||
int id accessibility_custom_action_6 0x7f0b001e
|
||||
int id accessibility_custom_action_7 0x7f0b001f
|
||||
int id accessibility_custom_action_8 0x7f0b0020
|
||||
int id accessibility_custom_action_9 0x7f0b0021
|
||||
int id action_container 0x7f0b0022
|
||||
int id action_divider 0x7f0b0023
|
||||
int id action_image 0x7f0b0024
|
||||
int id action_text 0x7f0b0025
|
||||
int id actions 0x7f0b0026
|
||||
int id async 0x7f0b0027
|
||||
int id blocking 0x7f0b0028
|
||||
int id chronometer 0x7f0b0029
|
||||
int id dialog_button 0x7f0b002a
|
||||
int id forever 0x7f0b002b
|
||||
int id icon 0x7f0b002c
|
||||
int id icon_group 0x7f0b002d
|
||||
int id info 0x7f0b002e
|
||||
int id italic 0x7f0b002f
|
||||
int id line1 0x7f0b0030
|
||||
int id line3 0x7f0b0031
|
||||
int id normal 0x7f0b0032
|
||||
int id notification_background 0x7f0b0033
|
||||
int id notification_main_column 0x7f0b0034
|
||||
int id notification_main_column_container 0x7f0b0035
|
||||
int id right_icon 0x7f0b0036
|
||||
int id right_side 0x7f0b0037
|
||||
int id tag_accessibility_actions 0x7f0b0038
|
||||
int id tag_accessibility_clickable_spans 0x7f0b0039
|
||||
int id tag_accessibility_heading 0x7f0b003a
|
||||
int id tag_accessibility_pane_title 0x7f0b003b
|
||||
int id tag_screen_reader_focusable 0x7f0b003c
|
||||
int id tag_transition_group 0x7f0b003d
|
||||
int id tag_unhandled_key_event_manager 0x7f0b003e
|
||||
int id tag_unhandled_key_listeners 0x7f0b003f
|
||||
int id text 0x7f0b0040
|
||||
int id text2 0x7f0b0041
|
||||
int id time 0x7f0b0042
|
||||
int id title 0x7f0b0043
|
||||
int integer status_bar_notification_info_maxnum 0x7f0c0001
|
||||
int layout custom_dialog 0x7f0e0001
|
||||
int layout notification_action 0x7f0e0002
|
||||
int layout notification_action_tombstone 0x7f0e0003
|
||||
int layout notification_template_custom_big 0x7f0e0004
|
||||
int layout notification_template_icon_group 0x7f0e0005
|
||||
int layout notification_template_part_chronometer 0x7f0e0006
|
||||
int layout notification_template_part_time 0x7f0e0007
|
||||
int string status_bar_notification_info_overflow 0x7f140001
|
||||
int style TextAppearance_Compat_Notification 0x7f150001
|
||||
int style TextAppearance_Compat_Notification_Info 0x7f150002
|
||||
int style TextAppearance_Compat_Notification_Line2 0x7f150003
|
||||
int style TextAppearance_Compat_Notification_Time 0x7f150004
|
||||
int style TextAppearance_Compat_Notification_Title 0x7f150005
|
||||
int style Widget_Compat_NotificationActionContainer 0x7f150006
|
||||
int style Widget_Compat_NotificationActionText 0x7f150007
|
||||
int[] styleable ColorStateListItem { 0x7f040001, 0x101031f, 0x10101a5 }
|
||||
int styleable ColorStateListItem_alpha 0
|
||||
int styleable ColorStateListItem_android_alpha 1
|
||||
int styleable ColorStateListItem_android_color 2
|
||||
int[] styleable FontFamily { 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008 }
|
||||
int styleable FontFamily_fontProviderAuthority 0
|
||||
int styleable FontFamily_fontProviderCerts 1
|
||||
int styleable FontFamily_fontProviderFetchStrategy 2
|
||||
int styleable FontFamily_fontProviderFetchTimeout 3
|
||||
int styleable FontFamily_fontProviderPackage 4
|
||||
int styleable FontFamily_fontProviderQuery 5
|
||||
int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f040002, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c }
|
||||
int styleable FontFamilyFont_android_font 0
|
||||
int styleable FontFamilyFont_android_fontStyle 1
|
||||
int styleable FontFamilyFont_android_fontVariationSettings 2
|
||||
int styleable FontFamilyFont_android_fontWeight 3
|
||||
int styleable FontFamilyFont_android_ttcIndex 4
|
||||
int styleable FontFamilyFont_font 5
|
||||
int styleable FontFamilyFont_fontStyle 6
|
||||
int styleable FontFamilyFont_fontVariationSettings 7
|
||||
int styleable FontFamilyFont_fontWeight 8
|
||||
int styleable FontFamilyFont_ttcIndex 9
|
||||
int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 }
|
||||
int styleable GradientColor_android_centerColor 0
|
||||
int styleable GradientColor_android_centerX 1
|
||||
int styleable GradientColor_android_centerY 2
|
||||
int styleable GradientColor_android_endColor 3
|
||||
int styleable GradientColor_android_endX 4
|
||||
int styleable GradientColor_android_endY 5
|
||||
int styleable GradientColor_android_gradientRadius 6
|
||||
int styleable GradientColor_android_startColor 7
|
||||
int styleable GradientColor_android_startX 8
|
||||
int styleable GradientColor_android_startY 9
|
||||
int styleable GradientColor_android_tileMode 10
|
||||
int styleable GradientColor_android_type 11
|
||||
int[] styleable GradientColorItem { 0x10101a5, 0x1010514 }
|
||||
int styleable GradientColorItem_android_color 0
|
||||
int styleable GradientColorItem_android_offset 1
|
171
obj/Debug/net8.0-android/lp/113/jl/R.txt
Normal file
171
obj/Debug/net8.0-android/lp/113/jl/R.txt
Normal file
@ -0,0 +1,171 @@
|
||||
int attr alpha 0x7f040001
|
||||
int attr font 0x7f040002
|
||||
int attr fontProviderAuthority 0x7f040003
|
||||
int attr fontProviderCerts 0x7f040004
|
||||
int attr fontProviderFetchStrategy 0x7f040005
|
||||
int attr fontProviderFetchTimeout 0x7f040006
|
||||
int attr fontProviderPackage 0x7f040007
|
||||
int attr fontProviderQuery 0x7f040008
|
||||
int attr fontStyle 0x7f040009
|
||||
int attr fontVariationSettings 0x7f04000a
|
||||
int attr fontWeight 0x7f04000b
|
||||
int attr ttcIndex 0x7f04000c
|
||||
int color notification_action_color_filter 0x7f060001
|
||||
int color notification_icon_bg_color 0x7f060002
|
||||
int color ripple_material_light 0x7f060003
|
||||
int color secondary_text_default_material_light 0x7f060004
|
||||
int dimen compat_button_inset_horizontal_material 0x7f070001
|
||||
int dimen compat_button_inset_vertical_material 0x7f070002
|
||||
int dimen compat_button_padding_horizontal_material 0x7f070003
|
||||
int dimen compat_button_padding_vertical_material 0x7f070004
|
||||
int dimen compat_control_corner_material 0x7f070005
|
||||
int dimen compat_notification_large_icon_max_height 0x7f070006
|
||||
int dimen compat_notification_large_icon_max_width 0x7f070007
|
||||
int dimen notification_action_icon_size 0x7f070008
|
||||
int dimen notification_action_text_size 0x7f070009
|
||||
int dimen notification_big_circle_margin 0x7f07000a
|
||||
int dimen notification_content_margin_start 0x7f07000b
|
||||
int dimen notification_large_icon_height 0x7f07000c
|
||||
int dimen notification_large_icon_width 0x7f07000d
|
||||
int dimen notification_main_column_padding_top 0x7f07000e
|
||||
int dimen notification_media_narrow_margin 0x7f07000f
|
||||
int dimen notification_right_icon_size 0x7f070010
|
||||
int dimen notification_right_side_padding_top 0x7f070011
|
||||
int dimen notification_small_icon_background_padding 0x7f070012
|
||||
int dimen notification_small_icon_size_as_large 0x7f070013
|
||||
int dimen notification_subtext_size 0x7f070014
|
||||
int dimen notification_top_pad 0x7f070015
|
||||
int dimen notification_top_pad_large_text 0x7f070016
|
||||
int drawable notification_action_background 0x7f080001
|
||||
int drawable notification_bg 0x7f080002
|
||||
int drawable notification_bg_low 0x7f080003
|
||||
int drawable notification_bg_low_normal 0x7f080004
|
||||
int drawable notification_bg_low_pressed 0x7f080005
|
||||
int drawable notification_bg_normal 0x7f080006
|
||||
int drawable notification_bg_normal_pressed 0x7f080007
|
||||
int drawable notification_icon_background 0x7f080008
|
||||
int drawable notification_template_icon_bg 0x7f080009
|
||||
int drawable notification_template_icon_low_bg 0x7f08000a
|
||||
int drawable notification_tile_bg 0x7f08000b
|
||||
int drawable notify_panel_notification_icon_bg 0x7f08000c
|
||||
int id accessibility_action_clickable_span 0x7f0b0001
|
||||
int id accessibility_custom_action_0 0x7f0b0002
|
||||
int id accessibility_custom_action_1 0x7f0b0003
|
||||
int id accessibility_custom_action_10 0x7f0b0004
|
||||
int id accessibility_custom_action_11 0x7f0b0005
|
||||
int id accessibility_custom_action_12 0x7f0b0006
|
||||
int id accessibility_custom_action_13 0x7f0b0007
|
||||
int id accessibility_custom_action_14 0x7f0b0008
|
||||
int id accessibility_custom_action_15 0x7f0b0009
|
||||
int id accessibility_custom_action_16 0x7f0b000a
|
||||
int id accessibility_custom_action_17 0x7f0b000b
|
||||
int id accessibility_custom_action_18 0x7f0b000c
|
||||
int id accessibility_custom_action_19 0x7f0b000d
|
||||
int id accessibility_custom_action_2 0x7f0b000e
|
||||
int id accessibility_custom_action_20 0x7f0b000f
|
||||
int id accessibility_custom_action_21 0x7f0b0010
|
||||
int id accessibility_custom_action_22 0x7f0b0011
|
||||
int id accessibility_custom_action_23 0x7f0b0012
|
||||
int id accessibility_custom_action_24 0x7f0b0013
|
||||
int id accessibility_custom_action_25 0x7f0b0014
|
||||
int id accessibility_custom_action_26 0x7f0b0015
|
||||
int id accessibility_custom_action_27 0x7f0b0016
|
||||
int id accessibility_custom_action_28 0x7f0b0017
|
||||
int id accessibility_custom_action_29 0x7f0b0018
|
||||
int id accessibility_custom_action_3 0x7f0b0019
|
||||
int id accessibility_custom_action_30 0x7f0b001a
|
||||
int id accessibility_custom_action_31 0x7f0b001b
|
||||
int id accessibility_custom_action_4 0x7f0b001c
|
||||
int id accessibility_custom_action_5 0x7f0b001d
|
||||
int id accessibility_custom_action_6 0x7f0b001e
|
||||
int id accessibility_custom_action_7 0x7f0b001f
|
||||
int id accessibility_custom_action_8 0x7f0b0020
|
||||
int id accessibility_custom_action_9 0x7f0b0021
|
||||
int id action_container 0x7f0b0022
|
||||
int id action_divider 0x7f0b0023
|
||||
int id action_image 0x7f0b0024
|
||||
int id action_text 0x7f0b0025
|
||||
int id actions 0x7f0b0026
|
||||
int id async 0x7f0b0027
|
||||
int id blocking 0x7f0b0028
|
||||
int id chronometer 0x7f0b0029
|
||||
int id dialog_button 0x7f0b002a
|
||||
int id forever 0x7f0b002b
|
||||
int id icon 0x7f0b002c
|
||||
int id icon_group 0x7f0b002d
|
||||
int id info 0x7f0b002e
|
||||
int id italic 0x7f0b002f
|
||||
int id line1 0x7f0b0030
|
||||
int id line3 0x7f0b0031
|
||||
int id normal 0x7f0b0032
|
||||
int id notification_background 0x7f0b0033
|
||||
int id notification_main_column 0x7f0b0034
|
||||
int id notification_main_column_container 0x7f0b0035
|
||||
int id right_icon 0x7f0b0036
|
||||
int id right_side 0x7f0b0037
|
||||
int id tag_accessibility_actions 0x7f0b0038
|
||||
int id tag_accessibility_clickable_spans 0x7f0b0039
|
||||
int id tag_accessibility_heading 0x7f0b003a
|
||||
int id tag_accessibility_pane_title 0x7f0b003b
|
||||
int id tag_screen_reader_focusable 0x7f0b003c
|
||||
int id tag_transition_group 0x7f0b003d
|
||||
int id tag_unhandled_key_event_manager 0x7f0b003e
|
||||
int id tag_unhandled_key_listeners 0x7f0b003f
|
||||
int id text 0x7f0b0040
|
||||
int id text2 0x7f0b0041
|
||||
int id time 0x7f0b0042
|
||||
int id title 0x7f0b0043
|
||||
int integer status_bar_notification_info_maxnum 0x7f0c0001
|
||||
int layout custom_dialog 0x7f0e0001
|
||||
int layout notification_action 0x7f0e0002
|
||||
int layout notification_action_tombstone 0x7f0e0003
|
||||
int layout notification_template_custom_big 0x7f0e0004
|
||||
int layout notification_template_icon_group 0x7f0e0005
|
||||
int layout notification_template_part_chronometer 0x7f0e0006
|
||||
int layout notification_template_part_time 0x7f0e0007
|
||||
int string status_bar_notification_info_overflow 0x7f140001
|
||||
int style TextAppearance_Compat_Notification 0x7f150001
|
||||
int style TextAppearance_Compat_Notification_Info 0x7f150002
|
||||
int style TextAppearance_Compat_Notification_Line2 0x7f150003
|
||||
int style TextAppearance_Compat_Notification_Time 0x7f150004
|
||||
int style TextAppearance_Compat_Notification_Title 0x7f150005
|
||||
int style Widget_Compat_NotificationActionContainer 0x7f150006
|
||||
int style Widget_Compat_NotificationActionText 0x7f150007
|
||||
int[] styleable ColorStateListItem { 0x7f040001, 0x101031f, 0x10101a5 }
|
||||
int styleable ColorStateListItem_alpha 0
|
||||
int styleable ColorStateListItem_android_alpha 1
|
||||
int styleable ColorStateListItem_android_color 2
|
||||
int[] styleable FontFamily { 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008 }
|
||||
int styleable FontFamily_fontProviderAuthority 0
|
||||
int styleable FontFamily_fontProviderCerts 1
|
||||
int styleable FontFamily_fontProviderFetchStrategy 2
|
||||
int styleable FontFamily_fontProviderFetchTimeout 3
|
||||
int styleable FontFamily_fontProviderPackage 4
|
||||
int styleable FontFamily_fontProviderQuery 5
|
||||
int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f040002, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c }
|
||||
int styleable FontFamilyFont_android_font 0
|
||||
int styleable FontFamilyFont_android_fontStyle 1
|
||||
int styleable FontFamilyFont_android_fontVariationSettings 2
|
||||
int styleable FontFamilyFont_android_fontWeight 3
|
||||
int styleable FontFamilyFont_android_ttcIndex 4
|
||||
int styleable FontFamilyFont_font 5
|
||||
int styleable FontFamilyFont_fontStyle 6
|
||||
int styleable FontFamilyFont_fontVariationSettings 7
|
||||
int styleable FontFamilyFont_fontWeight 8
|
||||
int styleable FontFamilyFont_ttcIndex 9
|
||||
int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 }
|
||||
int styleable GradientColor_android_centerColor 0
|
||||
int styleable GradientColor_android_centerX 1
|
||||
int styleable GradientColor_android_centerY 2
|
||||
int styleable GradientColor_android_endColor 3
|
||||
int styleable GradientColor_android_endX 4
|
||||
int styleable GradientColor_android_endY 5
|
||||
int styleable GradientColor_android_gradientRadius 6
|
||||
int styleable GradientColor_android_startColor 7
|
||||
int styleable GradientColor_android_startX 8
|
||||
int styleable GradientColor_android_startY 9
|
||||
int styleable GradientColor_android_tileMode 10
|
||||
int styleable GradientColor_android_type 11
|
||||
int[] styleable GradientColorItem { 0x10101a5, 0x1010514 }
|
||||
int styleable GradientColorItem_android_color 0
|
||||
int styleable GradientColorItem_android_offset 1
|
19
obj/Debug/net8.0-android/lp/113/jl/proguard.txt
Normal file
19
obj/Debug/net8.0-android/lp/113/jl/proguard.txt
Normal file
@ -0,0 +1,19 @@
|
||||
# Copyright (C) 2016 The Android Open Source Project
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
# keep setters in VectorDrawables so that animations can still work.
|
||||
-keepclassmembers class androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$* {
|
||||
void set*(***);
|
||||
*** get*();
|
||||
}
|
1643
obj/Debug/net8.0-android/lp/114/jl/R.txt
Normal file
1643
obj/Debug/net8.0-android/lp/114/jl/R.txt
Normal file
File diff suppressed because it is too large
Load Diff
18
obj/Debug/net8.0-android/lp/114/jl/proguard.txt
Normal file
18
obj/Debug/net8.0-android/lp/114/jl/proguard.txt
Normal file
@ -0,0 +1,18 @@
|
||||
# Copyright (C) 2017 The Android Open Source Project
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
# Keep a field in transition that is used to keep a reference to weakly-referenced object
|
||||
-keepclassmembers class androidx.transition.ChangeBounds$* extends android.animation.AnimatorListenerAdapter {
|
||||
androidx.transition.ChangeBounds$ViewBounds mViewBounds;
|
||||
}
|
0
obj/Debug/net8.0-android/lp/115/jl/R.txt
Normal file
0
obj/Debug/net8.0-android/lp/115/jl/R.txt
Normal file
0
obj/Debug/net8.0-android/lp/116/jl/R.txt
Normal file
0
obj/Debug/net8.0-android/lp/116/jl/R.txt
Normal file
0
obj/Debug/net8.0-android/lp/116/jl/public.txt
Normal file
0
obj/Debug/net8.0-android/lp/116/jl/public.txt
Normal file
0
obj/Debug/net8.0-android/lp/117/jl/R.txt
Normal file
0
obj/Debug/net8.0-android/lp/117/jl/R.txt
Normal file
41
obj/Debug/net8.0-android/lp/117/jl/baseline-prof.txt
Normal file
41
obj/Debug/net8.0-android/lp/117/jl/baseline-prof.txt
Normal file
@ -0,0 +1,41 @@
|
||||
# Baseline profiles for lifecycle-process
|
||||
|
||||
HSPLandroidx/lifecycle/EmptyActivityLifecycleCallbacks;-><init>()V
|
||||
HSPLandroidx/lifecycle/EmptyActivityLifecycleCallbacks;->onActivityCreated(Landroid/app/Activity;Landroid/os/Bundle;)V
|
||||
HSPLandroidx/lifecycle/EmptyActivityLifecycleCallbacks;->onActivityResumed(Landroid/app/Activity;)V
|
||||
HSPLandroidx/lifecycle/EmptyActivityLifecycleCallbacks;->onActivityStarted(Landroid/app/Activity;)V
|
||||
HSPLandroidx/lifecycle/LifecycleDispatcher$DispatcherActivityCallback;-><init>()V
|
||||
HSPLandroidx/lifecycle/LifecycleDispatcher$DispatcherActivityCallback;->onActivityCreated(Landroid/app/Activity;Landroid/os/Bundle;)V
|
||||
HSPLandroidx/lifecycle/LifecycleDispatcher;-><clinit>()V
|
||||
HSPLandroidx/lifecycle/LifecycleDispatcher;->init(Landroid/content/Context;)V
|
||||
HSPLandroidx/lifecycle/ProcessLifecycleInitializer;-><init>()V
|
||||
HSPLandroidx/lifecycle/ProcessLifecycleInitializer;->create(Landroid/content/Context;)Landroidx/lifecycle/LifecycleOwner;
|
||||
HSPLandroidx/lifecycle/ProcessLifecycleInitializer;->create(Landroid/content/Context;)Ljava/lang/Object;
|
||||
HSPLandroidx/lifecycle/ProcessLifecycleInitializer;->dependencies()Ljava/util/List;
|
||||
HSPLandroidx/lifecycle/ProcessLifecycleOwner$1;-><init>(Landroidx/lifecycle/ProcessLifecycleOwner;)V
|
||||
HSPLandroidx/lifecycle/ProcessLifecycleOwner$2;-><init>(Landroidx/lifecycle/ProcessLifecycleOwner;)V
|
||||
HSPLandroidx/lifecycle/ProcessLifecycleOwner$3$1;-><init>(Landroidx/lifecycle/ProcessLifecycleOwner$3;)V
|
||||
HSPLandroidx/lifecycle/ProcessLifecycleOwner$3$1;->onActivityPostResumed(Landroid/app/Activity;)V
|
||||
HSPLandroidx/lifecycle/ProcessLifecycleOwner$3$1;->onActivityPostStarted(Landroid/app/Activity;)V
|
||||
HSPLandroidx/lifecycle/ProcessLifecycleOwner$3;-><init>(Landroidx/lifecycle/ProcessLifecycleOwner;)V
|
||||
HSPLandroidx/lifecycle/ProcessLifecycleOwner$3;->onActivityCreated(Landroid/app/Activity;Landroid/os/Bundle;)V
|
||||
HSPLandroidx/lifecycle/ProcessLifecycleOwner$3;->onActivityPreCreated(Landroid/app/Activity;Landroid/os/Bundle;)V
|
||||
HSPLandroidx/lifecycle/ProcessLifecycleOwner;-><clinit>()V
|
||||
HSPLandroidx/lifecycle/ProcessLifecycleOwner;-><init>()V
|
||||
HSPLandroidx/lifecycle/ProcessLifecycleOwner;->activityResumed()V
|
||||
HSPLandroidx/lifecycle/ProcessLifecycleOwner;->activityStarted()V
|
||||
HSPLandroidx/lifecycle/ProcessLifecycleOwner;->attach(Landroid/content/Context;)V
|
||||
HSPLandroidx/lifecycle/ProcessLifecycleOwner;->get()Landroidx/lifecycle/LifecycleOwner;
|
||||
HSPLandroidx/lifecycle/ProcessLifecycleOwner;->getLifecycle()Landroidx/lifecycle/Lifecycle;
|
||||
HSPLandroidx/lifecycle/ProcessLifecycleOwner;->init(Landroid/content/Context;)V
|
||||
PLandroidx/lifecycle/EmptyActivityLifecycleCallbacks;->onActivityDestroyed(Landroid/app/Activity;)V
|
||||
PLandroidx/lifecycle/EmptyActivityLifecycleCallbacks;->onActivityPaused(Landroid/app/Activity;)V
|
||||
PLandroidx/lifecycle/EmptyActivityLifecycleCallbacks;->onActivityStopped(Landroid/app/Activity;)V
|
||||
PLandroidx/lifecycle/LifecycleDispatcher$DispatcherActivityCallback;->onActivityStopped(Landroid/app/Activity;)V
|
||||
PLandroidx/lifecycle/ProcessLifecycleOwner$1;->run()V
|
||||
PLandroidx/lifecycle/ProcessLifecycleOwner$3;->onActivityPaused(Landroid/app/Activity;)V
|
||||
PLandroidx/lifecycle/ProcessLifecycleOwner$3;->onActivityStopped(Landroid/app/Activity;)V
|
||||
PLandroidx/lifecycle/ProcessLifecycleOwner;->activityPaused()V
|
||||
PLandroidx/lifecycle/ProcessLifecycleOwner;->activityStopped()V
|
||||
PLandroidx/lifecycle/ProcessLifecycleOwner;->dispatchPauseIfNeeded()V
|
||||
PLandroidx/lifecycle/ProcessLifecycleOwner;->dispatchStopIfNeeded()V
|
2
obj/Debug/net8.0-android/lp/117/jl/proguard.txt
Normal file
2
obj/Debug/net8.0-android/lp/117/jl/proguard.txt
Normal file
@ -0,0 +1,2 @@
|
||||
# this rule is need to work properly when app is compiled with api 28, see b/142778206
|
||||
-keepclassmembers class * extends androidx.lifecycle.EmptyActivityLifecycleCallbacks { *; }
|
0
obj/Debug/net8.0-android/lp/117/jl/public.txt
Normal file
0
obj/Debug/net8.0-android/lp/117/jl/public.txt
Normal file
0
obj/Debug/net8.0-android/lp/118/jl/R.txt
Normal file
0
obj/Debug/net8.0-android/lp/118/jl/R.txt
Normal file
131
obj/Debug/net8.0-android/lp/119/jl/R.txt
Normal file
131
obj/Debug/net8.0-android/lp/119/jl/R.txt
Normal file
@ -0,0 +1,131 @@
|
||||
int attr alpha 0x7f040001
|
||||
int attr font 0x7f040002
|
||||
int attr fontProviderAuthority 0x7f040003
|
||||
int attr fontProviderCerts 0x7f040004
|
||||
int attr fontProviderFetchStrategy 0x7f040005
|
||||
int attr fontProviderFetchTimeout 0x7f040006
|
||||
int attr fontProviderPackage 0x7f040007
|
||||
int attr fontProviderQuery 0x7f040008
|
||||
int attr fontStyle 0x7f040009
|
||||
int attr fontVariationSettings 0x7f04000a
|
||||
int attr fontWeight 0x7f04000b
|
||||
int attr ttcIndex 0x7f04000c
|
||||
int color notification_action_color_filter 0x7f060001
|
||||
int color notification_icon_bg_color 0x7f060002
|
||||
int color ripple_material_light 0x7f060003
|
||||
int color secondary_text_default_material_light 0x7f060004
|
||||
int dimen compat_button_inset_horizontal_material 0x7f080001
|
||||
int dimen compat_button_inset_vertical_material 0x7f080002
|
||||
int dimen compat_button_padding_horizontal_material 0x7f080003
|
||||
int dimen compat_button_padding_vertical_material 0x7f080004
|
||||
int dimen compat_control_corner_material 0x7f080005
|
||||
int dimen compat_notification_large_icon_max_height 0x7f080006
|
||||
int dimen compat_notification_large_icon_max_width 0x7f080007
|
||||
int dimen notification_action_icon_size 0x7f080008
|
||||
int dimen notification_action_text_size 0x7f080009
|
||||
int dimen notification_big_circle_margin 0x7f08000a
|
||||
int dimen notification_content_margin_start 0x7f08000b
|
||||
int dimen notification_large_icon_height 0x7f08000c
|
||||
int dimen notification_large_icon_width 0x7f08000d
|
||||
int dimen notification_main_column_padding_top 0x7f08000e
|
||||
int dimen notification_media_narrow_margin 0x7f08000f
|
||||
int dimen notification_right_icon_size 0x7f080010
|
||||
int dimen notification_right_side_padding_top 0x7f080011
|
||||
int dimen notification_small_icon_background_padding 0x7f080012
|
||||
int dimen notification_small_icon_size_as_large 0x7f080013
|
||||
int dimen notification_subtext_size 0x7f080014
|
||||
int dimen notification_top_pad 0x7f080015
|
||||
int dimen notification_top_pad_large_text 0x7f080016
|
||||
int drawable notification_action_background 0x7f090001
|
||||
int drawable notification_bg 0x7f090002
|
||||
int drawable notification_bg_low 0x7f090003
|
||||
int drawable notification_bg_low_normal 0x7f090004
|
||||
int drawable notification_bg_low_pressed 0x7f090005
|
||||
int drawable notification_bg_normal 0x7f090006
|
||||
int drawable notification_bg_normal_pressed 0x7f090007
|
||||
int drawable notification_icon_background 0x7f090008
|
||||
int drawable notification_template_icon_bg 0x7f090009
|
||||
int drawable notification_template_icon_low_bg 0x7f09000a
|
||||
int drawable notification_tile_bg 0x7f09000b
|
||||
int drawable notify_panel_notification_icon_bg 0x7f09000c
|
||||
int id action_container 0x7f0c0001
|
||||
int id action_divider 0x7f0c0002
|
||||
int id action_image 0x7f0c0003
|
||||
int id action_text 0x7f0c0004
|
||||
int id actions 0x7f0c0005
|
||||
int id async 0x7f0c0006
|
||||
int id blocking 0x7f0c0007
|
||||
int id chronometer 0x7f0c0008
|
||||
int id forever 0x7f0c0009
|
||||
int id icon 0x7f0c000a
|
||||
int id icon_group 0x7f0c000b
|
||||
int id info 0x7f0c000c
|
||||
int id italic 0x7f0c000d
|
||||
int id line1 0x7f0c000e
|
||||
int id line3 0x7f0c000f
|
||||
int id normal 0x7f0c0010
|
||||
int id notification_background 0x7f0c0011
|
||||
int id notification_main_column 0x7f0c0012
|
||||
int id notification_main_column_container 0x7f0c0013
|
||||
int id right_icon 0x7f0c0014
|
||||
int id right_side 0x7f0c0015
|
||||
int id tag_transition_group 0x7f0c0016
|
||||
int id tag_unhandled_key_event_manager 0x7f0c0017
|
||||
int id tag_unhandled_key_listeners 0x7f0c0018
|
||||
int id text 0x7f0c0019
|
||||
int id text2 0x7f0c001a
|
||||
int id time 0x7f0c001b
|
||||
int id title 0x7f0c001c
|
||||
int integer status_bar_notification_info_maxnum 0x7f0d0001
|
||||
int layout notification_action 0x7f0f0001
|
||||
int layout notification_action_tombstone 0x7f0f0002
|
||||
int layout notification_template_custom_big 0x7f0f0003
|
||||
int layout notification_template_icon_group 0x7f0f0004
|
||||
int layout notification_template_part_chronometer 0x7f0f0005
|
||||
int layout notification_template_part_time 0x7f0f0006
|
||||
int string status_bar_notification_info_overflow 0x7f150001
|
||||
int style TextAppearance_Compat_Notification 0x7f160001
|
||||
int style TextAppearance_Compat_Notification_Info 0x7f160002
|
||||
int style TextAppearance_Compat_Notification_Line2 0x7f160003
|
||||
int style TextAppearance_Compat_Notification_Time 0x7f160004
|
||||
int style TextAppearance_Compat_Notification_Title 0x7f160005
|
||||
int style Widget_Compat_NotificationActionContainer 0x7f160006
|
||||
int style Widget_Compat_NotificationActionText 0x7f160007
|
||||
int[] styleable ColorStateListItem { 0x7f040001, 0x101031f, 0x10101a5 }
|
||||
int styleable ColorStateListItem_alpha 0
|
||||
int styleable ColorStateListItem_android_alpha 1
|
||||
int styleable ColorStateListItem_android_color 2
|
||||
int[] styleable FontFamily { 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008 }
|
||||
int styleable FontFamily_fontProviderAuthority 0
|
||||
int styleable FontFamily_fontProviderCerts 1
|
||||
int styleable FontFamily_fontProviderFetchStrategy 2
|
||||
int styleable FontFamily_fontProviderFetchTimeout 3
|
||||
int styleable FontFamily_fontProviderPackage 4
|
||||
int styleable FontFamily_fontProviderQuery 5
|
||||
int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f040002, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c }
|
||||
int styleable FontFamilyFont_android_font 0
|
||||
int styleable FontFamilyFont_android_fontStyle 1
|
||||
int styleable FontFamilyFont_android_fontVariationSettings 2
|
||||
int styleable FontFamilyFont_android_fontWeight 3
|
||||
int styleable FontFamilyFont_android_ttcIndex 4
|
||||
int styleable FontFamilyFont_font 5
|
||||
int styleable FontFamilyFont_fontStyle 6
|
||||
int styleable FontFamilyFont_fontVariationSettings 7
|
||||
int styleable FontFamilyFont_fontWeight 8
|
||||
int styleable FontFamilyFont_ttcIndex 9
|
||||
int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 }
|
||||
int styleable GradientColor_android_centerColor 0
|
||||
int styleable GradientColor_android_centerX 1
|
||||
int styleable GradientColor_android_centerY 2
|
||||
int styleable GradientColor_android_endColor 3
|
||||
int styleable GradientColor_android_endX 4
|
||||
int styleable GradientColor_android_endY 5
|
||||
int styleable GradientColor_android_gradientRadius 6
|
||||
int styleable GradientColor_android_startColor 7
|
||||
int styleable GradientColor_android_startX 8
|
||||
int styleable GradientColor_android_startY 9
|
||||
int styleable GradientColor_android_tileMode 10
|
||||
int styleable GradientColor_android_type 11
|
||||
int[] styleable GradientColorItem { 0x10101a5, 0x1010514 }
|
||||
int styleable GradientColorItem_android_color 0
|
||||
int styleable GradientColorItem_android_offset 1
|
0
obj/Debug/net8.0-android/lp/120/jl/R.txt
Normal file
0
obj/Debug/net8.0-android/lp/120/jl/R.txt
Normal file
0
obj/Debug/net8.0-android/lp/120/jl/public.txt
Normal file
0
obj/Debug/net8.0-android/lp/120/jl/public.txt
Normal file
0
obj/Debug/net8.0-android/lp/121/jl/R.txt
Normal file
0
obj/Debug/net8.0-android/lp/121/jl/R.txt
Normal file
0
obj/Debug/net8.0-android/lp/121/jl/public.txt
Normal file
0
obj/Debug/net8.0-android/lp/121/jl/public.txt
Normal file
131
obj/Debug/net8.0-android/lp/122/jl/R.txt
Normal file
131
obj/Debug/net8.0-android/lp/122/jl/R.txt
Normal file
@ -0,0 +1,131 @@
|
||||
int attr alpha 0x7f040001
|
||||
int attr font 0x7f040002
|
||||
int attr fontProviderAuthority 0x7f040003
|
||||
int attr fontProviderCerts 0x7f040004
|
||||
int attr fontProviderFetchStrategy 0x7f040005
|
||||
int attr fontProviderFetchTimeout 0x7f040006
|
||||
int attr fontProviderPackage 0x7f040007
|
||||
int attr fontProviderQuery 0x7f040008
|
||||
int attr fontStyle 0x7f040009
|
||||
int attr fontVariationSettings 0x7f04000a
|
||||
int attr fontWeight 0x7f04000b
|
||||
int attr ttcIndex 0x7f04000c
|
||||
int color notification_action_color_filter 0x7f060001
|
||||
int color notification_icon_bg_color 0x7f060002
|
||||
int color ripple_material_light 0x7f060003
|
||||
int color secondary_text_default_material_light 0x7f060004
|
||||
int dimen compat_button_inset_horizontal_material 0x7f080001
|
||||
int dimen compat_button_inset_vertical_material 0x7f080002
|
||||
int dimen compat_button_padding_horizontal_material 0x7f080003
|
||||
int dimen compat_button_padding_vertical_material 0x7f080004
|
||||
int dimen compat_control_corner_material 0x7f080005
|
||||
int dimen compat_notification_large_icon_max_height 0x7f080006
|
||||
int dimen compat_notification_large_icon_max_width 0x7f080007
|
||||
int dimen notification_action_icon_size 0x7f080008
|
||||
int dimen notification_action_text_size 0x7f080009
|
||||
int dimen notification_big_circle_margin 0x7f08000a
|
||||
int dimen notification_content_margin_start 0x7f08000b
|
||||
int dimen notification_large_icon_height 0x7f08000c
|
||||
int dimen notification_large_icon_width 0x7f08000d
|
||||
int dimen notification_main_column_padding_top 0x7f08000e
|
||||
int dimen notification_media_narrow_margin 0x7f08000f
|
||||
int dimen notification_right_icon_size 0x7f080010
|
||||
int dimen notification_right_side_padding_top 0x7f080011
|
||||
int dimen notification_small_icon_background_padding 0x7f080012
|
||||
int dimen notification_small_icon_size_as_large 0x7f080013
|
||||
int dimen notification_subtext_size 0x7f080014
|
||||
int dimen notification_top_pad 0x7f080015
|
||||
int dimen notification_top_pad_large_text 0x7f080016
|
||||
int drawable notification_action_background 0x7f090001
|
||||
int drawable notification_bg 0x7f090002
|
||||
int drawable notification_bg_low 0x7f090003
|
||||
int drawable notification_bg_low_normal 0x7f090004
|
||||
int drawable notification_bg_low_pressed 0x7f090005
|
||||
int drawable notification_bg_normal 0x7f090006
|
||||
int drawable notification_bg_normal_pressed 0x7f090007
|
||||
int drawable notification_icon_background 0x7f090008
|
||||
int drawable notification_template_icon_bg 0x7f090009
|
||||
int drawable notification_template_icon_low_bg 0x7f09000a
|
||||
int drawable notification_tile_bg 0x7f09000b
|
||||
int drawable notify_panel_notification_icon_bg 0x7f09000c
|
||||
int id action_container 0x7f0c0001
|
||||
int id action_divider 0x7f0c0002
|
||||
int id action_image 0x7f0c0003
|
||||
int id action_text 0x7f0c0004
|
||||
int id actions 0x7f0c0005
|
||||
int id async 0x7f0c0006
|
||||
int id blocking 0x7f0c0007
|
||||
int id chronometer 0x7f0c0008
|
||||
int id forever 0x7f0c0009
|
||||
int id icon 0x7f0c000a
|
||||
int id icon_group 0x7f0c000b
|
||||
int id info 0x7f0c000c
|
||||
int id italic 0x7f0c000d
|
||||
int id line1 0x7f0c000e
|
||||
int id line3 0x7f0c000f
|
||||
int id normal 0x7f0c0010
|
||||
int id notification_background 0x7f0c0011
|
||||
int id notification_main_column 0x7f0c0012
|
||||
int id notification_main_column_container 0x7f0c0013
|
||||
int id right_icon 0x7f0c0014
|
||||
int id right_side 0x7f0c0015
|
||||
int id tag_transition_group 0x7f0c0016
|
||||
int id tag_unhandled_key_event_manager 0x7f0c0017
|
||||
int id tag_unhandled_key_listeners 0x7f0c0018
|
||||
int id text 0x7f0c0019
|
||||
int id text2 0x7f0c001a
|
||||
int id time 0x7f0c001b
|
||||
int id title 0x7f0c001c
|
||||
int integer status_bar_notification_info_maxnum 0x7f0d0001
|
||||
int layout notification_action 0x7f0f0001
|
||||
int layout notification_action_tombstone 0x7f0f0002
|
||||
int layout notification_template_custom_big 0x7f0f0003
|
||||
int layout notification_template_icon_group 0x7f0f0004
|
||||
int layout notification_template_part_chronometer 0x7f0f0005
|
||||
int layout notification_template_part_time 0x7f0f0006
|
||||
int string status_bar_notification_info_overflow 0x7f150001
|
||||
int style TextAppearance_Compat_Notification 0x7f160001
|
||||
int style TextAppearance_Compat_Notification_Info 0x7f160002
|
||||
int style TextAppearance_Compat_Notification_Line2 0x7f160003
|
||||
int style TextAppearance_Compat_Notification_Time 0x7f160004
|
||||
int style TextAppearance_Compat_Notification_Title 0x7f160005
|
||||
int style Widget_Compat_NotificationActionContainer 0x7f160006
|
||||
int style Widget_Compat_NotificationActionText 0x7f160007
|
||||
int[] styleable ColorStateListItem { 0x7f040001, 0x101031f, 0x10101a5 }
|
||||
int styleable ColorStateListItem_alpha 0
|
||||
int styleable ColorStateListItem_android_alpha 1
|
||||
int styleable ColorStateListItem_android_color 2
|
||||
int[] styleable FontFamily { 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008 }
|
||||
int styleable FontFamily_fontProviderAuthority 0
|
||||
int styleable FontFamily_fontProviderCerts 1
|
||||
int styleable FontFamily_fontProviderFetchStrategy 2
|
||||
int styleable FontFamily_fontProviderFetchTimeout 3
|
||||
int styleable FontFamily_fontProviderPackage 4
|
||||
int styleable FontFamily_fontProviderQuery 5
|
||||
int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f040002, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c }
|
||||
int styleable FontFamilyFont_android_font 0
|
||||
int styleable FontFamilyFont_android_fontStyle 1
|
||||
int styleable FontFamilyFont_android_fontVariationSettings 2
|
||||
int styleable FontFamilyFont_android_fontWeight 3
|
||||
int styleable FontFamilyFont_android_ttcIndex 4
|
||||
int styleable FontFamilyFont_font 5
|
||||
int styleable FontFamilyFont_fontStyle 6
|
||||
int styleable FontFamilyFont_fontVariationSettings 7
|
||||
int styleable FontFamilyFont_fontWeight 8
|
||||
int styleable FontFamilyFont_ttcIndex 9
|
||||
int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 }
|
||||
int styleable GradientColor_android_centerColor 0
|
||||
int styleable GradientColor_android_centerX 1
|
||||
int styleable GradientColor_android_centerY 2
|
||||
int styleable GradientColor_android_endColor 3
|
||||
int styleable GradientColor_android_endX 4
|
||||
int styleable GradientColor_android_endY 5
|
||||
int styleable GradientColor_android_gradientRadius 6
|
||||
int styleable GradientColor_android_startColor 7
|
||||
int styleable GradientColor_android_startX 8
|
||||
int styleable GradientColor_android_startY 9
|
||||
int styleable GradientColor_android_tileMode 10
|
||||
int styleable GradientColor_android_type 11
|
||||
int[] styleable GradientColorItem { 0x10101a5, 0x1010514 }
|
||||
int styleable GradientColorItem_android_color 0
|
||||
int styleable GradientColorItem_android_offset 1
|
5
obj/Debug/net8.0-android/lp/123/jl/R.txt
Normal file
5
obj/Debug/net8.0-android/lp/123/jl/R.txt
Normal file
@ -0,0 +1,5 @@
|
||||
int attr drawerLayoutStyle 0x0
|
||||
int attr elevation 0x0
|
||||
int dimen def_drawer_elevation 0x0
|
||||
int[] styleable DrawerLayout { 0x0 }
|
||||
int styleable DrawerLayout_elevation 0
|
2
obj/Debug/net8.0-android/lp/123/jl/public.txt
Normal file
2
obj/Debug/net8.0-android/lp/123/jl/public.txt
Normal file
@ -0,0 +1,2 @@
|
||||
attr drawerLayoutStyle
|
||||
attr elevation
|
0
obj/Debug/net8.0-android/lp/124/jl/R.txt
Normal file
0
obj/Debug/net8.0-android/lp/124/jl/R.txt
Normal file
28
obj/Debug/net8.0-android/lp/125/jl/R.txt
Normal file
28
obj/Debug/net8.0-android/lp/125/jl/R.txt
Normal file
@ -0,0 +1,28 @@
|
||||
int attr coordinatorLayoutStyle 0x0
|
||||
int attr keylines 0x0
|
||||
int attr layout_anchor 0x0
|
||||
int attr layout_anchorGravity 0x0
|
||||
int attr layout_behavior 0x0
|
||||
int attr layout_dodgeInsetEdges 0x0
|
||||
int attr layout_insetEdge 0x0
|
||||
int attr layout_keyline 0x0
|
||||
int attr statusBarBackground 0x0
|
||||
int id bottom 0x0
|
||||
int id end 0x0
|
||||
int id left 0x0
|
||||
int id none 0x0
|
||||
int id right 0x0
|
||||
int id start 0x0
|
||||
int id top 0x0
|
||||
int style Widget_Support_CoordinatorLayout 0x0
|
||||
int[] styleable CoordinatorLayout { 0x0, 0x0 }
|
||||
int styleable CoordinatorLayout_keylines 0
|
||||
int styleable CoordinatorLayout_statusBarBackground 1
|
||||
int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
|
||||
int styleable CoordinatorLayout_Layout_android_layout_gravity 0
|
||||
int styleable CoordinatorLayout_Layout_layout_anchor 1
|
||||
int styleable CoordinatorLayout_Layout_layout_anchorGravity 2
|
||||
int styleable CoordinatorLayout_Layout_layout_behavior 3
|
||||
int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4
|
||||
int styleable CoordinatorLayout_Layout_layout_insetEdge 5
|
||||
int styleable CoordinatorLayout_Layout_layout_keyline 6
|
25
obj/Debug/net8.0-android/lp/125/jl/proguard.txt
Normal file
25
obj/Debug/net8.0-android/lp/125/jl/proguard.txt
Normal file
@ -0,0 +1,25 @@
|
||||
# Copyright (C) 2016 The Android Open Source Project
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
# CoordinatorLayout resolves the behaviors of its child components with reflection.
|
||||
-keep public class * extends androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior {
|
||||
public <init>(android.content.Context, android.util.AttributeSet);
|
||||
public <init>();
|
||||
}
|
||||
|
||||
# Make sure we keep annotations for CoordinatorLayout's DefaultBehavior and ViewPager's DecorView
|
||||
-keepattributes AnnotationDefault,
|
||||
RuntimeVisibleAnnotations,
|
||||
RuntimeVisibleParameterAnnotations,
|
||||
RuntimeVisibleTypeAnnotations
|
9
obj/Debug/net8.0-android/lp/125/jl/public.txt
Normal file
9
obj/Debug/net8.0-android/lp/125/jl/public.txt
Normal file
@ -0,0 +1,9 @@
|
||||
style Widget_Support_CoordinatorLayout
|
||||
attr keylines
|
||||
attr layout_anchor
|
||||
attr layout_anchorGravity
|
||||
attr layout_behavior
|
||||
attr layout_dodgeInsetEdges
|
||||
attr layout_insetEdge
|
||||
attr layout_keyline
|
||||
attr statusBarBackground
|
25
obj/Debug/net8.0-android/lp/126/jl/R.txt
Normal file
25
obj/Debug/net8.0-android/lp/126/jl/R.txt
Normal file
@ -0,0 +1,25 @@
|
||||
int drawable abc_vector_test 0x0
|
||||
int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 }
|
||||
int styleable AnimatedStateListDrawableCompat_android_constantSize 0
|
||||
int styleable AnimatedStateListDrawableCompat_android_dither 1
|
||||
int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2
|
||||
int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3
|
||||
int styleable AnimatedStateListDrawableCompat_android_variablePadding 4
|
||||
int styleable AnimatedStateListDrawableCompat_android_visible 5
|
||||
int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 }
|
||||
int styleable AnimatedStateListDrawableItem_android_drawable 0
|
||||
int styleable AnimatedStateListDrawableItem_android_id 1
|
||||
int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 }
|
||||
int styleable AnimatedStateListDrawableTransition_android_drawable 0
|
||||
int styleable AnimatedStateListDrawableTransition_android_fromId 1
|
||||
int styleable AnimatedStateListDrawableTransition_android_reversible 2
|
||||
int styleable AnimatedStateListDrawableTransition_android_toId 3
|
||||
int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 }
|
||||
int styleable StateListDrawable_android_constantSize 0
|
||||
int styleable StateListDrawable_android_dither 1
|
||||
int styleable StateListDrawable_android_enterFadeDuration 2
|
||||
int styleable StateListDrawable_android_exitFadeDuration 3
|
||||
int styleable StateListDrawable_android_variablePadding 4
|
||||
int styleable StateListDrawable_android_visible 5
|
||||
int[] styleable StateListDrawableItem { 0x1010199 }
|
||||
int styleable StateListDrawableItem_android_drawable 0
|
0
obj/Debug/net8.0-android/lp/126/jl/public.txt
Normal file
0
obj/Debug/net8.0-android/lp/126/jl/public.txt
Normal file
1475
obj/Debug/net8.0-android/lp/127/jl/R.txt
Normal file
1475
obj/Debug/net8.0-android/lp/127/jl/R.txt
Normal file
File diff suppressed because it is too large
Load Diff
596
obj/Debug/net8.0-android/lp/127/jl/baseline-prof.txt
Normal file
596
obj/Debug/net8.0-android/lp/127/jl/baseline-prof.txt
Normal file
@ -0,0 +1,596 @@
|
||||
# Baseline profiles for androidx.appcompat
|
||||
|
||||
HSPLandroidx/appcompat/R$styleable;-><clinit>()V
|
||||
HSPLandroidx/appcompat/app/ActionBar$LayoutParams;-><init>(II)V
|
||||
HSPLandroidx/appcompat/app/ActionBar;-><init>()V
|
||||
HSPLandroidx/appcompat/app/AppCompatActivity$1;-><init>(Landroidx/appcompat/app/AppCompatActivity;)V
|
||||
HSPLandroidx/appcompat/app/AppCompatActivity$2;-><init>(Landroidx/appcompat/app/AppCompatActivity;)V
|
||||
HSPLandroidx/appcompat/app/AppCompatActivity$2;->onContextAvailable(Landroid/content/Context;)V
|
||||
HSPLandroidx/appcompat/app/AppCompatActivity;-><init>()V
|
||||
HSPLandroidx/appcompat/app/AppCompatActivity;->attachBaseContext(Landroid/content/Context;)V
|
||||
HSPLandroidx/appcompat/app/AppCompatActivity;->getDelegate()Landroidx/appcompat/app/AppCompatDelegate;
|
||||
HSPLandroidx/appcompat/app/AppCompatActivity;->getMenuInflater()Landroid/view/MenuInflater;
|
||||
HSPLandroidx/appcompat/app/AppCompatActivity;->getResources()Landroid/content/res/Resources;
|
||||
HSPLandroidx/appcompat/app/AppCompatActivity;->initDelegate()V
|
||||
HSPLandroidx/appcompat/app/AppCompatActivity;->initViewTreeOwners()V
|
||||
HSPLandroidx/appcompat/app/AppCompatActivity;->onContentChanged()V
|
||||
HSPLandroidx/appcompat/app/AppCompatActivity;->onPostCreate(Landroid/os/Bundle;)V
|
||||
HSPLandroidx/appcompat/app/AppCompatActivity;->onPostResume()V
|
||||
HSPLandroidx/appcompat/app/AppCompatActivity;->onStart()V
|
||||
HSPLandroidx/appcompat/app/AppCompatActivity;->onSupportContentChanged()V
|
||||
HSPLandroidx/appcompat/app/AppCompatActivity;->onTitleChanged(Ljava/lang/CharSequence;I)V
|
||||
HSPLandroidx/appcompat/app/AppCompatActivity;->setContentView(I)V
|
||||
HSPLandroidx/appcompat/app/AppCompatActivity;->setTheme(I)V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegate;-><clinit>()V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegate;-><init>()V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegate;->addActiveDelegate(Landroidx/appcompat/app/AppCompatDelegate;)V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegate;->attachBaseContext(Landroid/content/Context;)V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegate;->attachBaseContext2(Landroid/content/Context;)Landroid/content/Context;
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegate;->create(Landroid/app/Activity;Landroidx/appcompat/app/AppCompatCallback;)Landroidx/appcompat/app/AppCompatDelegate;
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegate;->getDefaultNightMode()I
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegate;->removeDelegateFromActives(Landroidx/appcompat/app/AppCompatDelegate;)V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$2;-><init>(Landroidx/appcompat/app/AppCompatDelegateImpl;)V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$2;->run()V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$3;-><init>(Landroidx/appcompat/app/AppCompatDelegateImpl;)V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$5;-><init>(Landroidx/appcompat/app/AppCompatDelegateImpl;)V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$5;->onAttachedFromWindow()V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$ActionMenuPresenterCallback;-><init>(Landroidx/appcompat/app/AppCompatDelegateImpl;)V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$Api17Impl;->createConfigurationContext(Landroid/content/Context;Landroid/content/res/Configuration;)Landroid/content/Context;
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;-><init>(Landroidx/appcompat/app/AppCompatDelegateImpl;Landroid/view/Window$Callback;)V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;->onContentChanged()V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;->onCreatePanelMenu(ILandroid/view/Menu;)Z
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;->onCreatePanelView(I)Landroid/view/View;
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;->onPreparePanel(ILandroid/view/View;Landroid/view/Menu;)Z
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$PanelFeatureState;-><init>(I)V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$PanelFeatureState;->setMenu(Landroidx/appcompat/view/menu/MenuBuilder;)V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;-><clinit>()V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;-><init>(Landroid/app/Activity;Landroidx/appcompat/app/AppCompatCallback;)V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;-><init>(Landroid/content/Context;Landroid/view/Window;Landroidx/appcompat/app/AppCompatCallback;Ljava/lang/Object;)V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->applyDayNight()Z
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->applyDayNight(Z)Z
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->applyFixedSizeWindow()V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->attachBaseContext2(Landroid/content/Context;)Landroid/content/Context;
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->attachToWindow(Landroid/view/Window;)V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->calculateNightMode()I
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->createOverrideConfigurationForDayNight(Landroid/content/Context;ILandroid/content/res/Configuration;)Landroid/content/res/Configuration;
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->createSubDecor()Landroid/view/ViewGroup;
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->createView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->doInvalidatePanelMenu(I)V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->ensureSubDecor()V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->ensureWindow()V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->getMenuInflater()Landroid/view/MenuInflater;
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->getPanelState(IZ)Landroidx/appcompat/app/AppCompatDelegateImpl$PanelFeatureState;
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->getSupportActionBar()Landroidx/appcompat/app/ActionBar;
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->getTitle()Ljava/lang/CharSequence;
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->getWindowCallback()Landroid/view/Window$Callback;
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->initWindowDecorActionBar()V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->initializePanelMenu(Landroidx/appcompat/app/AppCompatDelegateImpl$PanelFeatureState;)Z
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->installViewFactory()V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->invalidatePanelMenu(I)V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->isActivityManifestHandlingUiMode()Z
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->mapNightMode(Landroid/content/Context;I)I
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onCreate(Landroid/os/Bundle;)V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onCreateView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onPostCreate(Landroid/os/Bundle;)V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onPostResume()V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onStart()V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onSubDecorInstalled(Landroid/view/ViewGroup;)V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->peekSupportActionBar()Landroidx/appcompat/app/ActionBar;
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->preparePanel(Landroidx/appcompat/app/AppCompatDelegateImpl$PanelFeatureState;Landroid/view/KeyEvent;)Z
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->requestWindowFeature(I)Z
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->sanitizeWindowFeatureId(I)I
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->setContentView(I)V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->setTheme(I)V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->setTitle(Ljava/lang/CharSequence;)V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->throwFeatureRequestIfSubDecorInstalled()V
|
||||
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->updateForNightMode(IZ)Z
|
||||
HSPLandroidx/appcompat/app/AppCompatViewInflater;-><clinit>()V
|
||||
HSPLandroidx/appcompat/app/AppCompatViewInflater;-><init>()V
|
||||
HSPLandroidx/appcompat/app/AppCompatViewInflater;->backportAccessibilityAttributes(Landroid/content/Context;Landroid/view/View;Landroid/util/AttributeSet;)V
|
||||
HSPLandroidx/appcompat/app/AppCompatViewInflater;->checkOnClickListener(Landroid/view/View;Landroid/util/AttributeSet;)V
|
||||
HSPLandroidx/appcompat/app/AppCompatViewInflater;->createButton(Landroid/content/Context;Landroid/util/AttributeSet;)Landroidx/appcompat/widget/AppCompatButton;
|
||||
HSPLandroidx/appcompat/app/AppCompatViewInflater;->createEditText(Landroid/content/Context;Landroid/util/AttributeSet;)Landroidx/appcompat/widget/AppCompatEditText;
|
||||
HSPLandroidx/appcompat/app/AppCompatViewInflater;->createTextView(Landroid/content/Context;Landroid/util/AttributeSet;)Landroidx/appcompat/widget/AppCompatTextView;
|
||||
HSPLandroidx/appcompat/app/AppCompatViewInflater;->createView(Landroid/content/Context;Ljava/lang/String;Landroid/util/AttributeSet;)Landroid/view/View;
|
||||
HSPLandroidx/appcompat/app/AppCompatViewInflater;->createView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;ZZZZ)Landroid/view/View;
|
||||
HSPLandroidx/appcompat/app/AppCompatViewInflater;->themifyContext(Landroid/content/Context;Landroid/util/AttributeSet;ZZ)Landroid/content/Context;
|
||||
HSPLandroidx/appcompat/app/AppCompatViewInflater;->verifyNotNull(Landroid/view/View;Ljava/lang/String;)V
|
||||
HSPLandroidx/appcompat/app/WindowDecorActionBar$1;-><init>(Landroidx/appcompat/app/WindowDecorActionBar;)V
|
||||
HSPLandroidx/appcompat/app/WindowDecorActionBar$2;-><init>(Landroidx/appcompat/app/WindowDecorActionBar;)V
|
||||
HSPLandroidx/appcompat/app/WindowDecorActionBar$3;-><init>(Landroidx/appcompat/app/WindowDecorActionBar;)V
|
||||
HSPLandroidx/appcompat/app/WindowDecorActionBar;-><clinit>()V
|
||||
HSPLandroidx/appcompat/app/WindowDecorActionBar;-><init>(Landroid/app/Activity;Z)V
|
||||
HSPLandroidx/appcompat/app/WindowDecorActionBar;->getDecorToolbar(Landroid/view/View;)Landroidx/appcompat/widget/DecorToolbar;
|
||||
HSPLandroidx/appcompat/app/WindowDecorActionBar;->getNavigationMode()I
|
||||
HSPLandroidx/appcompat/app/WindowDecorActionBar;->getThemedContext()Landroid/content/Context;
|
||||
HSPLandroidx/appcompat/app/WindowDecorActionBar;->init(Landroid/view/View;)V
|
||||
HSPLandroidx/appcompat/app/WindowDecorActionBar;->onWindowVisibilityChanged(I)V
|
||||
HSPLandroidx/appcompat/app/WindowDecorActionBar;->setDefaultDisplayHomeAsUpEnabled(Z)V
|
||||
HSPLandroidx/appcompat/app/WindowDecorActionBar;->setDisplayHomeAsUpEnabled(Z)V
|
||||
HSPLandroidx/appcompat/app/WindowDecorActionBar;->setDisplayOptions(II)V
|
||||
HSPLandroidx/appcompat/app/WindowDecorActionBar;->setElevation(F)V
|
||||
HSPLandroidx/appcompat/app/WindowDecorActionBar;->setHasEmbeddedTabs(Z)V
|
||||
HSPLandroidx/appcompat/app/WindowDecorActionBar;->setHomeButtonEnabled(Z)V
|
||||
HSPLandroidx/appcompat/app/WindowDecorActionBar;->setShowHideAnimationEnabled(Z)V
|
||||
HSPLandroidx/appcompat/view/ActionBarPolicy;-><init>(Landroid/content/Context;)V
|
||||
HSPLandroidx/appcompat/view/ActionBarPolicy;->enableHomeButtonByDefault()Z
|
||||
HSPLandroidx/appcompat/view/ActionBarPolicy;->get(Landroid/content/Context;)Landroidx/appcompat/view/ActionBarPolicy;
|
||||
HSPLandroidx/appcompat/view/ActionBarPolicy;->getEmbeddedMenuWidthLimit()I
|
||||
HSPLandroidx/appcompat/view/ActionBarPolicy;->getMaxActionButtons()I
|
||||
HSPLandroidx/appcompat/view/ActionBarPolicy;->hasEmbeddedTabs()Z
|
||||
HSPLandroidx/appcompat/view/ActionBarPolicy;->showsOverflowMenuButton()Z
|
||||
HSPLandroidx/appcompat/view/ContextThemeWrapper;-><init>(Landroid/content/Context;I)V
|
||||
HSPLandroidx/appcompat/view/ContextThemeWrapper;->applyOverrideConfiguration(Landroid/content/res/Configuration;)V
|
||||
HSPLandroidx/appcompat/view/ContextThemeWrapper;->getResources()Landroid/content/res/Resources;
|
||||
HSPLandroidx/appcompat/view/ContextThemeWrapper;->getResourcesInternal()Landroid/content/res/Resources;
|
||||
HSPLandroidx/appcompat/view/ContextThemeWrapper;->getSystemService(Ljava/lang/String;)Ljava/lang/Object;
|
||||
HSPLandroidx/appcompat/view/ContextThemeWrapper;->getTheme()Landroid/content/res/Resources$Theme;
|
||||
HSPLandroidx/appcompat/view/ContextThemeWrapper;->initializeTheme()V
|
||||
HSPLandroidx/appcompat/view/ContextThemeWrapper;->onApplyThemeResource(Landroid/content/res/Resources$Theme;IZ)V
|
||||
HSPLandroidx/appcompat/view/SupportMenuInflater;-><clinit>()V
|
||||
HSPLandroidx/appcompat/view/SupportMenuInflater;-><init>(Landroid/content/Context;)V
|
||||
HSPLandroidx/appcompat/view/WindowCallbackWrapper;-><init>(Landroid/view/Window$Callback;)V
|
||||
HSPLandroidx/appcompat/view/WindowCallbackWrapper;->dispatchPopulateAccessibilityEvent(Landroid/view/accessibility/AccessibilityEvent;)Z
|
||||
HSPLandroidx/appcompat/view/WindowCallbackWrapper;->dispatchTouchEvent(Landroid/view/MotionEvent;)Z
|
||||
HSPLandroidx/appcompat/view/WindowCallbackWrapper;->getWrapped()Landroid/view/Window$Callback;
|
||||
HSPLandroidx/appcompat/view/WindowCallbackWrapper;->onAttachedToWindow()V
|
||||
HSPLandroidx/appcompat/view/WindowCallbackWrapper;->onCreatePanelMenu(ILandroid/view/Menu;)Z
|
||||
HSPLandroidx/appcompat/view/WindowCallbackWrapper;->onCreatePanelView(I)Landroid/view/View;
|
||||
HSPLandroidx/appcompat/view/WindowCallbackWrapper;->onPreparePanel(ILandroid/view/View;Landroid/view/Menu;)Z
|
||||
HSPLandroidx/appcompat/view/WindowCallbackWrapper;->onWindowAttributesChanged(Landroid/view/WindowManager$LayoutParams;)V
|
||||
HSPLandroidx/appcompat/view/WindowCallbackWrapper;->onWindowFocusChanged(Z)V
|
||||
HSPLandroidx/appcompat/view/menu/ActionMenuItem;-><init>(Landroid/content/Context;IIIILjava/lang/CharSequence;)V
|
||||
HSPLandroidx/appcompat/view/menu/BaseMenuPresenter;-><init>(Landroid/content/Context;II)V
|
||||
HSPLandroidx/appcompat/view/menu/BaseMenuPresenter;->initForMenu(Landroid/content/Context;Landroidx/appcompat/view/menu/MenuBuilder;)V
|
||||
HSPLandroidx/appcompat/view/menu/BaseMenuPresenter;->setCallback(Landroidx/appcompat/view/menu/MenuPresenter$Callback;)V
|
||||
HSPLandroidx/appcompat/view/menu/BaseMenuPresenter;->setId(I)V
|
||||
HSPLandroidx/appcompat/view/menu/BaseMenuPresenter;->updateMenuView(Z)V
|
||||
HSPLandroidx/appcompat/view/menu/MenuBuilder;-><clinit>()V
|
||||
HSPLandroidx/appcompat/view/menu/MenuBuilder;-><init>(Landroid/content/Context;)V
|
||||
HSPLandroidx/appcompat/view/menu/MenuBuilder;->addMenuPresenter(Landroidx/appcompat/view/menu/MenuPresenter;Landroid/content/Context;)V
|
||||
HSPLandroidx/appcompat/view/menu/MenuBuilder;->dispatchPresenterUpdate(Z)V
|
||||
HSPLandroidx/appcompat/view/menu/MenuBuilder;->flagActionItems()V
|
||||
HSPLandroidx/appcompat/view/menu/MenuBuilder;->getActionItems()Ljava/util/ArrayList;
|
||||
HSPLandroidx/appcompat/view/menu/MenuBuilder;->getNonActionItems()Ljava/util/ArrayList;
|
||||
HSPLandroidx/appcompat/view/menu/MenuBuilder;->getVisibleItems()Ljava/util/ArrayList;
|
||||
HSPLandroidx/appcompat/view/menu/MenuBuilder;->hasVisibleItems()Z
|
||||
HSPLandroidx/appcompat/view/menu/MenuBuilder;->onItemsChanged(Z)V
|
||||
HSPLandroidx/appcompat/view/menu/MenuBuilder;->setCallback(Landroidx/appcompat/view/menu/MenuBuilder$Callback;)V
|
||||
HSPLandroidx/appcompat/view/menu/MenuBuilder;->setOverrideVisibleItems(Z)V
|
||||
HSPLandroidx/appcompat/view/menu/MenuBuilder;->setQwertyMode(Z)V
|
||||
HSPLandroidx/appcompat/view/menu/MenuBuilder;->setShortcutsVisibleInner(Z)V
|
||||
HSPLandroidx/appcompat/view/menu/MenuBuilder;->size()I
|
||||
HSPLandroidx/appcompat/view/menu/MenuBuilder;->startDispatchingItemsChanged()V
|
||||
HSPLandroidx/appcompat/view/menu/MenuBuilder;->stopDispatchingItemsChanged()V
|
||||
HSPLandroidx/appcompat/widget/AbsActionBarView$VisibilityAnimListener;-><init>(Landroidx/appcompat/widget/AbsActionBarView;)V
|
||||
HSPLandroidx/appcompat/widget/AbsActionBarView;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V
|
||||
HSPLandroidx/appcompat/widget/ActionBarBackgroundDrawable;-><init>(Landroidx/appcompat/widget/ActionBarContainer;)V
|
||||
HSPLandroidx/appcompat/widget/ActionBarBackgroundDrawable;->draw(Landroid/graphics/Canvas;)V
|
||||
HSPLandroidx/appcompat/widget/ActionBarBackgroundDrawable;->getOpacity()I
|
||||
HSPLandroidx/appcompat/widget/ActionBarBackgroundDrawable;->getOutline(Landroid/graphics/Outline;)V
|
||||
HSPLandroidx/appcompat/widget/ActionBarContainer;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V
|
||||
HSPLandroidx/appcompat/widget/ActionBarContainer;->drawableStateChanged()V
|
||||
HSPLandroidx/appcompat/widget/ActionBarContainer;->jumpDrawablesToCurrentState()V
|
||||
HSPLandroidx/appcompat/widget/ActionBarContainer;->onFinishInflate()V
|
||||
HSPLandroidx/appcompat/widget/ActionBarContainer;->onLayout(ZIIII)V
|
||||
HSPLandroidx/appcompat/widget/ActionBarContainer;->onMeasure(II)V
|
||||
HSPLandroidx/appcompat/widget/ActionBarContainer;->setTabContainer(Landroidx/appcompat/widget/ScrollingTabContainerView;)V
|
||||
HSPLandroidx/appcompat/widget/ActionBarContextView;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V
|
||||
HSPLandroidx/appcompat/widget/ActionBarContextView;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V
|
||||
HSPLandroidx/appcompat/widget/ActionBarOverlayLayout$1;-><init>(Landroidx/appcompat/widget/ActionBarOverlayLayout;)V
|
||||
HSPLandroidx/appcompat/widget/ActionBarOverlayLayout$2;-><init>(Landroidx/appcompat/widget/ActionBarOverlayLayout;)V
|
||||
HSPLandroidx/appcompat/widget/ActionBarOverlayLayout$3;-><init>(Landroidx/appcompat/widget/ActionBarOverlayLayout;)V
|
||||
HSPLandroidx/appcompat/widget/ActionBarOverlayLayout$LayoutParams;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V
|
||||
HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;-><clinit>()V
|
||||
HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V
|
||||
HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->applyInsets(Landroid/view/View;Landroid/graphics/Rect;ZZZZ)Z
|
||||
HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->checkLayoutParams(Landroid/view/ViewGroup$LayoutParams;)Z
|
||||
HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->generateLayoutParams(Landroid/util/AttributeSet;)Landroid/view/ViewGroup$LayoutParams;
|
||||
HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->generateLayoutParams(Landroid/util/AttributeSet;)Landroidx/appcompat/widget/ActionBarOverlayLayout$LayoutParams;
|
||||
HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->getDecorToolbar(Landroid/view/View;)Landroidx/appcompat/widget/DecorToolbar;
|
||||
HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->init(Landroid/content/Context;)V
|
||||
HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->onLayout(ZIIII)V
|
||||
HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->onMeasure(II)V
|
||||
HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->onStartNestedScroll(Landroid/view/View;Landroid/view/View;I)Z
|
||||
HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->onStartNestedScroll(Landroid/view/View;Landroid/view/View;II)Z
|
||||
HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->onWindowVisibilityChanged(I)V
|
||||
HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->pullChildren()V
|
||||
HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->setActionBarVisibilityCallback(Landroidx/appcompat/widget/ActionBarOverlayLayout$ActionBarVisibilityCallback;)V
|
||||
HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->setHasNonEmbeddedTabs(Z)V
|
||||
HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->setMenu(Landroid/view/Menu;Landroidx/appcompat/view/menu/MenuPresenter$Callback;)V
|
||||
HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->setMenuPrepared()V
|
||||
HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->setWindowCallback(Landroid/view/Window$Callback;)V
|
||||
HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->setWindowTitle(Ljava/lang/CharSequence;)V
|
||||
HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->shouldDelayChildPressedState()Z
|
||||
HSPLandroidx/appcompat/widget/ActionMenuPresenter$OverflowMenuButton$1;-><init>(Landroidx/appcompat/widget/ActionMenuPresenter$OverflowMenuButton;Landroid/view/View;Landroidx/appcompat/widget/ActionMenuPresenter;)V
|
||||
HSPLandroidx/appcompat/widget/ActionMenuPresenter$OverflowMenuButton;-><init>(Landroidx/appcompat/widget/ActionMenuPresenter;Landroid/content/Context;)V
|
||||
HSPLandroidx/appcompat/widget/ActionMenuPresenter$PopupPresenterCallback;-><init>(Landroidx/appcompat/widget/ActionMenuPresenter;)V
|
||||
HSPLandroidx/appcompat/widget/ActionMenuPresenter;-><init>(Landroid/content/Context;)V
|
||||
HSPLandroidx/appcompat/widget/ActionMenuPresenter;->flagActionItems()Z
|
||||
HSPLandroidx/appcompat/widget/ActionMenuPresenter;->initForMenu(Landroid/content/Context;Landroidx/appcompat/view/menu/MenuBuilder;)V
|
||||
HSPLandroidx/appcompat/widget/ActionMenuPresenter;->setExpandedActionViewsExclusive(Z)V
|
||||
HSPLandroidx/appcompat/widget/ActionMenuPresenter;->setMenuView(Landroidx/appcompat/widget/ActionMenuView;)V
|
||||
HSPLandroidx/appcompat/widget/ActionMenuPresenter;->updateMenuView(Z)V
|
||||
HSPLandroidx/appcompat/widget/ActionMenuView;-><init>(Landroid/content/Context;)V
|
||||
HSPLandroidx/appcompat/widget/ActionMenuView;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V
|
||||
HSPLandroidx/appcompat/widget/ActionMenuView;->initialize(Landroidx/appcompat/view/menu/MenuBuilder;)V
|
||||
HSPLandroidx/appcompat/widget/ActionMenuView;->onLayout(ZIIII)V
|
||||
HSPLandroidx/appcompat/widget/ActionMenuView;->onMeasure(II)V
|
||||
HSPLandroidx/appcompat/widget/ActionMenuView;->peekMenu()Landroidx/appcompat/view/menu/MenuBuilder;
|
||||
HSPLandroidx/appcompat/widget/ActionMenuView;->setMenuCallbacks(Landroidx/appcompat/view/menu/MenuPresenter$Callback;Landroidx/appcompat/view/menu/MenuBuilder$Callback;)V
|
||||
HSPLandroidx/appcompat/widget/ActionMenuView;->setOnMenuItemClickListener(Landroidx/appcompat/widget/ActionMenuView$OnMenuItemClickListener;)V
|
||||
HSPLandroidx/appcompat/widget/ActionMenuView;->setOverflowReserved(Z)V
|
||||
HSPLandroidx/appcompat/widget/ActionMenuView;->setPopupTheme(I)V
|
||||
HSPLandroidx/appcompat/widget/ActionMenuView;->setPresenter(Landroidx/appcompat/widget/ActionMenuPresenter;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatBackgroundHelper;-><init>(Landroid/view/View;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatBackgroundHelper;->applySupportBackgroundTint()V
|
||||
HSPLandroidx/appcompat/widget/AppCompatBackgroundHelper;->loadFromAttributes(Landroid/util/AttributeSet;I)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatBackgroundHelper;->shouldApplyFrameworkTintUsingColorFilter()Z
|
||||
HSPLandroidx/appcompat/widget/AppCompatButton;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatButton;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatButton;->drawableStateChanged()V
|
||||
HSPLandroidx/appcompat/widget/AppCompatButton;->getEmojiTextViewHelper()Landroidx/appcompat/widget/AppCompatEmojiTextHelper;
|
||||
HSPLandroidx/appcompat/widget/AppCompatButton;->onInitializeAccessibilityEvent(Landroid/view/accessibility/AccessibilityEvent;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatButton;->onInitializeAccessibilityNodeInfo(Landroid/view/accessibility/AccessibilityNodeInfo;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatButton;->onLayout(ZIIII)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatButton;->onTextChanged(Ljava/lang/CharSequence;III)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatButton;->setBackgroundDrawable(Landroid/graphics/drawable/Drawable;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatButton;->setFilters([Landroid/text/InputFilter;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatDrawableManager$1;-><init>()V
|
||||
HSPLandroidx/appcompat/widget/AppCompatDrawableManager$1;->arrayContains([II)Z
|
||||
HSPLandroidx/appcompat/widget/AppCompatDrawableManager$1;->createDrawableFor(Landroidx/appcompat/widget/ResourceManagerInternal;Landroid/content/Context;I)Landroid/graphics/drawable/Drawable;
|
||||
HSPLandroidx/appcompat/widget/AppCompatDrawableManager$1;->getTintListForDrawableRes(Landroid/content/Context;I)Landroid/content/res/ColorStateList;
|
||||
HSPLandroidx/appcompat/widget/AppCompatDrawableManager$1;->tintDrawable(Landroid/content/Context;ILandroid/graphics/drawable/Drawable;)Z
|
||||
HSPLandroidx/appcompat/widget/AppCompatDrawableManager$1;->tintDrawableUsingColorFilter(Landroid/content/Context;ILandroid/graphics/drawable/Drawable;)Z
|
||||
HSPLandroidx/appcompat/widget/AppCompatDrawableManager;-><clinit>()V
|
||||
HSPLandroidx/appcompat/widget/AppCompatDrawableManager;-><init>()V
|
||||
HSPLandroidx/appcompat/widget/AppCompatDrawableManager;->access$000()Landroid/graphics/PorterDuff$Mode;
|
||||
HSPLandroidx/appcompat/widget/AppCompatDrawableManager;->get()Landroidx/appcompat/widget/AppCompatDrawableManager;
|
||||
HSPLandroidx/appcompat/widget/AppCompatDrawableManager;->getDrawable(Landroid/content/Context;IZ)Landroid/graphics/drawable/Drawable;
|
||||
HSPLandroidx/appcompat/widget/AppCompatDrawableManager;->getTintList(Landroid/content/Context;I)Landroid/content/res/ColorStateList;
|
||||
HSPLandroidx/appcompat/widget/AppCompatDrawableManager;->preload()V
|
||||
HSPLandroidx/appcompat/widget/AppCompatEditText;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatEditText;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatEditText;->drawableStateChanged()V
|
||||
HSPLandroidx/appcompat/widget/AppCompatEditText;->getText()Landroid/text/Editable;
|
||||
HSPLandroidx/appcompat/widget/AppCompatEditText;->getText()Ljava/lang/CharSequence;
|
||||
HSPLandroidx/appcompat/widget/AppCompatEditText;->setBackgroundDrawable(Landroid/graphics/drawable/Drawable;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatEditText;->setKeyListener(Landroid/text/method/KeyListener;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatEmojiEditTextHelper;-><init>(Landroid/widget/EditText;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatEmojiEditTextHelper;->getKeyListener(Landroid/text/method/KeyListener;)Landroid/text/method/KeyListener;
|
||||
HSPLandroidx/appcompat/widget/AppCompatEmojiEditTextHelper;->initKeyListener()V
|
||||
HSPLandroidx/appcompat/widget/AppCompatEmojiEditTextHelper;->loadFromAttributes(Landroid/util/AttributeSet;I)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatEmojiEditTextHelper;->setEnabled(Z)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatEmojiTextHelper;-><init>(Landroid/widget/TextView;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatEmojiTextHelper;->getFilters([Landroid/text/InputFilter;)[Landroid/text/InputFilter;
|
||||
HSPLandroidx/appcompat/widget/AppCompatEmojiTextHelper;->loadFromAttributes(Landroid/util/AttributeSet;I)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatEmojiTextHelper;->setEnabled(Z)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatImageButton;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatImageButton;->setBackgroundDrawable(Landroid/graphics/drawable/Drawable;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatImageButton;->setImageDrawable(Landroid/graphics/drawable/Drawable;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatImageHelper;-><init>(Landroid/widget/ImageView;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatImageHelper;->applyImageLevel()V
|
||||
HSPLandroidx/appcompat/widget/AppCompatImageHelper;->applySupportImageTint()V
|
||||
HSPLandroidx/appcompat/widget/AppCompatImageHelper;->loadFromAttributes(Landroid/util/AttributeSet;I)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatImageView;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatImageView;->setBackgroundDrawable(Landroid/graphics/drawable/Drawable;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatImageView;->setImageDrawable(Landroid/graphics/drawable/Drawable;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextClassifierHelper;-><init>(Landroid/widget/TextView;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextHelper$1;-><init>(Landroidx/appcompat/widget/AppCompatTextHelper;IILjava/lang/ref/WeakReference;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextHelper$1;->onFontRetrievalFailed(I)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextHelper;-><init>(Landroid/widget/TextView;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextHelper;->applyCompoundDrawablesTints()V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextHelper;->createTintInfo(Landroid/content/Context;Landroidx/appcompat/widget/AppCompatDrawableManager;I)Landroidx/appcompat/widget/TintInfo;
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextHelper;->loadFromAttributes(Landroid/util/AttributeSet;I)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextHelper;->onLayout(ZIIII)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextHelper;->onSetTextAppearance(Landroid/content/Context;I)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextHelper;->setCompoundDrawables(Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextHelper;->updateTypefaceAndStyle(Landroid/content/Context;Landroidx/appcompat/widget/TintTypedArray;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextView;-><init>(Landroid/content/Context;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextView;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextView;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextView;->consumeTextFutureAndSetBlocking()V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextView;->drawableStateChanged()V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextView;->getEmojiTextViewHelper()Landroidx/appcompat/widget/AppCompatEmojiTextHelper;
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextView;->getText()Ljava/lang/CharSequence;
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextView;->onLayout(ZIIII)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextView;->onMeasure(II)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextView;->onTextChanged(Ljava/lang/CharSequence;III)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextView;->setCompoundDrawables(Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextView;->setCompoundDrawablesWithIntrinsicBounds(Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextView;->setFilters([Landroid/text/InputFilter;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextView;->setTextAppearance(Landroid/content/Context;I)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextView;->setTypeface(Landroid/graphics/Typeface;I)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper$Impl23;-><init>()V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper$Impl29;-><init>()V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper$Impl;-><init>()V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper;-><clinit>()V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper;-><init>(Landroid/widget/TextView;)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper;->getAutoSizeTextType()I
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper;->loadFromAttributes(Landroid/util/AttributeSet;I)V
|
||||
HSPLandroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper;->supportsAutoSizeText()Z
|
||||
HSPLandroidx/appcompat/widget/ContentFrameLayout;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V
|
||||
HSPLandroidx/appcompat/widget/ContentFrameLayout;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V
|
||||
HSPLandroidx/appcompat/widget/ContentFrameLayout;->getMinWidthMajor()Landroid/util/TypedValue;
|
||||
HSPLandroidx/appcompat/widget/ContentFrameLayout;->getMinWidthMinor()Landroid/util/TypedValue;
|
||||
HSPLandroidx/appcompat/widget/ContentFrameLayout;->onAttachedToWindow()V
|
||||
HSPLandroidx/appcompat/widget/ContentFrameLayout;->onMeasure(II)V
|
||||
HSPLandroidx/appcompat/widget/ContentFrameLayout;->setAttachListener(Landroidx/appcompat/widget/ContentFrameLayout$OnAttachListener;)V
|
||||
HSPLandroidx/appcompat/widget/ContentFrameLayout;->setDecorPadding(IIII)V
|
||||
HSPLandroidx/appcompat/widget/ForwardingListener;-><init>(Landroid/view/View;)V
|
||||
HSPLandroidx/appcompat/widget/LinearLayoutCompat;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V
|
||||
HSPLandroidx/appcompat/widget/LinearLayoutCompat;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V
|
||||
HSPLandroidx/appcompat/widget/LinearLayoutCompat;->getVirtualChildCount()I
|
||||
HSPLandroidx/appcompat/widget/LinearLayoutCompat;->layoutHorizontal(IIII)V
|
||||
HSPLandroidx/appcompat/widget/LinearLayoutCompat;->measureHorizontal(II)V
|
||||
HSPLandroidx/appcompat/widget/LinearLayoutCompat;->onInitializeAccessibilityNodeInfo(Landroid/view/accessibility/AccessibilityNodeInfo;)V
|
||||
HSPLandroidx/appcompat/widget/LinearLayoutCompat;->onLayout(ZIIII)V
|
||||
HSPLandroidx/appcompat/widget/LinearLayoutCompat;->onMeasure(II)V
|
||||
HSPLandroidx/appcompat/widget/LinearLayoutCompat;->setBaselineAligned(Z)V
|
||||
HSPLandroidx/appcompat/widget/LinearLayoutCompat;->setDividerDrawable(Landroid/graphics/drawable/Drawable;)V
|
||||
HSPLandroidx/appcompat/widget/RtlSpacingHelper;-><init>()V
|
||||
HSPLandroidx/appcompat/widget/RtlSpacingHelper;->getEnd()I
|
||||
HSPLandroidx/appcompat/widget/RtlSpacingHelper;->getStart()I
|
||||
HSPLandroidx/appcompat/widget/RtlSpacingHelper;->setAbsolute(II)V
|
||||
HSPLandroidx/appcompat/widget/RtlSpacingHelper;->setDirection(Z)V
|
||||
HSPLandroidx/appcompat/widget/RtlSpacingHelper;->setRelative(II)V
|
||||
HSPLandroidx/appcompat/widget/ThemeUtils;-><clinit>()V
|
||||
HSPLandroidx/appcompat/widget/ThemeUtils;->checkAppCompatTheme(Landroid/view/View;Landroid/content/Context;)V
|
||||
HSPLandroidx/appcompat/widget/TintContextWrapper;-><clinit>()V
|
||||
HSPLandroidx/appcompat/widget/TintContextWrapper;->shouldWrap(Landroid/content/Context;)Z
|
||||
HSPLandroidx/appcompat/widget/TintContextWrapper;->wrap(Landroid/content/Context;)Landroid/content/Context;
|
||||
HSPLandroidx/appcompat/widget/TintTypedArray;-><init>(Landroid/content/Context;Landroid/content/res/TypedArray;)V
|
||||
HSPLandroidx/appcompat/widget/TintTypedArray;->getBoolean(IZ)Z
|
||||
HSPLandroidx/appcompat/widget/TintTypedArray;->getColor(II)I
|
||||
HSPLandroidx/appcompat/widget/TintTypedArray;->getColorStateList(I)Landroid/content/res/ColorStateList;
|
||||
HSPLandroidx/appcompat/widget/TintTypedArray;->getDimension(IF)F
|
||||
HSPLandroidx/appcompat/widget/TintTypedArray;->getDimensionPixelOffset(II)I
|
||||
HSPLandroidx/appcompat/widget/TintTypedArray;->getDimensionPixelSize(II)I
|
||||
HSPLandroidx/appcompat/widget/TintTypedArray;->getDrawable(I)Landroid/graphics/drawable/Drawable;
|
||||
HSPLandroidx/appcompat/widget/TintTypedArray;->getDrawableIfKnown(I)Landroid/graphics/drawable/Drawable;
|
||||
HSPLandroidx/appcompat/widget/TintTypedArray;->getFloat(IF)F
|
||||
HSPLandroidx/appcompat/widget/TintTypedArray;->getFont(IILandroidx/core/content/res/ResourcesCompat$FontCallback;)Landroid/graphics/Typeface;
|
||||
HSPLandroidx/appcompat/widget/TintTypedArray;->getInt(II)I
|
||||
HSPLandroidx/appcompat/widget/TintTypedArray;->getInteger(II)I
|
||||
HSPLandroidx/appcompat/widget/TintTypedArray;->getLayoutDimension(II)I
|
||||
HSPLandroidx/appcompat/widget/TintTypedArray;->getResourceId(II)I
|
||||
HSPLandroidx/appcompat/widget/TintTypedArray;->getString(I)Ljava/lang/String;
|
||||
HSPLandroidx/appcompat/widget/TintTypedArray;->getText(I)Ljava/lang/CharSequence;
|
||||
HSPLandroidx/appcompat/widget/TintTypedArray;->getWrappedTypeArray()Landroid/content/res/TypedArray;
|
||||
HSPLandroidx/appcompat/widget/TintTypedArray;->hasValue(I)Z
|
||||
HSPLandroidx/appcompat/widget/TintTypedArray;->obtainStyledAttributes(Landroid/content/Context;I[I)Landroidx/appcompat/widget/TintTypedArray;
|
||||
HSPLandroidx/appcompat/widget/TintTypedArray;->obtainStyledAttributes(Landroid/content/Context;Landroid/util/AttributeSet;[I)Landroidx/appcompat/widget/TintTypedArray;
|
||||
HSPLandroidx/appcompat/widget/TintTypedArray;->obtainStyledAttributes(Landroid/content/Context;Landroid/util/AttributeSet;[III)Landroidx/appcompat/widget/TintTypedArray;
|
||||
HSPLandroidx/appcompat/widget/TintTypedArray;->recycle()V
|
||||
HSPLandroidx/appcompat/widget/Toolbar$$ExternalSyntheticLambda0;-><init>(Landroidx/appcompat/widget/Toolbar;)V
|
||||
HSPLandroidx/appcompat/widget/Toolbar$1;-><init>(Landroidx/appcompat/widget/Toolbar;)V
|
||||
HSPLandroidx/appcompat/widget/Toolbar$2;-><init>(Landroidx/appcompat/widget/Toolbar;)V
|
||||
HSPLandroidx/appcompat/widget/Toolbar$ExpandedActionViewMenuPresenter;-><init>(Landroidx/appcompat/widget/Toolbar;)V
|
||||
HSPLandroidx/appcompat/widget/Toolbar$ExpandedActionViewMenuPresenter;->flagActionItems()Z
|
||||
HSPLandroidx/appcompat/widget/Toolbar$ExpandedActionViewMenuPresenter;->initForMenu(Landroid/content/Context;Landroidx/appcompat/view/menu/MenuBuilder;)V
|
||||
HSPLandroidx/appcompat/widget/Toolbar$ExpandedActionViewMenuPresenter;->updateMenuView(Z)V
|
||||
HSPLandroidx/appcompat/widget/Toolbar$LayoutParams;-><init>(II)V
|
||||
HSPLandroidx/appcompat/widget/Toolbar;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V
|
||||
HSPLandroidx/appcompat/widget/Toolbar;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->addCustomViewsWithGravity(Ljava/util/List;I)V
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->addSystemView(Landroid/view/View;Z)V
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->checkLayoutParams(Landroid/view/ViewGroup$LayoutParams;)Z
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->ensureContentInsets()V
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->ensureMenuView()V
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->ensureNavButtonView()V
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->generateDefaultLayoutParams()Landroidx/appcompat/widget/Toolbar$LayoutParams;
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->getChildTop(Landroid/view/View;I)I
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->getChildVerticalGravity(I)I
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->getContentInsetEnd()I
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->getContentInsetStart()I
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->getCurrentContentInsetEnd()I
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->getCurrentContentInsetLeft()I
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->getCurrentContentInsetRight()I
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->getCurrentContentInsetStart()I
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->getHorizontalMargins(Landroid/view/View;)I
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->getNavigationContentDescription()Ljava/lang/CharSequence;
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->getNavigationIcon()Landroid/graphics/drawable/Drawable;
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->getSubtitle()Ljava/lang/CharSequence;
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->getTitle()Ljava/lang/CharSequence;
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->getVerticalMargins(Landroid/view/View;)I
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->getViewListMeasuredWidth(Ljava/util/List;[I)I
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->getWrapper()Landroidx/appcompat/widget/DecorToolbar;
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->isChildOrHidden(Landroid/view/View;)Z
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->layoutChildRight(Landroid/view/View;I[II)I
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->measureChildCollapseMargins(Landroid/view/View;IIII[I)I
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->measureChildConstrained(Landroid/view/View;IIIII)V
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->onLayout(ZIIII)V
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->onMeasure(II)V
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->onRtlPropertiesChanged(I)V
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->setCollapsible(Z)V
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->setContentInsetsRelative(II)V
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->setMenu(Landroidx/appcompat/view/menu/MenuBuilder;Landroidx/appcompat/widget/ActionMenuPresenter;)V
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->setNavigationContentDescription(Ljava/lang/CharSequence;)V
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->setNavigationIcon(Landroid/graphics/drawable/Drawable;)V
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->setNavigationOnClickListener(Landroid/view/View$OnClickListener;)V
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->setPopupTheme(I)V
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->setSubtitle(Ljava/lang/CharSequence;)V
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->setSubtitleTextAppearance(Landroid/content/Context;I)V
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->setTitle(Ljava/lang/CharSequence;)V
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->setTitleTextAppearance(Landroid/content/Context;I)V
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->shouldCollapse()Z
|
||||
HSPLandroidx/appcompat/widget/Toolbar;->shouldLayout(Landroid/view/View;)Z
|
||||
HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper$1;-><init>(Landroidx/appcompat/widget/ToolbarWidgetWrapper;)V
|
||||
HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;-><init>(Landroidx/appcompat/widget/Toolbar;Z)V
|
||||
HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;-><init>(Landroidx/appcompat/widget/Toolbar;ZII)V
|
||||
HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->getContext()Landroid/content/Context;
|
||||
HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->getDisplayOptions()I
|
||||
HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->getNavigationMode()I
|
||||
HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->setCollapsible(Z)V
|
||||
HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->setDefaultNavigationContentDescription(I)V
|
||||
HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->setDisplayOptions(I)V
|
||||
HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->setEmbeddedTabView(Landroidx/appcompat/widget/ScrollingTabContainerView;)V
|
||||
HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->setHomeButtonEnabled(Z)V
|
||||
HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->setMenu(Landroid/view/Menu;Landroidx/appcompat/view/menu/MenuPresenter$Callback;)V
|
||||
HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->setMenuPrepared()V
|
||||
HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->setNavigationIcon(Landroid/graphics/drawable/Drawable;)V
|
||||
HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->setTitleInt(Ljava/lang/CharSequence;)V
|
||||
HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->setWindowCallback(Landroid/view/Window$Callback;)V
|
||||
HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->setWindowTitle(Ljava/lang/CharSequence;)V
|
||||
HSPLandroidx/appcompat/widget/ToolbarWidgetWrapper;->updateNavigationIcon()V
|
||||
HSPLandroidx/appcompat/widget/TooltipCompat;->setTooltipText(Landroid/view/View;Ljava/lang/CharSequence;)V
|
||||
HSPLandroidx/appcompat/widget/VectorEnabledTintResources;-><clinit>()V
|
||||
HSPLandroidx/appcompat/widget/VectorEnabledTintResources;->isCompatVectorFromResourcesEnabled()Z
|
||||
HSPLandroidx/appcompat/widget/VectorEnabledTintResources;->shouldBeUsed()Z
|
||||
HSPLandroidx/appcompat/widget/ViewUtils;-><clinit>()V
|
||||
HSPLandroidx/appcompat/widget/ViewUtils;->isLayoutRtl(Landroid/view/View;)Z
|
||||
HSPLandroidx/appcompat/widget/ViewUtils;->makeOptionalFitsSystemWindows(Landroid/view/View;)V
|
||||
Landroidx/appcompat/R$attr;
|
||||
Landroidx/appcompat/R$bool;
|
||||
Landroidx/appcompat/R$drawable;
|
||||
Landroidx/appcompat/R$id;
|
||||
Landroidx/appcompat/R$layout;
|
||||
Landroidx/appcompat/R$string;
|
||||
Landroidx/appcompat/R$style;
|
||||
Landroidx/appcompat/R$styleable;
|
||||
Landroidx/appcompat/app/ActionBar$LayoutParams;
|
||||
Landroidx/appcompat/app/ActionBar;
|
||||
Landroidx/appcompat/app/ActionBarDrawerToggle$DelegateProvider;
|
||||
Landroidx/appcompat/app/AppCompatActivity$1;
|
||||
Landroidx/appcompat/app/AppCompatActivity$2;
|
||||
Landroidx/appcompat/app/AppCompatActivity;
|
||||
Landroidx/appcompat/app/AppCompatCallback;
|
||||
Landroidx/appcompat/app/AppCompatDelegate;
|
||||
Landroidx/appcompat/app/AppCompatDelegateImpl$2;
|
||||
Landroidx/appcompat/app/AppCompatDelegateImpl$3;
|
||||
Landroidx/appcompat/app/AppCompatDelegateImpl$5;
|
||||
Landroidx/appcompat/app/AppCompatDelegateImpl$ActionMenuPresenterCallback;
|
||||
Landroidx/appcompat/app/AppCompatDelegateImpl$Api17Impl;
|
||||
Landroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;
|
||||
Landroidx/appcompat/app/AppCompatDelegateImpl$PanelFeatureState;
|
||||
Landroidx/appcompat/app/AppCompatDelegateImpl;
|
||||
Landroidx/appcompat/app/AppCompatViewInflater;
|
||||
Landroidx/appcompat/app/ToolbarActionBar;
|
||||
Landroidx/appcompat/app/WindowDecorActionBar$1;
|
||||
Landroidx/appcompat/app/WindowDecorActionBar$2;
|
||||
Landroidx/appcompat/app/WindowDecorActionBar$3;
|
||||
Landroidx/appcompat/app/WindowDecorActionBar;
|
||||
Landroidx/appcompat/content/res/AppCompatResources;
|
||||
Landroidx/appcompat/graphics/drawable/DrawableWrapper;
|
||||
Landroidx/appcompat/resources/R$drawable;
|
||||
Landroidx/appcompat/view/ActionBarPolicy;
|
||||
Landroidx/appcompat/view/ContextThemeWrapper;
|
||||
Landroidx/appcompat/view/SupportMenuInflater;
|
||||
Landroidx/appcompat/view/WindowCallbackWrapper;
|
||||
Landroidx/appcompat/view/menu/ActionMenuItem;
|
||||
Landroidx/appcompat/view/menu/BaseMenuPresenter;
|
||||
Landroidx/appcompat/view/menu/MenuBuilder$Callback;
|
||||
Landroidx/appcompat/view/menu/MenuBuilder$ItemInvoker;
|
||||
Landroidx/appcompat/view/menu/MenuBuilder;
|
||||
Landroidx/appcompat/view/menu/MenuPresenter$Callback;
|
||||
Landroidx/appcompat/view/menu/MenuPresenter;
|
||||
Landroidx/appcompat/view/menu/MenuView;
|
||||
Landroidx/appcompat/widget/AbsActionBarView$VisibilityAnimListener;
|
||||
Landroidx/appcompat/widget/AbsActionBarView;
|
||||
Landroidx/appcompat/widget/ActionBarBackgroundDrawable;
|
||||
Landroidx/appcompat/widget/ActionBarContainer;
|
||||
Landroidx/appcompat/widget/ActionBarContextView;
|
||||
Landroidx/appcompat/widget/ActionBarOverlayLayout$1;
|
||||
Landroidx/appcompat/widget/ActionBarOverlayLayout$2;
|
||||
Landroidx/appcompat/widget/ActionBarOverlayLayout$3;
|
||||
Landroidx/appcompat/widget/ActionBarOverlayLayout$ActionBarVisibilityCallback;
|
||||
Landroidx/appcompat/widget/ActionBarOverlayLayout$LayoutParams;
|
||||
Landroidx/appcompat/widget/ActionBarOverlayLayout;
|
||||
Landroidx/appcompat/widget/ActionMenuPresenter$OverflowMenuButton$1;
|
||||
Landroidx/appcompat/widget/ActionMenuPresenter$OverflowMenuButton;
|
||||
Landroidx/appcompat/widget/ActionMenuPresenter$PopupPresenterCallback;
|
||||
Landroidx/appcompat/widget/ActionMenuPresenter;
|
||||
Landroidx/appcompat/widget/ActionMenuView$ActionMenuChildView;
|
||||
Landroidx/appcompat/widget/ActionMenuView$OnMenuItemClickListener;
|
||||
Landroidx/appcompat/widget/ActionMenuView;
|
||||
Landroidx/appcompat/widget/AppCompatBackgroundHelper;
|
||||
Landroidx/appcompat/widget/AppCompatButton;
|
||||
Landroidx/appcompat/widget/AppCompatDrawableManager$1;
|
||||
Landroidx/appcompat/widget/AppCompatDrawableManager;
|
||||
Landroidx/appcompat/widget/AppCompatEditText;
|
||||
Landroidx/appcompat/widget/AppCompatEmojiEditTextHelper;
|
||||
Landroidx/appcompat/widget/AppCompatEmojiTextHelper;
|
||||
Landroidx/appcompat/widget/AppCompatImageButton;
|
||||
Landroidx/appcompat/widget/AppCompatImageHelper;
|
||||
Landroidx/appcompat/widget/AppCompatImageView;
|
||||
Landroidx/appcompat/widget/AppCompatTextClassifierHelper;
|
||||
Landroidx/appcompat/widget/AppCompatTextHelper$1;
|
||||
Landroidx/appcompat/widget/AppCompatTextHelper;
|
||||
Landroidx/appcompat/widget/AppCompatTextView;
|
||||
Landroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper$Impl23;
|
||||
Landroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper$Impl29;
|
||||
Landroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper$Impl;
|
||||
Landroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper;
|
||||
Landroidx/appcompat/widget/ContentFrameLayout$OnAttachListener;
|
||||
Landroidx/appcompat/widget/ContentFrameLayout;
|
||||
Landroidx/appcompat/widget/DecorContentParent;
|
||||
Landroidx/appcompat/widget/DecorToolbar;
|
||||
Landroidx/appcompat/widget/DrawableUtils;
|
||||
Landroidx/appcompat/widget/EmojiCompatConfigurationView;
|
||||
Landroidx/appcompat/widget/ForwardingListener;
|
||||
Landroidx/appcompat/widget/LinearLayoutCompat;
|
||||
Landroidx/appcompat/widget/ResourceManagerInternal$ColorFilterLruCache;
|
||||
Landroidx/appcompat/widget/ResourceManagerInternal$ResourceManagerHooks;
|
||||
Landroidx/appcompat/widget/ResourceManagerInternal;
|
||||
Landroidx/appcompat/widget/ResourcesWrapper;
|
||||
Landroidx/appcompat/widget/RtlSpacingHelper;
|
||||
Landroidx/appcompat/widget/ThemeUtils;
|
||||
Landroidx/appcompat/widget/TintContextWrapper;
|
||||
Landroidx/appcompat/widget/TintResources;
|
||||
Landroidx/appcompat/widget/TintTypedArray;
|
||||
Landroidx/appcompat/widget/Toolbar$$ExternalSyntheticLambda0;
|
||||
Landroidx/appcompat/widget/Toolbar$1;
|
||||
Landroidx/appcompat/widget/Toolbar$2;
|
||||
Landroidx/appcompat/widget/Toolbar$ExpandedActionViewMenuPresenter;
|
||||
Landroidx/appcompat/widget/Toolbar$LayoutParams;
|
||||
Landroidx/appcompat/widget/Toolbar;
|
||||
Landroidx/appcompat/widget/ToolbarWidgetWrapper$1;
|
||||
Landroidx/appcompat/widget/ToolbarWidgetWrapper;
|
||||
Landroidx/appcompat/widget/TooltipCompat;
|
||||
Landroidx/appcompat/widget/VectorEnabledTintResources;
|
||||
Landroidx/appcompat/widget/ViewUtils;
|
||||
PLandroidx/appcompat/app/ActionBar;->onDestroy()V
|
||||
PLandroidx/appcompat/app/AppCompatActivity;->dispatchKeyEvent(Landroid/view/KeyEvent;)Z
|
||||
PLandroidx/appcompat/app/AppCompatActivity;->getSupportActionBar()Landroidx/appcompat/app/ActionBar;
|
||||
PLandroidx/appcompat/app/AppCompatActivity;->onDestroy()V
|
||||
PLandroidx/appcompat/app/AppCompatActivity;->onKeyDown(ILandroid/view/KeyEvent;)Z
|
||||
PLandroidx/appcompat/app/AppCompatActivity;->onStop()V
|
||||
PLandroidx/appcompat/app/AppCompatActivity;->performMenuItemShortcut(Landroid/view/KeyEvent;)Z
|
||||
PLandroidx/appcompat/app/AppCompatDelegate;->removeActivityDelegate(Landroidx/appcompat/app/AppCompatDelegate;)V
|
||||
PLandroidx/appcompat/app/AppCompatDelegateImpl$5;->onDetachedFromWindow()V
|
||||
PLandroidx/appcompat/app/AppCompatDelegateImpl$ActionMenuPresenterCallback;->onCloseMenu(Landroidx/appcompat/view/menu/MenuBuilder;Z)V
|
||||
PLandroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;->dispatchKeyEvent(Landroid/view/KeyEvent;)Z
|
||||
PLandroidx/appcompat/app/AppCompatDelegateImpl;->checkCloseActionMenu(Landroidx/appcompat/view/menu/MenuBuilder;)V
|
||||
PLandroidx/appcompat/app/AppCompatDelegateImpl;->cleanupAutoManagers()V
|
||||
PLandroidx/appcompat/app/AppCompatDelegateImpl;->dismissPopups()V
|
||||
PLandroidx/appcompat/app/AppCompatDelegateImpl;->dispatchKeyEvent(Landroid/view/KeyEvent;)Z
|
||||
PLandroidx/appcompat/app/AppCompatDelegateImpl;->endOnGoingFadeAnimation()V
|
||||
PLandroidx/appcompat/app/AppCompatDelegateImpl;->onBackPressed()Z
|
||||
PLandroidx/appcompat/app/AppCompatDelegateImpl;->onDestroy()V
|
||||
PLandroidx/appcompat/app/AppCompatDelegateImpl;->onKeyDown(ILandroid/view/KeyEvent;)Z
|
||||
PLandroidx/appcompat/app/AppCompatDelegateImpl;->onKeyUp(ILandroid/view/KeyEvent;)Z
|
||||
PLandroidx/appcompat/app/AppCompatDelegateImpl;->onStop()V
|
||||
PLandroidx/appcompat/app/WindowDecorActionBar;->collapseActionView()Z
|
||||
PLandroidx/appcompat/view/WindowCallbackWrapper;->dispatchKeyEvent(Landroid/view/KeyEvent;)Z
|
||||
PLandroidx/appcompat/view/WindowCallbackWrapper;->onDetachedFromWindow()V
|
||||
PLandroidx/appcompat/view/menu/BaseMenuPresenter;->onCloseMenu(Landroidx/appcompat/view/menu/MenuBuilder;Z)V
|
||||
PLandroidx/appcompat/view/menu/MenuBuilder;->close()V
|
||||
PLandroidx/appcompat/view/menu/MenuBuilder;->close(Z)V
|
||||
PLandroidx/appcompat/widget/ActionBarContainer;->verifyDrawable(Landroid/graphics/drawable/Drawable;)Z
|
||||
PLandroidx/appcompat/widget/ActionBarContextView;->onDetachedFromWindow()V
|
||||
PLandroidx/appcompat/widget/ActionBarOverlayLayout;->dismissPopups()V
|
||||
PLandroidx/appcompat/widget/ActionBarOverlayLayout;->haltActionBarHideOffsetAnimations()V
|
||||
PLandroidx/appcompat/widget/ActionBarOverlayLayout;->onDetachedFromWindow()V
|
||||
PLandroidx/appcompat/widget/ActionMenuPresenter;->dismissPopupMenus()Z
|
||||
PLandroidx/appcompat/widget/ActionMenuPresenter;->hideOverflowMenu()Z
|
||||
PLandroidx/appcompat/widget/ActionMenuPresenter;->hideSubMenus()Z
|
||||
PLandroidx/appcompat/widget/ActionMenuPresenter;->onCloseMenu(Landroidx/appcompat/view/menu/MenuBuilder;Z)V
|
||||
PLandroidx/appcompat/widget/ActionMenuView;->dismissPopupMenus()V
|
||||
PLandroidx/appcompat/widget/ActionMenuView;->onDetachedFromWindow()V
|
||||
PLandroidx/appcompat/widget/ContentFrameLayout;->onDetachedFromWindow()V
|
||||
PLandroidx/appcompat/widget/Toolbar$ExpandedActionViewMenuPresenter;->onCloseMenu(Landroidx/appcompat/view/menu/MenuBuilder;Z)V
|
||||
PLandroidx/appcompat/widget/Toolbar;->dismissPopupMenus()V
|
||||
PLandroidx/appcompat/widget/Toolbar;->hasExpandedActionView()Z
|
||||
PLandroidx/appcompat/widget/Toolbar;->onDetachedFromWindow()V
|
||||
PLandroidx/appcompat/widget/ToolbarWidgetWrapper;->dismissPopupMenus()V
|
||||
PLandroidx/appcompat/widget/ToolbarWidgetWrapper;->hasExpandedActionView()Z
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user