索尼SmartWatch - 在画廊上展示一个视图

时间:2013-10-14 23:53:16

标签: android sony sony-smartwatch

在玩画廊时我还有另一个问题(这可能应该更简单)。

我正试图展示一个位于画廊前面的视图,可能部分隐藏它。就像一个消息对话框(Toast)。

为了做到这一点,我在后面使用带有Gallery的FrameLayout,在前面使用带有透明src的ImageView。当应该显示一个对话框时,我通过“sendImage”将src设置为所需的drawable。

问题是,正如我所假设的那样,库/列表项(在“onRequestListItem - > sendListItem”上动态添加)具有更新的z-Order(因为它们稍后已添加),所以对话框是显示在Gallery的背景和透明图标之间,代表列表项。

也许有人会有一个想法,如何避免这种情况?

我不知道有任何方法可以手动将视图添加到SmartWatch上的布局,或通过“bringToFront”更改其zOrder。

以下是源代码:

gallery.xml

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <Gallery
        android:id="@+id/gallery"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <ImageView
    android:id="@+id/toast"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:src="@drawable/toast_dialog_message" />

</FrameLayout>

gallery_item.xml

<?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" >

    <ImageView
    android:id="@+id/item_icon"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="20px"
    android:src="@drawable/item_icon" />

</RelativeLayout>

GalleryControlExtension.java

sendImage(R.id.spritz_image, drawableResourceId);

P.S。在模拟器中它按预期工作:toast位于item_icon ...

之上

0 个答案:

没有答案