我有以下布局结构:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:id="@+id/wrapper_layout"
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:background="@color/colorPrimary"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.phoenetoaster.doitcalendar.MainActivity">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:orientation="vertical">
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:orientation="vertical">
<EditText
android:id="@+id/editText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_marginTop="105dp"
android:hint="@string/event_name"/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
style="@style/textviews"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/when"/>
<TextView
android:id="@+id/value_when"
style="@style/textviewsChangingText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/today"/>
</RelativeLayout>
<!--Seekbar 2 -->
<SeekBar
android:id="@+id/seekBar_when"
style="@style/seekbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
style="@style/textviews"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/time"/>
<TextView
android:id="@+id/value_time"
style="@style/textviewsChangingText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/today"/>
</RelativeLayout>
<SeekBar
android:id="@+id/seekBar_time"
style="@style/seekbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<Button
android:id="@+id/button"
style="@style/buttons"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/create_event_in_calendar"/>
</LinearLayout>
</RelativeLayout>
产生类似这样的东西:
我想问一下如何在表单外单击以隐藏应用程序到背景?
我尝试将OnClick事件设置为包装器布局(父级相对布局),但此布局不会扩展到屏幕的整个高度和宽度。
我应该添加其他一些布局吗?
我该如何解决?
非常感谢任何建议