这是我的协调员布局。一切都很好,我可以看到一切。
但是我看不到ImageView。在代码中我正确初始化ImageView并有一个对象。我需要在屏幕中心的图像视图。
如果我将ImageView更改为按钮,我会看到屏幕中央的按钮,但是如果我改为其他的东西,我就看不到那个元素了。
请问如何将ImageView添加到coordinatorLayout?
此代码位于coordinatorlayout。
谢谢。
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<ImageView
android:id="@+id/status_btn"
android:layout_width="150dp"
android:layout_height="150dp"
android:layout_gravity="center"
android:background="@color/red" />
<Button
android:id="@+id/delete_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Smazat"
android:visibility="gone" />
<include
layout="@layout/panel_camera_preview"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<!--height a width se nastavuje dynamicky-->
<LinearLayout
android:id="@+id/bottom_sheet"
android:layout_width="match_parent"
android:layout_height="0dp"
android:clipToPadding="true"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior">
<RelativeLayout
android:id="@+id/bottom_sheet_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:id="@+id/header_vg"
android:layout_width="match_parent"
android:layout_height="@dimen/vision_bottom_sheet_header_height"
android:layout_alignParentTop="true"
android:background="@color/gray_header_vision"
android:gravity="center">
<TextView
android:id="@+id/header_tv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:textColor="@color/white"
android:textSize="16sp" />
</LinearLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/vision_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/header_vg"
android:background="@color/white"
android:scrollbars="vertical"
android:visibility="gone" />
<include
android:id="@+id/empty_vg"
layout="@layout/panel_vision_tutorial"
android:layout_width="match_parent"
android:layout_height="@dimen/vision_bottom_sheet_item_height"
android:layout_below="@+id/header_vg" />
</RelativeLayout>
</LinearLayout>
</android.support.design.widget.CoordinatorLayout>
这是我的panel_camera_preview:
<my_package.CameraSourcePreview
android:id="@+id/camera_preview"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/darker_gray">
<my_package.GraphicOverlay
android:id="@+id/face_overlay"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</my_package.CameraSourcePreview>
答案 0 :(得分:0)
CoordinatorLayout是一个FrameLayout,因此最后一个View按顺序覆盖了之前的View。然后,Imageview结果不可见,因为它被 panel_camera_preview 覆盖,而Button结果可见,但只有在Lollipop或更高版本上运行时,才会导致其默认高程(2dp)。