- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
当我尝试在 Xamrin Android 应用程序中执行以下代码行时遇到错误:
EntityEditor ee = new EntityEditor();
EntityEditor 类是一个 DialogFragment,其代码如下所示:
namespace Storyvoque
{
public class EntityEditor : DialogFragment
{
EditText entityId;
EditText entityType;
EditText entityName;
EditText entityDescription;
EditText containerEntityId;
AutoCompleteTextView containerEntityName;
EditText targetEntityId;
AutoCompleteTextView targetEntityName;
EditText destinationEntityId;
AutoCompleteTextView destinationEntityName;
EditText entityOwner;
EditText entityDate;
CheckBox syncPending;
public StoryEntity editData;
public override void OnCreate(Bundle savedInstanceState)
{
base.OnCreate(savedInstanceState);
// Create your fragment here
}
public override View OnCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
{
return inflater.Inflate(Resource.Layout.EntityEditor, container, false);
}
public override void OnViewCreated(View view, Bundle savedInstanceState)
{
entityId = (EditText)View.FindViewById(Resource.Id.entityId);
entityType = (EditText)View.FindViewById(Resource.Id.entityType);
entityName = (EditText)View.FindViewById(Resource.Id.entityName);
entityDescription = (EditText)View.FindViewById(Resource.Id.entityDescription);
containerEntityId = (EditText)View.FindViewById(Resource.Id.containerEntityId);
containerEntityName = (AutoCompleteTextView)View.FindViewById(Resource.Id.containerEntityName);
targetEntityId = (EditText)View.FindViewById(Resource.Id.targetEntityId);
targetEntityName = (AutoCompleteTextView)View.FindViewById(Resource.Id.targetEntityName);
destinationEntityId = (EditText)View.FindViewById(Resource.Id.destinationEntityId);
destinationEntityName = (AutoCompleteTextView)View.FindViewById(Resource.Id.destinationEntityName);
entityOwner = (EditText)View.FindViewById(Resource.Id.entityOwner);
entityDate = (EditText)View.FindViewById(Resource.Id.entityDate);
syncPending = (CheckBox)View.FindViewById(Resource.Id.syncPending);
base.OnViewCreated(view, savedInstanceState);
}
public void LoadData(StoryData source, UserData users, StoryEntity data)
{
entityId.Text = data.EntityId.ToString();
entityType.Text = data.EntityType.ToString();
entityName.Text = data.Name;
entityDescription.Text = data.Text;
containerEntityId.Text = data.Container.ToString();
containerEntityName.Text = source.GetWrapper(data.Container)?.Name ?? string.Empty;
targetEntityId.Text = data.Target.ToString();
targetEntityName.Text = source.GetWrapper(data.Target)?.Name ?? string.Empty;
destinationEntityId.Text = data.Destination.ToString();
destinationEntityName.Text = source.GetWrapper(data.Destination)?.Name ?? string.Empty;
entityOwner.Text = users[data.UserNum]?.DisplayName ?? data.UserNum.ToString();
entityDate.Text = data.Date.ToLocalTime().ToString("G");
syncPending.Checked = data.SyncRequired;
}
public void StoreData(StoryEntity data)
{
data.EntityId = Int32.Parse(entityId.Text);
data.Name = entityName.Text;
data.Text = entityDescription.Text;
data.Container = Int32.Parse(containerEntityId.Text);
data.Target = Int32.Parse(targetEntityId.Text);
data.Destination = Int32.Parse(destinationEntityId.Text);
}
public override void OnDismiss(IDialogInterface dialog)
{
StoreData(editData);
base.OnDismiss(dialog);
}
}
}
我假设我们不需要查看 AXML 文件,因为它在错误发生之前从未到达 OnCreatedView 函数。错误的调用堆栈如下所示:
Java.Lang.ClassNotFoundException: Didn't find class "md59096a9123c571e4f030e303e8372967e.EntityEditor" on path: DexPathList[[zip file "/data/app/com.enigmadream.storyvoque-1/base.apk"],nativeLibraryDirectories=[/data/app/com.enigmadream.storyvoque-1/lib/x86, /data/app/com.enigmadream.storyvoque-1/base.apk!/lib/x86, /vendor/lib, /system/lib]]
at Java.Interop.JniEnvironment+Types.FindClass (System.String classname) [0x00114] in <54816278eed9488eb28d3597fecd78f8>:0
at Java.Interop.JniType..ctor (System.String classname) [0x00006] in <54816278eed9488eb28d3597fecd78f8>:0
at Java.Interop.JniPeerMembers+JniInstanceMethods..ctor (System.Type declaringType) [0x00064] in <54816278eed9488eb28d3597fecd78f8>:0
at Java.Interop.JniPeerMembers+JniInstanceMethods.GetConstructorsForType (System.Type declaringType) [0x0002c] in <54816278eed9488eb28d3597fecd78f8>:0
at Java.Interop.JniPeerMembers+JniInstanceMethods.StartCreateInstance (System.String constructorSignature, System.Type declaringType, Java.Interop.JniArgumentValue* parameters) [0x00032] in <54816278eed9488eb28d3597fecd78f8>:0
at Android.App.DialogFragment..ctor () [0x00034] in <28e323a707a2414f8b493f6d4bb27c8d>:0
at Storyvoque.EntityEditor..ctor () <0x97e236a0 + 0x0002b> in <c813259d00bd4c8dafdb14124c1c8a19>:0
at Storyvoque.CommandProcessor.ProcessCommand (Storyvoque.Parser.Command command, Storyvoque.UserData users, Storyvoque.StoryData storyData, System.Boolean activePlayer) [0x00091] in C:\Users\bluem\Documents\Visual Studio 2017\Projects\Storyvoque\Storyvoque\CommandProcessor.cs:29
at Storyvoque.MainActivity.SendCommand (Android.Views.View view) [0x000fb] in C:\Users\bluem\Documents\Visual Studio 2017\Projects\Storyvoque\Storyvoque\MainActivity.cs:146
--- End of managed Java.Lang.ClassNotFoundException stack trace ---
java.lang.ClassNotFoundException: Didn't find class "md59096a9123c571e4f030e303e8372967e.EntityEditor" on path: DexPathList[[zip file "/data/app/com.enigmadream.storyvoque-1/base.apk"],nativeLibraryDirectories=[/data/app/com.enigmadream.storyvoque-1/lib/x86, /data/app/com.enigmadream.storyvoque-1/base.apk!/lib/x86, /vendor/lib, /system/lib]]
at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56)
at java.lang.ClassLoader.loadClass(ClassLoader.java:511)
at java.lang.ClassLoader.loadClass(ClassLoader.java:469)
at md59096a9123c571e4f030e303e8372967e.MainActivity.n_SendCommand(Native Method)
at md59096a9123c571e4f030e303e8372967e.MainActivity.SendCommand(MainActivity.java:42)
at java.lang.reflect.Method.invoke(Native Method)
at android.view.View$DeclaredOnClickListener.onClick(View.java:4447)
at android.view.View.performClick(View.java:5198)
at android.view.View$PerformClick.run(View.java:21147)
at android.os.Handler.handleCallback(Handler.java:739)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:148)
at android.app.ActivityThread.main(ActivityThread.java:5417)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
Suppressed: java.lang.ClassNotFoundException: md59096a9123c571e4f030e303e8372967e.EntityEditor
at java.lang.Class.classForName(Native Method)
at java.lang.BootClassLoader.findClass(ClassLoader.java:781)
at java.lang.BootClassLoader.loadClass(ClassLoader.java:841)
at java.lang.ClassLoader.loadClass(ClassLoader.java:504)
... 14 more
Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack trace available
如何缩小或解决这个问题?
最佳答案
感谢对问题的评论,我 found这是一个可以通过每次清理和重建来解决的错误。
关于c# - Xamarin Android 应用遇到未找到类 ... 在路径 : DexPathList[[zip file . ..]...],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47953561/
我已经从github https://github.com/xamarin/xamarin-forms-samples下载了Xamarin.Form示例项目 打开任何示例项目后,它不允许我在iOS S
我收到此错误: "MyApp\App.cs(7,7): Error CS0246: The type or namespace name 'Xamarin' could not be found (a
我想知道 Xamarin 是否带有 Mono 运行时及其所有应用程序包。在这种情况下,如果两个基于 Xamarin 的应用程序安装在一个设备上,该设备将拥有两个 Mono 运行时权利。这是 Xamar
如何将库导入 Xamarin? 例如,我将如何导入 json.net为我的项目使用 xamarin? 谢谢 最佳答案 Json.NET可免费获得精美包装 Xamarin-compatible Comp
我不知道如何在输入框中置顶占位符文本。 我有一个很大的输入框,想把占位符文本放在顶部。 最佳答案 您需要为每个平台创建一个自定义渲染器以对齐占位符,如下所示: public class Placeh
我很难找到有关Xamarin.Forms的后台任务支持的文档。 Xamarin.Forms是否提供对定期后台任务的支持? 我需要为Windows Phone 10和Android都实现此功能。 最佳答
Xamarin.iOS中是否提供iOS Picker?我进行了详尽的搜索,但是没有示例,也没有信息可查。但是,它在Xamarin.Form中可用。 最佳答案 UIPickerView的真实示例示例:(
有谁知道是否可以使用 Xamarin.Forms 创建CardView样式(可滚动)列表?我们需要它在iOS和Android上将呈现为相同的。还需要调整阴影等属性(略微提高每张卡) 最佳答案 这是一个
所以,我对 Xamarin 有点陌生,我试图弄清楚如何显示一个包含用户文本输入字段的弹出窗口。 DisplayAlert 不这样做,因为它没有文本输入字段。我应该使用什么? 最佳答案 您可以使用 Di
我有一个运行良好的表单应用程序,但我注意到当页面出现时,背景颜色在几分之一秒内设置不正确。 我有这个代码用于我的 OnAppearing protected override async vo
您好,我正在开发一个具有登录功能的应用程序,它可以选择让您保持登录状态,即使您关闭该应用程序也是如此。 问题是什么?这就是我在 App.cs 中所做的: var statusLog = Appli
由于BackgroundImage是一个字符串,您应该如何设置Page的背景图像?我将不胜感激任何建议。 到目前为止,我已经尝试过: MainPage = new ContentPage {
如何使用 Renderer 在 Xamarin Forms 中使用渐变效果创建此按钮? 最佳答案 在 xamarin 中,您不能将渐变颜色添加为内置功能。您必须创建不同的渲染功能。这个 link 将指
背景:我正在处理一个 C# 项目。过去,当我做 System.Console.WriteLine("Hello"); 我会看到一个弹出控制台打印“你好”。控制台今天消失了,我该怎么做才能让它再次出现?
我们每天都在使用 Xamarin 和 Xamarin Forms,并且经常遇到异常而没有任何关于如何调试的有用信息。 有时它是我们的目标,有时是 Xamarin 中的错误,尤其是 Xamarin Fo
我正在使用 xamarin studio(带有 nuget 包管理插件),并且在我的项目中有一些 nuget 包。 项目上下文菜单中有“管理”和“恢复 nuget 包”,但也有控制台吗? 最佳答案 X
我有一个 CustomCalendar 元素,它是通过扩展 ContentView 并在另一个 ContentPage 中使用此自定义 View 而创建的。我尝试使用非聚焦事件来检测外部点击。但是问题
因此,对于整个MVVM,我还是一个新手。我几乎了解它的基本知识。我有一个可以按原样工作的示例,但是我试图将其更改为MVVM样式。我只是尝试不同的例子,所以我可以学习。 (LoginPage.xaml)
我正在尝试使我的Xamarin项目在Prism和DryIoc中使用MVVM。 我主要想使用自动注册,如下所示: [AutoRegisterForNavigation] ... protected ov
我有一个问题,如何在 Forms Xamarin 中制作模态屏幕,如附加的图像。 我想知道你们是否可以向我发送一段代码或示例以了解如何做到这一点。 https://extravios.com.br/c
我是一名优秀的程序员,十分优秀!