activity xml 片段中的 findViewById 属性无效
findViewById Attribute in Fragment from the activity xml Not work
如何访问activityxml中的属性?
我想在片段中使用它。
例如:这是我的 activity 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_width="match_parent"
android:layout_height="match_parent"
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_width="match_parent"
android:layout_height="wrap_content"
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_width="@dimen/imgActivityTitle"
android:layout_height="@dimen/imgActivityTitle"
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_width="0dp"
android:layout_height="0dp"
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)
但是,不幸的是它对我不起作用。
试试这个代码
@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;
}
您可以在 activity
中将 TextView btn_back 声明为静态
public static TextView btn_back;
btn_back = (TextView) findViewById(R.id.btn_back);
并在片段中获取它
TextView btn_back = ((MainActivity)getActivity()).btn_back;
使用 viewModel 或接口在 activity 和 fragment 之间进行对话。不要尝试将按钮发送到片段,而是从那里触发它。这将防止任何泄漏或空指针。
好的。你有一些选择。
首先,你可以直接在片段中访问这些变量。
MainActivity.java
TextView backButton;
backButton = findViewById(R.id.btn_back);
Fragment.java
((MainActivity) getActivity()).backButton
您可以使用 getActivity()
获取当前 activity,但 Java 编译器无法理解哪个 activity 因此必须转换为 MainActivity。
其次,您可以将 activity 实例传递给片段。您可以使用构造函数和 newInstance()
函数。你可以读到 post Best practice for instantiating a new Android Fragment
在我看来,我更喜欢第二个选项,因为你保证这些变量包括 activity class。某些设备在第一个选项时会发生错误。但是第二个选项使用更多 ram,因为您将变量传递给另一个 class.
选择权在你
您可以使用界面来完成:
使用一个无效方法创建一个名为 IBtnClick 的接口:“void onBtnClicked();”
像这样使用 activity 中的界面:
IBtnClick iBtnClick= (IBtnClick)getActivity();
这里的 getAtivity 是我们的上下文,如果它不起作用使用另一个范围上下文。
并像这样在按钮点击侦听器中使用您的方法
iBtnClick.onBtnClicked();
现在在你的片段中你必须实现接口并且
您可以在重写方法中添加您想要的任何操作。
如何访问activityxml中的属性? 我想在片段中使用它。
例如:这是我的 activity 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_width="match_parent"
android:layout_height="match_parent"
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_width="match_parent"
android:layout_height="wrap_content"
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_width="@dimen/imgActivityTitle"
android:layout_height="@dimen/imgActivityTitle"
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_width="0dp"
android:layout_height="0dp"
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)
但是,不幸的是它对我不起作用。
试试这个代码
@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;
}
您可以在 activity
中将 TextView btn_back 声明为静态public static TextView btn_back;
btn_back = (TextView) findViewById(R.id.btn_back);
并在片段中获取它
TextView btn_back = ((MainActivity)getActivity()).btn_back;
使用 viewModel 或接口在 activity 和 fragment 之间进行对话。不要尝试将按钮发送到片段,而是从那里触发它。这将防止任何泄漏或空指针。
好的。你有一些选择。
首先,你可以直接在片段中访问这些变量。
MainActivity.java
TextView backButton;
backButton = findViewById(R.id.btn_back);
Fragment.java
((MainActivity) getActivity()).backButton
您可以使用 getActivity()
获取当前 activity,但 Java 编译器无法理解哪个 activity 因此必须转换为 MainActivity。
其次,您可以将 activity 实例传递给片段。您可以使用构造函数和 newInstance()
函数。你可以读到 post Best practice for instantiating a new Android Fragment
在我看来,我更喜欢第二个选项,因为你保证这些变量包括 activity class。某些设备在第一个选项时会发生错误。但是第二个选项使用更多 ram,因为您将变量传递给另一个 class.
选择权在你
您可以使用界面来完成:
使用一个无效方法创建一个名为 IBtnClick 的接口:“void onBtnClicked();”
像这样使用 activity 中的界面:
IBtnClick iBtnClick= (IBtnClick)getActivity();
这里的 getAtivity 是我们的上下文,如果它不起作用使用另一个范围上下文。
并像这样在按钮点击侦听器中使用您的方法
iBtnClick.onBtnClicked();
现在在你的片段中你必须实现接口并且
您可以在重写方法中添加您想要的任何操作。