使用4.4以下的Vuforia版本时,工具栏会消失

时间:2015-09-30 15:59:17

标签: android vuforia drawerlayout

我正在使用SDK Vuforia并在工具栏下面的4.4版设备上进行测试消失,菜单按钮在那里但不可见,正确的按钮是可见的。 带有recyclerview的drawerlayout按钮我使用侧面菜单在4.4以下的版本中不起作用,其图标消失。通过很多努力可以滑动以激活侧面菜单。上面显示了此版本的菜单功能和按钮。 以下图像并更正问题和xml布局。

enter image description here

enter image description here

camera_overlay.xml

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:layout_centerInParent="true">

    <ImageView
        android:id="@+id/ivLoading"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@anim/loading"/>

    <TextView
        android:id="@+id/tvLoading"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/loading"
        android:textSize="23sp"
        android:textStyle="bold"
        android:textColor="@color/primary_dark"
        android:gravity="center_horizontal"
        android:layout_marginTop="43dp" />

</LinearLayout>

</RelativeLayout>

toolbar.xml

<?xml version="1.0" encoding="utf-8"?> <android.support.v7.widget.Toolbar
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:minHeight="?attr/actionBarSize"
    android:background="?attr/colorPrimary"
    android:fitsSystemWindows="true"
    android:elevation="4dp"
    app:theme="@style/CustomActionBar"/>

main_activity.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/DrawerLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    android:elevation="7dp">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <include
            android:id="@+id/toolbar"
            layout="@layout/toolbar">
        </include>

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

    </LinearLayout>

    <RelativeLayout
        android:layout_width="320dp"
        android:layout_height="match_parent"
        android:layout_gravity="start">

        <android.support.v7.widget.RecyclerView
            android:id="@+id/RecyclerView"
            android:layout_width="320dp"
            android:layout_height="fill_parent"
            android:layout_gravity="left"
            android:fitsSystemWindows="true"
            android:background="@color/primary"
            android:scrollbars="vertical">

        </android.support.v7.widget.RecyclerView>

        <LinearLayout
            android:id="@+id/footer_menu"
            android:layout_width="320dp"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:orientation="horizontal" >

            <ImageView
                android:id="@+id/ivFooter"
                android:layout_width="wrap_content"
                android:layout_height="35dp"
                android:layout_gravity="bottom|center"
                android:layout_margin="5dp"/>

        </LinearLayout>

    </RelativeLayout>

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

2015年10月16日编辑

我在Vuforia forum打了一个电话,看看有人可以帮助我...... Inclusive有一个测试项目来帮助解决问题的位置。

1 个答案:

答案 0 :(得分:0)

作为this链接,找到了解决方案。问题是组织屏幕上的对象。使用以下代码可以播放在预览相机前消失的元素。