来自活动xml的片段中的findViewById属性不起作用[重复]
Posted
技术标签:
【中文标题】来自活动xml的片段中的findViewById属性不起作用[重复]【英文标题】:findViewById Attribute in Fragment from the activity xml Not work [duplicate] 【发布时间】:2021-02-23 08:56:20 【问题描述】:如何访问activity xml中的属性? 我想在片段中使用它。
例如:这是我的 活动 xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_
android:layout_
xmlns:fab="http://schemas.android.com/apk/res-auto">
<androidx.constraintlayout.widget.ConstraintLayout
fab:layout_constraintTop_toTopOf="parent"
fab:layout_constraintLeft_toLeftOf="parent"
fab:layout_constraintRight_toRightOf="parent"
android:layout_
android:layout_
android:id="@+id/layTitle"
android:layoutDirection="rtl"
android:background="@color/colorPrimary"
android:padding="@dimen/paddingTitle"
android:elevation="@dimen/elevationActivityTitle"
android:layout_alignParentTop="true">
<ImageView
fab:layout_constraintLeft_toLeftOf="parent"
fab:layout_constraintTop_toTopOf="parent"
fab:layout_constraintBottom_toBottomOf="parent"
android:layout_
android:layout_
android:id="@+id/btn_back"
android:src="@drawable/ic_back"
android:elevation="5dp"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"/>
</androidx.constraintlayout.widget.ConstraintLayout>
<FrameLayout
android:id="@+id/frag"
android:layout_
android:layout_
fab:layout_constraintBottom_toBottomOf="parent"
fab:layout_constraintTop_toBottomOf="@+id/layTitle"
fab:layout_constraintLeft_toLeftOf="parent"
fab:layout_constraintRight_toRightOf="parent"
/>
</androidx.constraintlayout.widget.ConstraintLayout>
我想要 fragment 中的 findViewByid ImageView 当我在寻找解决方案时,我得到了以下一个:
TextView btn_back= (TextView) getView().findViewById(R.id.btn_back)
但是,不幸的是它不适合我。
【问题讨论】:
你在哪里使用这条线?活动还是片段? 我在片段中使用它 【参考方案1】:你可以使用界面来做:
使用一种 void 方法创建接口名称 IBtnClick:“void onBtnClicked();”
在活动中使用这样的界面:
IBtnClick iBtnClick= (IBtnClick)getActivity();
这里 getAtivity 是我们的上下文,如果它不起作用,请使用另一个范围上下文。
并像这样在按钮单击侦听器中使用您的方法
iBtnClick.onBtnClicked();
现在在你的片段中你必须实现接口和
您可以在 Overrided 方法中添加任何您想要的操作。
【讨论】:
我想在活动中使用 我知道,你可以在活动中使用它。【参考方案2】:使用 viewModel 或接口在 Activity 和 Fragment 之间进行对话。不要尝试将按钮发送到片段,而是从那里触发它。这将防止任何泄漏或空指针。
【讨论】:
【参考方案3】:好的。你有一些选择。
首先,您可以像这样直接在片段中访问这些变量。
MainActivity.java
TextView backButton;
backButton = findViewById(R.id.btn_back);
片段.java
((MainActivity) getActivity()).backButton
您可以使用getActivity()
获取当前活动,但 Java 编译器无法理解哪个活动,因此必须强制转换为 MainActivity。
其次,您可以将您的活动实例传递给片段。您可以使用构造函数和newInstance()
函数。你可以阅读那个帖子Best practice for instantiating a new Android Fragment
在我看来,我更喜欢第二种选择,因为您保证这些变量包括活动类。某些设备在第一次选择时会出现错误。但是第二个选项使用更多内存,因为您将变量传递给另一个类。
选择是你的
【讨论】:
第一个选项不起作用,我使用它但崩溃的应用程序可能是第二种方法,所以谢谢你的回答【参考方案4】:试试这个代码
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState)
view = inflater.inflate(R.layout.recharge_plane_fragment, container, false);
alertdialog_Listview=view.findViewById(R.id.alertdialog_Listview);
return view;
【讨论】:
【参考方案5】:您可以在活动中将 TextView btn_back 声明为静态
public static TextView btn_back;
btn_back = (TextView) findViewById(R.id.btn_back);
并在片段中获取它
TextView btn_back = ((MainActivity)getActivity()).btn_back;
【讨论】:
将视图设为静态会导致内存泄漏。另外,如果片段只适用于 1 个特定的 Activity,那么使用片段有什么意义?以上是关于来自活动xml的片段中的findViewById属性不起作用[重复]的主要内容,如果未能解决你的问题,请参考以下文章