Android片段布局问题

时间:2013-11-01 06:14:18

标签: android android-layout android-intent android-listview android-fragments

在我的android应用程序中,我正在用另一个Sherlock片段替换Sherlock片段。 (让我说B中的A)我使用以下代码进行此替换

   FragmentTransaction ft = getActivity().getSupportFragmentManager().beginTransaction();
   Fragment fragment = new AddNewRaveFragment();
   ft.replace(R.id.raves_frame, fragment,"NewFragmentTag");
   ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
   ft.addToBackStack(null);
   ft.commit();

列出我用于片段A

<?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:orientation="vertical" >

<FrameLayout
    android:id="@+id/raves_frame"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:layout_marginLeft="114dp"
    android:layout_marginTop="69dp" >
</FrameLayout>


</RelativeLayout>

但是当我运行该程序时,它会显示布局向左移动 enter image description here

这是我用于布局B的代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="#ffffff" >

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:orientation="vertical" >

    <EditText
        android:id="@+id/editText1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <requestFocus />
    </EditText>

</LinearLayout>

那么如何才能正确显示屏幕中的布局? 感谢

1 个答案:

答案 0 :(得分:1)

问题是因为您在FrameLayout中留下了保证金。只需删除此行android:layout_marginLeft="114dp",同时删除边距顶部android:layout_marginTop="69dp",这样就留下了额外的空间。