将任何布局元素放在Sony SmartEyeGlass的中线上方

时间:2015-09-04 18:10:02

标签: sony sony-smarteyeglass

我是Android开发/ SmartEyeGlass SDK的新手,我想知道是否可以在屏幕中线上方放置任何内容(文本,图像等)。当我在我的layout.xml中放置<ImageView>并将其加载到我的模拟器中时,图像的顶部边框位于屏幕的中心。如果可能,我们非常感谢任何建议。

Layout.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="@dimen/smarteyeglass_control_width"
    android:layout_height="@dimen/smarteyeglass_control_height"
    android:background="@android:color/black"
    android:orientation="vertical"
    android:weightSum="2"
    tools:ignore="ContentDescription,PxUsage" >

    <ImageView 
        android:id="@+id/test_image"
        android:src="@drawable/test"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal" />

</LinearLayout>

1 个答案:

答案 0 :(得分:0)

你应该可以在中线上方画画。尝试添加layout_alignParentLeft和layout_alignParentTop,如下所示:

<ImageView
    android:id="@+id/image"
    android:layout_width="48px"
    android:layout_height="48px"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:layout_margin="6px"
    android:background="@drawable/shape"
    android:src="@drawable/icon_extension48" />