我有一个活动当前设置,在表面视图中有一个相机预览设置。我希望实现一个类似于这样滚动的卡视图:https://developers.google.com/glass/develop/gdk/ui-widgets
卡片将显示所看图像的相关信息。有没有人知道如何实现卡片滚动的概念,使其占据屏幕的右上角?
CardScrollView
是一个基本的Android视图,它可以在xml布局文件中使用。我还没有试过你问的,但我已经设法在CardScrollView
上放了一个覆盖,所以把它变小,把它放在角落里也是可能的。
我现在不能测试它,但是试试下面的布局:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<SurfaceView
android:id="@+id/surface_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<com.google.android.glass.widget.CardScrollView
android:id="@+id/card_scroll_view"
android:layout_width="120px"
android:layout_height="90px"
android:layout_gravity="top|right"
android:layout_marginTop="5px"
android:layout_marginRight="5px" />
</FrameLayout>
你可以在这里找到更多关于FrameLayout
的信息: