gpt4 book ai didi

java - 当 Android Activity 失去焦点时,如何隐藏或显示布局元素?

转载 作者:太空宇宙 更新时间:2023-11-04 13:46:12 37 4
gpt4 key购买 nike

当 Android 失去焦点时,我试图隐藏布局中的某些元素,这样当在“查看最近的应用程序”显示中查看时,布局元素将不可见。选择应用程序并进入焦点后,这些元素将再次可见。

下面的实现尝试通过 onWindowFocusChanged() 在应用程序处于焦点时显示“内容”布局,并在失去焦点时显示“覆盖”布局。

activity_main.xml

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<RelativeLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="This is the content page"/>
</RelativeLayout>
<RelativeLayout
android:id="@+id/overlay"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="This is the overlay"/>
</RelativeLayout>
</FrameLayout>

MainActivity.java

public class MainActivity extends ActionBarActivity {

FrameLayout layoutContainer;
RelativeLayout layoutContent;
RelativeLayout layoutOverlay;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

layoutContainer = (FrameLayout) findViewById(R.id.container);
layoutContent = (RelativeLayout) findViewById(R.id.content);
layoutOverlay = (RelativeLayout) findViewById(R.id.overlay);

}

@Override
public void onWindowFocusChanged(boolean hasFocus) {

if (hasFocus) {
layoutContent.setVisibility(View.VISIBLE);
layoutOverlay.setVisibility(View.GONE);
} else {
layoutOverlay.setVisibility(View.VISIBLE);
layoutContent.setVisibility(View.GONE);
}

}
}
enter code here

但是,我的实现不起作用。有人有任何建议来解决这个问题吗?谢谢!

最佳答案

如果您想在最近的应用程序中隐藏布局中的 View ,请尝试这样

getWindow().setFlags(WindowManager.LayoutParams.FLAG_SECURE,WindowManager.LayoutParams.FLAG_SECURE);

关于java - 当 Android Activity 失去焦点时,如何隐藏或显示布局元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30817897/

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