小编0rk*_*kan的帖子

片段分离方法不会停止相机预览

我有这个布局:

<LinearLayout 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"
    android:orientation="vertical"
    android:background="@color/DeepSkyBlue"
    tools:context=".MainPreviewActivity"
    android:weightSum="5">

    <FrameLayout
        android:id="@+id/clean_preview_fragment_container"
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight="3"/>

    <ListView
        android:layout_height="0dp"
        android:layout_weight="2"
        android:layout_width="match_parent"
        android:id="@+id/lvImageProcessChoices"/>

</LinearLayout>
Run Code Online (Sandbox Code Playgroud)

在我的活动中我得到了这个:

    FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
    if(savedInstanceState != null){
        System.out.println("savedInstanceState is NOT null");
        return;
    }
    CleanPreviewFragment cleanPreviewFragment = new CleanPreviewFragment();
    processedPreviewFragment = new ProcessedPreviewFragment();

    fragmentTransaction.add(R.id.clean_preview_fragment_container,cleanPreviewFragment);
    fragmentTransaction.detach(cleanPreviewFragment);
    fragmentTransaction.replace(R.id.clean_preview_fragment_container, processedPreviewFragment);
    fragmentTransaction.attach(cleanPreviewFragment);

    fragmentTransaction.commit();
Run Code Online (Sandbox Code Playgroud)

现在这样做,它开始一个相机预览(在干净的预览片段上),分离它并用另一个预览替换它,这是我修改过的预览,然后再次附加它(干净的预览片段).

Detach():从UI中分离给定的片段.这与放在后台堆栈时的状态相同:片段从UI中删除,但片段管理器仍在主动管理其状态.

所以我拆开它,但相机预览仍然继续?

因为当替换发生时,我可以看到修改后的预览.这是由attach()方法引起的吗?

android android-fragments

5
推荐指数
1
解决办法
574
查看次数

如何每小时自动刷新 HTML 页面?

我想每小时在后台自动刷新一个 HTML 页面。我正在考虑使用 PHP,但我不确定是否可行。

这就是我所拥有的全部:

<meta http-equiv="refresh" content="3600" >
Run Code Online (Sandbox Code Playgroud)

但这不会在后台自动刷新。我怎样才能做到这一点?如果这在 PHP 和 cron 作业中是可能的,请告诉我(最好带有代码)。谢谢。

html javascript php

1
推荐指数
1
解决办法
2万
查看次数

Flask-SQLAlchemy查询在过滤器上显示负面条件

我正在尝试使用方法的负面条件进行Flask-SQLAlchemy查询filter_by().

我可以很容易地得到谁是我的系统管理员User.query.filter_by(admin=True)和谁没有,User.query.filter_by(admin=False)但我想用一个过滤器来查询要忽略的内容,例如:

notRach = User.query.filter_by(name!='Rachmaninoff')
# queries for all users whose name isn't Rachmaninoff
Run Code Online (Sandbox Code Playgroud)

我怎么能做到这一点?

python flask flask-sqlalchemy

0
推荐指数
1
解决办法
789
查看次数