gpt4 book ai didi

java - Android:在包含的布局中找不到最外面的 View

转载 作者:行者123 更新时间:2023-11-29 20:51:53 25 4
gpt4 key购买 nike

当前行为

include 标签的内容正在显示,但是,当我尝试在包含的布局中查找外部 View 时,它返回 null。

问题我做错了什么?

代码

这是 onCreate() 中的 java 代码:

input_box_wrapper = findViewById( R.id.input_box_layout ).findViewById( R.id.input_box_wrapper );

if ( input_box_wrapper == null )
Log.i( "another", "it's null" ); //this prints out

这是一些 Activity 的 xml 文件中的 include 标签:

<include layout="@layout/msg_input_box" 
android:id="@+id/input_box_layout"/>

这是 msg_input_box.xml 中包含的 xml 代码:

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/input_box_wrapper"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginTop="5dp"
android:background="@drawable/transparent_background2" >

<TextView
android:id="@+id/send_msg_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:background="@drawable/transparent_background2"
android:text="Send" />

<EditText
android:id="@+id/input_box"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignTop="@id/send_msg_button"
android:layout_toLeftOf="@id/send_msg_button"
android:background="#00000000"
android:hint="@string/type_a_message"
android:textColorHint="#EEEEEE"
android:inputType="textMultiLine"
android:maxLines="5"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:paddingTop="4dp"
android:paddingBottom="4dp"
android:textColor="#FFFFFF"
android:textSize="20sp"
android:shadowColor="#000000"
android:shadowRadius="3"
android:shadowDx="3"
android:shadowDy="3"/>

</RelativeLayout>

最佳答案

哇,抱歉,但我提出了一个理论,对其进行了测试,并在发布问题后立即意识到了答案。

在包含标签的 id 上使用 findViewById() 返回包含文件的 Root View 。

测试使用:

input_box_wrapper = findViewById( R.id.input_box_layout );

if ( input_box_wrapper == null )
Log.i( "another", "it's null" );
else
{
Log.i("another", "not null");

if ( input_box_wrapper instanceof RelativeLayout )
Log.i("another", "it's the root view");
}

输出:

不为空

这是 Root View

关于java - Android:在包含的布局中找不到最外面的 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28918780/

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