我在android studio v1.2.2中创建了示例android Wear Activity 项目。我删除了WatchViewStub,并使用this example与BoxInsetLayout创建 Activity 。但是BoxInsetLayout在圆形设备上无法正常工作。我在moto 360 android 5.1.1上进行了测试,然后在moto 360 5.0.1版上进行了更新。我在模拟器上对此进行了测试。而且它根本不起作用。所有的时间我都看到:

但一定是这个

我的代码如下:

activity_main.xml

<android.support.wearable.view.BoxInsetLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:padding="15dp">

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:padding="5dp"
        android:background="@color/red"
        app:layout_box="all">

        <TextView
            android:gravity="center"
            android:layout_height="wrap_content"
            android:layout_width="match_parent"
            android:text="Hello Android Wear"
            android:textColor="@color/black" />

        <ImageButton
            android:background="@drawable/selector_btn_ok"
            android:layout_gravity="bottom|start"
            android:layout_height="50dp"
            android:layout_width="50dp" />

        <ImageButton
            android:background="@drawable/selector_btn_cancel"
            android:layout_gravity="bottom|end"
            android:layout_height="50dp"
            android:layout_width="50dp" />
    </FrameLayout>
</android.support.wearable.view.BoxInsetLayout>

为什么不起作用?我在哪里弄错了?以及如何在带有“圆屏”的设备上正确使用BoxInsetLayout?

最佳答案

错误在于您指定的activity_main.xml中:

android:padding="15dp"

如果删除它,则它应该起作用。 BoxInsetLayout在实现中使用填充,并且您更改了该值,该值给出了您观察到的错误输出。

(编辑)
重要的是要注意BoxInsetLayout会同时调整填充以及自身的 subview 。因此,请确保您不更改填充值,否则会损坏。如果您想对填充进行更多控制,则可以尝试嵌入第二个FrameLayout。

关于android - BoxInsetLayout不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31208891/

10-09 02:05