使用片段

时间:2016-03-04 12:50:17

标签: android android-fragments android-actionbar fragment

我正在向活动中添加一个片段,然后我用第二个片段替换该片段。更换第二个片段后,操作栏稍微向下移动 enter image description here

我的活动代码

public class MyActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.meetinglist_activity);
    Fragment first_fragment = new FirstFragment();
    FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
    ft.add(R.id.content_frame, first_fragment).commit();
     }

更换第一个片段按钮中的第二个片段

public class Firstfragment extends Fragment  {


FloatingActionButton new_fab;

@Nullable
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

    View list_view=inflater.inflate(R.layout.meetingslist_fragment,container,false);
    new_fab=(FloatingActionButton)list_view.findViewById(R.id.meeting_new);
    new_fab.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {

            Fragment second_fragment = new SecondFragment();
            FragmentTransaction ft =getActivity().getSupportFragmentManager().beginTransaction();
            ft.replace(R.id.content_frame, second_fragment).commit();
  }

活动布局

 <?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">
 <FrameLayout
    android:id="@+id/content_frame"
    android:layout_width="match_parent"
    android:layout_height="match_parent"></FrameLayout>
   </LinearLayout>

片段的Xml

<!--First Layout-->
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
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:fitsSystemWindows="true">

<android.support.design.widget.FloatingActionButton
    android:id="@+id/meeting_new"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom|end"
    android:layout_margin="@dimen/fab_margin"
    android:src="@android:drawable/ic_dialog_email" />

    </android.support.design.widget.CoordinatorLayout>


 <!--Second Layout-->

<?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">
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceLarge"
    android:text="Large Text"
    android:gravity="center"
    android:id="@+id/textView"
    android:layout_gravity="center_horizontal" />
    </LinearLayout>

我正在使用 android.support.v4.app.Fragment;

我使用的是Android Studio版本2.0和最新的API级别。

任何人都可以帮助我吗?提前致谢。

3 个答案:

答案 0 :(得分:7)

只需更改此行

即可
  

机器人:fitsSystemWindows = “真”

  

机器人:fitsSystemWindows = “假”

我确定你的问题会得到解决

答案 1 :(得分:4)

问题发生第一个片段中的Bcoz坐标布局仅将坐标布局放在第二个片段中,因此它对两个布局都相同。

答案 2 :(得分:0)

我想要解决与动作栏相关的所有问题,你应该使用工具栏,它是谷歌旧动作栏的新替代品。您可以在链接末尾找到实施工具栏的教程:http://javatechig.com/android/android-lollipop-toolbar-example