片段未覆盖整个屏幕

问题描述 投票:0回答:4

请帮忙 当我运行 ListFragment 活动并单击一个片段(别克或马自达)时,我单击的片段的布局应该替换并覆盖整个屏幕,但 包含汽车列表的容器保留在屏幕上,我的片段布局显示在其下方。如何让我的片段布局替换整个屏幕?

我无法发布显示屏幕的 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);
    }
}

片段2

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>
android
4个回答
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
。请参阅此问题了解更多信息。

编辑:

您必须更改片段的容器。带有标签的片段集将是静态的。除了这个容器之外,每个片段都会被设置。要采用动态方法,请使用 FrameLayout。现在您可以替换之前的片段了。

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

要显示您的 CarsList,您必须在 Activity 中执行 Fragment 交易。

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

2
投票
<?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">

尝试为您的片段设置彩色背景。这样背景就覆盖了整个空间。


0
投票

有点晚了,但也许我会帮助别人。问题出在您的 Activity 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"/>

0
投票

<androidx.constraintlayout.widget.ConstraintLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/grey_background"
    tools:context=".ui.home.HomeFragment">
如果不选择背景设置为透明。当我在 rootview 上编写 android:background 时,我的错误已修复。

© www.soinside.com 2019 - 2024. All rights reserved.