我有一个需要在活动上显示的片段,但活动中的按钮一直显示在片段上。我需要片段与活动完全重叠。
活动的xml。
var spaces = tb.Inlines.Where(a => a is Run
&& ((Run)a).Text == " "
&& !GetPreserveSpace(a)).ToList();
spaces.ForEach(s => tb.Inlines.Remove(s));
片段
<LinearLayout 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"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorPrimary"
android:minHeight="?attr/actionBarSize"
app:navigationIcon="@drawable/ic_close_black_24dp"
app:popupTheme="@style/Theme.AppCompat.NoActionBar"
app:titleTextColor="@color/toolbarTextColor" />
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:layout_width="match_parent"
android:layout_height="match_parent"
android:inputType="textMultiLine"
android:lines="3"
android:maxLines="10"
android:scrollbars="vertical" />
</android.support.design.widget.TextInputLayout>
</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
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.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorPrimary"
android:minHeight="?attr/actionBarSize"
app:navigationIcon="@drawable/ic_close_black_24dp"
app:popupTheme="@style/Theme.AppCompat.NoActionBar"
app:titleTextColor="@color/toolbarTextColor" />
<TextView
android:id="@+id/firstnameTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="@dimen/activity_horizontal_margin"
/>
<TextView
android:id="@+id/lastnameTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="@dimen/activity_horizontal_margin"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Chat" />
<fragment
android:id="@+id/fragment_chat"
android:name="user.InitiateChat_Fragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</FrameLayout>
在活动create.Fragment上调用init代码是一个全局变量。
答案 0 :(得分:1)
试试这个:
<fragment
android:id="@+id/fragment_chat"
android:name="user.InitiateChat_Fragment"
android:layout_width="match_parent"
android:background="?android:attr/colorBackground" //add this
android:layout_height="match_parent" />
第二路
在片段中创建一个布局,并在显示片段
时隐藏它的可见性 <?xml version="1.0" encoding="utf-8"?>
<FrameLayout 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">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorPrimary"
android:minHeight="?attr/actionBarSize"
app:navigationIcon="@drawable/ic_close_black_24dp"
app:popupTheme="@style/Theme.AppCompat.NoActionBar"
app:titleTextColor="@color/toolbarTextColor" />
<LinearLayout
android:id="@+id/activity_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/firstnameTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="@dimen/activity_horizontal_margin" />
<TextView
android:id="@+id/lastnameTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="@dimen/activity_horizontal_margin" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Chat" />
</LinearLayout>
<fragment
android:id="@+id/fragment_chat"
android:name="user.InitiateChat_Fragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</FrameLayout>
现在在你的代码中:
private void showHideFragment(final Fragment fragment) {
final FragmentTransaction fragTransaction = getSupportFragmentManager().beginTransaction();
fragTransaction.setCustomAnimations(R.anim.fragment_slide_from_bottom, R.anim.fragment_slide_to_bottom);
if (fragment.isHidden()) {
fragTransaction.show(fragment); //show fragment
layout.setVisibility(View.GONE); //hide Linearlayout
} else {
fragTransaction.hide(fragment);
}
fragTransaction.commit();
}
LinearLayout layout =(LinearLayout)findViewById(R.id.activity_button);
答案 1 :(得分:1)
您的按钮可见,因为在使用Material Design主题时,其默认高程为2dp。您应该为按钮上方的布局提供2个或更多dp的高程。这将使按钮在您的案例中消隐在片段布局后面。
android:elevation="2dp"
答案 2 :(得分:0)
尝试为此片段添加背景颜色
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff" /* Add any color you want */
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">