与我的主抽屉重叠的片段 [英] listfragment overlapping my main drawer

查看:97
本文介绍了与我的主抽屉重叠的片段的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在android中新建了即时消息,我正在创建一个应用程序,并且我遇到了一个listfragment问题,因为该列表的显示方式与标题栏重叠(我必须添加页边空白来更改),并且还使用了抽屉和当我尝试打开列表时,它也显示在选项抽屉上,让我粘贴代码和图像,以便您了解更多信息:

im new in android im creating an app and i have a problem with a listfragment, because the list its showing but its overlapping the title bar(i had to add margin top to change that), and also im using a drawer and when im trying to open the list it shows over the options drawer too, letme paste you the code and the image so you can understan more:

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:weightSum="1">

    <ListView
        android:layout_width="match_parent"
        android:layout_height="420dp"
        android:id="@android:id/list"
        android:layout_weight="0.82"
        android:layout_marginTop="60dp" />
</LinearLayout>

listFregment代码:

The listFregment code:

  public class FragmentoPrincipalChofer extends ListFragment {
    private List<ParseObject> mViaje;
    private ListView mLista;

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



        View x = inflater.inflate(R.layout.fragmento_principal_chofer, container, false);
        mLista = (ListView)x.findViewById(android.R.id.list);
        return x;

    }

    @Override
    public void onResume() {
        super.onResume();

        //obtener pedido de taxi
       ParseQuery<ParseObject> query = ParseQuery.getQuery("Viaje");
        query.whereEqualTo("chofer", "prueba3");
        query.addDescendingOrder("createdAt");
        query.findInBackground(new FindCallback<ParseObject>() {
            public void done(List<ParseObject> viajes, com.parse.ParseException e) {
                if (e == null) {
                    mViaje=viajes;
                    String[] nombreUsuarios = new String[mViaje.size()];
                    int i=0;
                    for (ParseObject viaje : mViaje){

                        nombreUsuarios[i] = viaje.getString("cliente");
                        i++;
                    }

                   ArrayAdapter<String> adaptador = new ArrayAdapter<String>(getListView().getContext(),android.R.layout.simple_list_item_1,nombreUsuarios);
                  mLista.setAdapter(adaptador);


                } else {

                }
            }
        });

    }
}

主抽屉代码:

public class DrawerPrincipal extends AppCompatActivity
        implements NavigationView.OnNavigationItemSelectedListener,FragmentoPrincipalUsuario.OnFragmentInteractionListener {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_drawer_principal);
        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);

        //cargar fragment principal usuario

        FragmentoPrincipalChofer fragmento=(FragmentoPrincipalChofer) getSupportFragmentManager().findFragmentByTag("fragmento");
        if (fragmento==null){
            fragmento=new FragmentoPrincipalChofer();
            android.support.v4.app.FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
            transaction.add(android.R.id.content,fragmento,"fragmento");
            transaction.commit();

        }
        /*
        FragmentoPrincipalUsuario principal = new FragmentoPrincipalUsuario();
        android.support.v4.app.FragmentTransaction FragmentTransaction =
                getSupportFragmentManager().beginTransaction();
        FragmentTransaction.replace(R.id.contenedor_principal,principal);
        FragmentTransaction.commit();
        */

        DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
        ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
                this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
        drawer.setDrawerListener(toggle);
        toggle.syncState();

        NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
        navigationView.setNavigationItemSelectedListener(this);
    }

    @Override
    public void onBackPressed() {
        DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
        if (drawer.isDrawerOpen(GravityCompat.START)) {
            drawer.closeDrawer(GravityCompat.START);
        } else {
            super.onBackPressed();
        }
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.pantalla_principal_usuario, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();

        //noinspection SimplifiableIfStatement
        if (id == R.id.action_settings) {
            return true;
        }

        return super.onOptionsItemSelected(item);
    }

    @SuppressWarnings("StatementWithEmptyBody")
    @Override
    public boolean onNavigationItemSelected(MenuItem item) {
        // Handle navigation view item clicks here.
        int id = item.getItemId();

        if (id == R.id.cuenta) {
            // Handle the camera action
        } else if (id == R.id.historial_viajes) {

        } else if (id == R.id.contacto) {

        } else if (id == R.id.compartir) {

        } else if (id == R.id.version) {

        } else if (id == R.id.salir) {

        }

        DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
        drawer.closeDrawer(GravityCompat.START);
        return true;
    }

    @Override
    public void onFragmentInteraction(Uri uri) {

    }
}

列表片段重叠

此处是activity_drawer_principal.xml:

here its the activity_drawer_principal.xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout 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:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:openDrawer="start">

    <include
        layout="@layout/app_bar_drawer_principal"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <android.support.design.widget.NavigationView
        android:id="@+id/nav_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:fitsSystemWindows="true"
        app:headerLayout="@layout/nav_header_drawer_principal"
        app:menu="@menu/activity_pantalla_principal_usuario_drawer" />

</android.support.v4.widget.DrawerLayout>

此处是app_bar_drawer_principal:

here its the app_bar_drawer_principal:

<?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"
    tools:context=".DrawerPrincipal">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay"/>

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

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

    </FrameLayout>

    <include layout="@layout/content_drawer_principal" />

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

推荐答案

您的问题是您使用此行将列表片段设置为整个视图ID

your problem is your setting your list fragment to the whole view Id with this line

// android.R.id.content is the WHOLE screen of your Activity
transaction.add(android.R.id.content,fragmento,"fragmento");
transaction.commit();

在content_drawer_principal.xml中创建一个FrameLayout:

Create a FrameLayout in your content_drawer_principal.xml:

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

然后做:

transaction.add(R.id.list_content,fragmento,"fragmento");
transaction.commit();

更新

这里的真正问题是,您告诉FragmentTransaction将FragmentoPrincipalChofer加载到android.R.id.content中,这是一个保留ID

The real problem here is that your telling your FragmentTransaction to load your FragmentoPrincipalChofer into android.R.id.content which is a reserved id

android.R.id.content为您提供视图的根元素,而无需知道其实际名称/类型/ID.

android.R.id.content gives you the root element of a view, without having to know its actual name/type/ID.

这篇关于与我的主抽屉重叠的片段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆