以下屏幕显示是我项目的一部分,灰色列表我使用的是listview而不是popupwindow
。
但是当我点击弹出窗口的外部部分时,我想要实现像popupwindow
这样的效果,pop会解散。
我能为此做些什么,请教我,谢谢先进
答案 0 :(得分:0)
如果您为红色区域制作容器,则LinearLayout
或RelativeLayout
等布局会填满整个屏幕,然后您可以通过XML或编程方式对其进行点击,并在那里捕获点击。 Here是如何执行此操作的简单示例。
这假设您只想忽略是否单击了白色区域。
更新:这是一个简单的例子。如果点击,这个小应用程序会将白色区域设置为红色。在点击监听器中,您可以轻松地执行解除红色区域所需的操作。
activity_main.xml中
<?xml version="1.0" encoding="utf-8"?>
<!--Set onClick and clickable here to capture clicks. -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/backgroundLayout"
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"
android:background="@android:color/white"
android:clickable="true"
android:onClick="layoutClicked"
tools:context="com.example.layout2.MainActivity">
<!--Set clickable here, too, to capture clicks so they don't propagate
to underlying view. The button is still enabled, though. -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="200dp"
android:background="@android:color/holo_blue_bright"
android:clickable="true">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</LinearLayout>
</LinearLayout>
支持代码:
MainActivity.java
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void layoutClicked(View view) {
// Set the background color of the "outside" area to red.
// This is where you would dismiss the red area.
view.setBackgroundColor(0xFFDD0000);
}
}