所以我希望隐藏片段,同时按下按钮显示另一个片段。由于我的应用程序的复杂性,我不能在这里使用tabHost,所以我做了两个按钮,它们将作为显示和隐藏两个片段的选项卡。其中一个按钮有效,但另一个按钮隐藏了当前片段,但无法显示另一个按钮。有时这个按钮会等待一秒左右,然后显示刚刚隐藏的片段的一部分。对于发生了什么有任何想法?
以下是我的xml中的代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/top_buttons"
android:layout_width="match_parent"
android:layout_height="40dp"
android:orientation="horizontal">
<TextView
android:id="@+id/text_personal_A"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:onClick="true"
android:text="@string/my_account"/>
<TextView
android:id="@+id/text_personal_B"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:onClick="true"
android:text="@string/my_messages"/>
</LinearLayout>
<FrameLayout
android:id="@+id/dynamic_fragment_A"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
<FrameLayout
android:id="@+id/dynamic_fragment_B"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</LinearLayout>
以下是我的片段中的代码
package com.kofsoft.mobile.fragment;
import com.kofsoft.mobile.R;
import com.kofsoft.mobile.constants.Constants;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentTransaction;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.TextView;
public class PersonalCenterFragment extends Fragment implements OnClickListener{
private TextView accountTab, employeeTab;
AccountInformationFragment accountInfo;
EmployeeInformationFragment employeeInfo;
FragmentManager fragMan;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.fragment_personal, container, false);
accountInfo = new AccountInformationFragment();
employeeInfo = new EmployeeInformationFragment();
accountTab = (TextView) v.findViewById(R.id.text_personal_A);
accountTab.setOnClickListener(this);
employeeTab = (TextView) v.findViewById(R.id.text_personal_B);
employeeTab.setOnClickListener(this);
fragMan = getFragmentManager();
FragmentTransaction fragTrans = fragMan.beginTransaction();
fragTrans.replace(R.id.dynamic_fragment_A, accountInfo,
Constants.ACCOUNT_INFO_TAG);
fragTrans.replace(R.id.dynamic_fragment_B, employeeInfo,
Constants.EMPLOYEE_INFO_TAG);
fragTrans.hide(employeeInfo);
fragTrans.commit();
return v;
}
@Override
public void onClick(View tab) {
FragmentTransaction fragTrans = fragMan.beginTransaction();
if(tab.getId() == R.id.text_personal_A){
fragTrans.hide(employeeInfo);
fragTrans.show(accountInfo);
}else if(tab.getId() == R.id.text_personal_B){
fragTrans.hide(accountInfo);
fragTrans.show(employeeInfo);
}
fragTrans.commit();
}
}
这可能与我在XML中使用两个FrameLayouts来存储片段这一事实有关。我不确定,但无法找到有这个特殊问题的其他人。
答案 0 :(得分:0)
尝试从android:layout_width更改为android:layout_weight,因为有时第一个framelayout会占用所有可用空间,所以你看不到第二个。
答案 1 :(得分:0)
您的xml未正确设置。如果为片段A指定android:layout_height="match_parent"
,它将垂直占据所有空间。然后片段2向下/向下移出屏幕。您可以通过在FragmentA中指定wrap_content或在片段A中设置android:layout_above="@id/dynamic_fragment_B"
来设置它。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/top_buttons"
android:layout_width="match_parent"
android:layout_height="40dp"
android:orientation="horizontal">
<TextView
android:id="@+id/text_personal_A"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:onClick="true"
android:text="@string/my_account"/>
<TextView
android:id="@+id/text_personal_B"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:onClick="true"
android:text="@string/my_messages"/>
</LinearLayout>
<FrameLayout
android:id="@+id/dynamic_fragment_A"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/dynamic_fragment_B"
/>
<FrameLayout
android:id="@+id/dynamic_fragment_B"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</LinearLayout>