gpt4 book ai didi

android - 为什么从纵向切换到横向时 FindViewById 返回 null?

转载 作者:行者123 更新时间:2023-11-29 20:47:06 24 4
gpt4 key购买 nike

我的一个 Activity 的 InitView 方法调用它的属性

protected ListView MainMenu
{
get
{
return FindViewById<ListView>(Resource.Id.mainmenu);
}
}

...它指的是定义为 RelativeLayout“MainMenuLayout.axml”一部分的 ListView,位于我的 Android 项目的“layout”文件夹中:

    <ListView
android:id="@+id/mainmenu"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:choiceMode="singleChoice"
android:layout_below="@id/mainmenuHeader"
android:divider="#e5e5e5"
android:dividerHeight="1dp"
android:background="#fff" />

在纵向模式下,这会按预期工作。但是,当切换到横向模式时,上面对 FindViewById 的调用返回 null。据我了解,Android 应该为纵向和横向模式使用布局文件夹。 Resource.designer.cs 还包含

public const int mainmenu = 2131492931;

如预期。值得注意的是,通过设置 ConfigurationChanges = ConfigChanges.Orientation 和 ConfigChanges.ScreenSize 手动处理方向更改会导致横向模式正常工作。这是 Xamarin 问题,还是我误解了什么?

最佳答案

ID 为“mainmenu”的元素在纵向模式下为此 Activity 生成的布局中不存在。 FindViewById 因此返回 null。您需要确保纵向模式布局包含“mainmenu”元素,或者以其他方式进行空检查,例如:

if (MainMenu != null) {
MainMenu.Visibility = ViewStates.Visible;
}

...在您访问 MainMenu 属性之前。 (注意:在访问并非所有布局中都存在的元素之前简单地检查设备方向可能会导致细微错误,因此不应这样做)。

我自己的问题的长答案是这个 Activity 实际上并没有在它的 InitView 中调用 SetContentView(Resource.Layout.MainMenuLayout),而是使用 SetContentView(Resource.Layout.MasterLayout)。所以我们需要查看 MasterLayout.axml,而不是 MainMenuLayout.axml。更重要的是 MasterLayout.axml 有两个版本,一个在“layout-port”文件夹中,一个在“layout”中。 “布局”中的那个有 include 指令

<include layout="@layout/MainMenuLayout" />

...但是“layout-port”中的版本没有这个包含。这就是为什么“mainmenu”元素只存在于横向布局中而不存在于纵向布局中的原因。

故事的寓意:在布局中使用 include 指令时,请保持房屋井然有序。

[编辑:详细说明此响应中的“细微错误”注意事项:如果您在访问仅存在于例如中的元素之前使用 WindowManager.DefaultDisplay.Rotation 检查设备方向纵向模式下,FindViewById 可以仍然返回 null。在 Xamarin 上,Activity 可能处于设备方向为纵向但尚未创建纵向 View 元素的情况。如果您在切换 Activity 后立即快速翻转设备,就会发生这种情况。不一致的 Activity 版本将很快停止并使用正确的配置恢复,但它可以持续足够长的时间,以至于您的代码将执行并且您会收到 NullReferenceException。这就是为什么您应该检查 FindViewById 是否返回 null,而不仅仅是查看设备配置。

关于android - 为什么从纵向切换到横向时 FindViewById 返回 null?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30101513/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com