gpt4 book ai didi

android - 显示 fragment 的 Activity 按钮

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:08:14 26 4
gpt4 key购买 nike

我有一个 fragment 需要显示在 Activity 上,但 Activity 中的按钮一直显示在 fragment 上。我需要 fragment 完全覆盖 Activity。

Activity 的 xml。

<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>

fragment

    <?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>

The incorrect Image

private void init() {
final FragmentManager fragmentManager = getSupportFragmentManager();
fragment = fragmentManager.findFragmentById(R.id.fragment_chat);
final FragmentTransaction fragmentTransaction = getSupportFragmentManager().beginTransaction();
fragmentTransaction.hide(fragment);
fragmentTransaction.commit();
}

public void showChatForm() {
showHideFragment(fragment);
}

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);
} else {
fragTransaction.hide(fragment);
}
fragTransaction.commit();
}

init 代码在 Activity 创建时调用。Fragment 是一个全局变量。

最佳答案

您的 Button 是可见的,因为在使用 Material Design 主题时它的默认高度为 2dp。您应该为按钮上方的布局提供 2 或更多 dp 的高度。这将使按钮消失在您的案例中的 fragment 布局后面。

   android:elevation="2dp"

关于android - 显示 fragment 的 Activity 按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42294357/

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