为了账号安全,请及时绑定邮箱和手机立即绑定

为什么视图没有更新?

为什么视图没有更新?

拉风的咖菲猫 2022-06-15 15:44:51
我正在构建一个具有 2 个片段容器并具有屏幕截图功能的应用程序。问题是每当 2 个片段容器中的一个用另一个片段(已替换)更新并且我正在截屏时,它会显示以前的片段而不是更新的片段。我getView().getRootView()在活动的另一个片段中使用来截取屏幕截图。关于为什么会发生的任何建议?
查看完整描述

2 回答

?
神不在的星期二

TA贡献1963条经验 获得超6个赞

请详细说明问题或尝试添加代码。


如果您不使用 FrameLayout,请使用它。


添加 FrameLayout 的代码:


<?xml version="1.0" encoding="utf-8"?>

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:app="http://schemas.android.com/apk/res-auto"

    xmlns:tools="http://schemas.android.com/tools"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    tools:context=".MainActivity">


    <FrameLayout

        android:id="@+id/your_placeholder"

        android:layout_width="0dp"

        android:layout_height="0dp"

        app:layout_constraintBottom_toBottomOf="parent"

        app:layout_constraintEnd_toEndOf="parent"

        app:layout_constraintStart_toStartOf="parent"

        app:layout_constraintTop_toTopOf="parent"></FrameLayout>


</android.support.constraint.ConstraintLayout>

要添加或替换新片段,请使用 FragmentTransaction。


// Code inside the onCreate method

getSupportFragmentManager().beginTransaction()

               .replace(R.id.your_placeholder, new TheOtherFragment())

               .commit();

拍摄屏幕截图:


View view = findViewById(R.id.your_placeholder);

view.setDrawingCacheEnabled(true);

view.setDrawingCacheQuality(View.DRAWING_CACHE_QUALITY_HIGH);

Bitmap screenshot = Bitmap.createBitmap(view.getDrawingCache());

view.setDrawingCacheEnabled(false);


查看完整回答
反对 回复 2022-06-15
?
犯罪嫌疑人X

TA贡献2080条经验 获得超4个赞

拍摄屏幕截图:


View view = findViewById(R.id.id_of_constraintLayout); 

// Here you assign the view Variable to the id of the View hosting all your Views. 


view.setDrawingCacheEnabled(true);

view.setDrawingCacheQuality(View.DRAWING_CACHE_QUALITY_HIGH);


Bitmap screenshot = Bitmap.createBitmap(view.getDrawingCache());

view.setDrawingCacheEnabled(false);


查看完整回答
反对 回复 2022-06-15
  • 2 回答
  • 0 关注
  • 87 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信