我在这里寻找一些方法来做我想要的,我尝试了一些代码,但是没有工作。我有一个带底栏的应用程序(3个itens),我每个都有一个片段。 3个片段加载带有webview的布局(当然,3个不同的链接)。我想要的是在片段之间切换并将其保留在后台,因为当我将片段1留给片段2时,我回到片段1,片段1再次加载,我只想保持它的负载,其他片段太。我怎样才能做到这一点 ? 谢谢你的帮助!!
活动主XML
ViewController
主要活动Java
IBAction
片段示例Java
<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:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="bandeira.thalisson.appExample.MainActivity">
<FrameLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
</FrameLayout>
<android.support.design.widget.BottomNavigationView
android:id="@+id/navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:background="?android:attr/windowBackground"
app:menu="@menu/navigation"/>
片段XML
public class MainActivity extends AppCompatActivity {
private BottomNavigationView.OnNavigationItemSelectedListener mOnNavigationItemSelectedListener
= new BottomNavigationView.OnNavigationItemSelectedListener() {
@Override
public boolean onNavigationItemSelected(@NonNull MenuItem item) {
Fragment selectedFragment = null;
switch (item.getItemId()) {
case R.id.navigation_item1:
selectedFragment = Fragment1.newInstance();
getSupportFragmentManager().beginTransaction().replace(R.id.content, selectedFragment).commit();
return true;
case R.id.navigation_item2:
selectedFragment = Fragment2.newInstance();
getSupportFragmentManager().beginTransaction().replace(R.id.content, selectedFragment).commit();
return true;
case R.id.navigation_item3:
selectedFragment = Fragment3.newInstance();
getSupportFragmentManager().beginTransaction().replace(R.id.content, selectedFragment).commit();
return true;
}
return false;
}
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
getSupportActionBar().hide();
BottomNavigationView navigation = (BottomNavigationView) findViewById(R.id.navigation);
navigation.setOnNavigationItemSelectedListener(mOnNavigationItemSelectedListener);
//*Iniciar um fragmento junto com o aplicativo
FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
transaction.replace(R.id.content, Fragment1.newInstance());
transaction.commit();
}
答案 0 :(得分:0)
不是每次在onNavigationItemSelected中使用替换,而是使用显示和隐藏。
以编程方式创建可能在onCreate和项目选定方法中的所有片段
而不是
getSupportFragmentManager().beginTransaction().replace(R.id.content, selectedFragment).commit();
你做了
getSupportFragmentManager().beginTransaction().show(R.id.content, selectedFragment).commit();
并且类似地隐藏
getSupportFragmentManager().beginTransaction().hide(R.id.content, selectedFragment).commit();
在这种情况下,它只会创建一次(第一次),然后会显示和隐藏(想想可见和 GONE ,<强>不说它相同,但相似)