片段不覆盖整个屏幕

时间:2013-11-17 09:52:47

标签: android

请帮忙 当我运行我的ListFragment actitivy并单击一个片段(Buick或Mazda)时,我点击的片段的布局应该替换并覆盖整个屏幕但是 包含汽车列表的容器停留在屏幕上,我的片段布局显示在它下面。如何让我的片段布局取代整个屏幕?

我无法发布显示屏幕的AVD图像,因为我没有足够的报道 但是当我点击列表中的第一项时,屏幕显示如下。

别克 马自达

您好!这是别克

我的主动

package in.cars.demo;

import android.app.Activity;
import android.os.Bundle;

public class CarsMainActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }
}

我的ListFragment活动

package in.cars.demo;

import android.app.Fragment;
import android.app.FragmentTransaction;
import android.app.ListFragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.ListAdapter;
import android.widget.ListView;
import android.widget.Toast;

public class CarsList extends ListFragment {

    String[] cars = new String[] { "Buick", "Mazda" };

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        ListAdapter myListAdapter = new ArrayAdapter<String>(getActivity(), android.R.layout.simple_list_item_1, cars);
        setListAdapter(myListAdapter);
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        return inflater.inflate(R.layout.cars_container, container, false);
    }

    @Override
    public void onListItemClick(ListView l, View v, int position, long id) {
        Toast.makeText(getActivity(), getListView().getItemAtPosition(position).toString(), Toast.LENGTH_LONG).show();
        switch (position) {
        case 0:
            Fragment fragment1 = new Fragment1();
            FragmentTransaction transaction1 = getFragmentManager().beginTransaction();
            transaction1.replace(R.id.car_fragment, fragment1);
            transaction1.addToBackStack(null);
            transaction1.commit();
            break;
        case 1:
            Fragment fragment2 = new Fragment2();
            FragmentTransaction transaction2 = getFragmentManager().beginTransaction();
            transaction2.replace(R.id.car_fragment, fragment2);
            transaction2.addToBackStack(null);
            transaction2.commit();
            break;
        }
    }
}

片段1

package in.cars.demo;

import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

public class Fragment1 extends Fragment {

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        return inflater.inflate(R.layout.fragment1, container, false);
    }
}

Fragment2

package in.cars.demo;

import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

public class Fragment2 extends Fragment {
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        return inflater.inflate(R.layout.fragment2, container, false);
    }
}

main.xml中

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

    <fragment 
        android:id="@+id/car_fragment"
        android:name="in.cars.demo.CarsList"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        />
</LinearLayout>

cars_container.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:paddingLeft="4dp"
         android:paddingRight="4dp">

     <ListView android:id="@id/android:list"
               android:layout_width="match_parent"
               android:layout_height="0dip"
               android:layout_weight="1"/>
 </LinearLayout>

fragment1.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <TextView
        android:id="@+id/frag1TV"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Hello! It's a Buick" />
</LinearLayout>

fragment2.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <TextView
        android:id="@+id/frag2TV"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Hello! It's a Mazda" />
</LinearLayout>

3 个答案:

答案 0 :(得分:3)

问题是您在main.xml中将片段的layout_height设置为wrap_content。可见尺寸将减小到碎片的实际尺寸。

将其更改为match_parent以填满整个屏幕:

...
<fragment 
    android:id="@+id/car_fragment"
    android:name="in.cars.demo.CarsList"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    />
...

此外,在API级别为8+的应用中使用match_parent代替fill_parent。有关详细信息,请参阅此question

编辑:

您必须更改碎片的容器。使用标记设置的片段将是静态的。除此容器外,还将设置每个片段。要使用动态方法,请使用FrameLayout。现在你可以替换之前的片段了。

...
<FrameLayout
    android:id="@+id/car_fragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
/>   
...

要显示您的CarsList,您必须在活动中执行片段交易。

getFragmentManager() / getSupportFragmentManager()
.beginTransaction()
.replace(R.id.car_fragment, new CarsList())
.addToBackstack(null)
.commit();

答案 1 :(得分:0)

有点晚了,但也许我会帮助其他人。问题出在&#39;片段&#39;在您的活动xml布局文件(main.xml)中。你必须改变:

<fragment 
    android:id="@+id/car_fragment"
    android:name="in.cars.demo.CarsList"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"/>

<fragment 
    android:id="@+id/car_fragment"
    android:name="in.cars.demo.CarsList"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>

答案 2 :(得分:0)

<?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/white"
    android:clickable="true"
    android:orientation="vertical">

尝试为有问题的片段设置彩色背景。通过这种方式,背景覆盖了整个空间。