我使用XML添加了片段并且工作正常,但是当我尝试动态添加它时它没有出现在主要活动中
FragmentActivity.java:
package com.example.pc.learn_again;
import android.app.Activity;
import android.app.FragmentManager;
import android.app.FragmentTransaction;
import android.os.Bundle;
import android.os.PersistableBundle;
public class FragmentActivity2 extends Activity{
@Override
public void onCreate(Bundle savedInstanceState, PersistableBundle persistentState) {
super.onCreate(savedInstanceState, persistentState);
setContentView(R.layout.mainfragment2);
//adding the fragment using Java code---dynamically ya3ni//
//create an object of the intended frag//
Fragment3 frag = new Fragment3();
//get the manager
FragmentManager manager = getFragmentManager();
//start the transaction
FragmentTransaction transaction = manager.beginTransaction();
//add to the layout
transaction.add(R.id.mylayout,frag,"fragment3");//--note: the parameters used are 1- the id of the main layout 2- the intended fragment 3- a key for future use//
//finish using the below
transaction.commit();
}
}
Fragment3.java:
package com.example.pc.learn_again;
import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
public class Fragment3 extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
return inflater.inflate(R.layout.fragment3,container,false);
}
}
fragment3.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/highlighted_text_material_light">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Large Text"
android:id="@+id/textView3"
android:layout_gravity="center_horizontal"
android:layout_margin="40dp"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Button"
android:id="@+id/button12"
android:layout_below="@+id/textView3"
android:layout_margin="40dp"
android:layout_gravity="center_horizontal" />
</RelativeLayout>
mainfragment2.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:id="@+id/mylayout">
</LinearLayout>
我检查了上述所有内容以及xml文件和类之间的连接,所有这些都是正确的,但是当我测试它时片段没有显示在活动中
答案 0 :(得分:0)
试试这个:
mainfragment2.xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/mylayout"
</LinearLayout>
</LinearLayout>
答案 1 :(得分:0)
我认为问题可能是您使用了错误的onCreate(),因此您的活动代码永远不会运行。
onCreate(Bundle)是在创建活动时始终调用的标准方法。只有在正确设置onCreate(Bundle, PersistableBundle)标记的情况下才会调用persistableMode。
答案 2 :(得分:0)
首先在FrameLayout
LinearLayout
内mainfragment2.xml
内创建一个<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/mylayout">
<FrameLayout android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/container" />
</LinearLayout>
:
Fragment3
然后,使用FrameLayout
方法将replace()
放入此getFragmentManager().beginTransaction()
.replace(R.id.container, new Fragment3).commit();
:
Fragment
由于API级别11中添加了getSupportFragmentManager()
,因此您可以使用支持库提供的Fragment
来支持蜜蜂前设备支持proceedButton
。