替换片段不会完全替换之前的片段.为什么这样?
作者:互联网
我正在实现一个“ fragments-101”程序,在该程序中,单击相应的按钮时将替换一个片段.但是,发生以下情况:
为什么会这样?为什么初始片段未完全替换?
MainActivity和两个片段xml文件都使用LinearLayout.我在这里搜索有关该问题的信息,发现replace()方法有时可能有问题,因此我尝试使用add(),但无济于事.片段中没有特殊的代码,它是一个简单的hello-world-type片段程序.
我正在AVD中使用Android Lollipop版本以及targetSDK,在Android Studio 1.0.2中使用minSDK版本对应于Android 4.0.3.这可能与Android Lollipop有关吗?
MainActivity.java
package com.example.fragmenttest;
import android.app.Fragment;
import android.app.FragmentManager;
import android.app.FragmentTransaction;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Toast;
public class MainActivity extends Activity {
FragmentManager fm;
FragmentTransaction ft;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void launchFragment(View v)
{
Fragment frag;
if(v == findViewById(R.id.btnFrag2))
{
frag = new FragmentTwo();
}
else
{
frag = new FragmentOne();
}
fm = this.getFragmentManager();
ft = fm.beginTransaction();
ft.replace(R.id.myFrag,frag);
ft.commit();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
layout_frag1.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#00ffff">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Fragment 1."
android:id="@+id/textView2" />
</LinearLayout>
layout_frag2.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffff00">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Fragment 2."
android:id="@+id/textView3" />
</LinearLayout>
activity_main.xml中
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">
<Button
android:layout_width="348dp"
android:layout_height="wrap_content"
android:text="Launch Fragment 2"
android:id="@+id/btnFrag2"
android:onClick="launchFragment"
android:layout_gravity="center_vertical" />
<Button
android:layout_width="355dp"
android:layout_height="wrap_content"
android:text="Launch Fragment 1"
android:id="@+id/btnFrag1"
android:onClick="launchFragment"/>
<fragment
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:name="com.example.fragmenttest.FragmentTwo"
android:id="@+id/myFrag"
tools:layout="@layout/layout_frag2" />
</LinearLayout>
解决方法:
使用< fragment />从xml布局直接放大的片段标签无法替换.
您的xml布局内应该有一个空的FrameLayout.并且您应该以编程方式向该FrameLayout中添加,删除和替换所有片段.
标签:android,android-fragments,android-5-0-lollipop,android-ui 来源: https://codeday.me/bug/20191011/1895010.html