boxedEdges在WearableRecyclerView中裁剪我的物品

时间:2019-03-26 19:48:13

标签: android xml android-layout wear-os

这是在没有app:boxedEdges="true"的情况下显示数据的方式:

enter image description here

当我尝试设置app:boxedEdges="true"以将我的视图正确放置在圆形屏幕上时(如开发人员文档所建议),会导致视图裁剪:

enter image description here

这是我的xml文件:

acitivity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.wear.widget.BoxInsetLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/dark_grey"
    android:padding="@dimen/box_inset_layout_padding"
    tools:context="com.appw.testwatchapp.MainActivity"
    tools:deviceIds="wear">

    <android.support.wear.widget.WearableRecyclerView
        android:id="@+id/rv_flights"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scrollbars="vertical" />

</android.support.wear.widget.BoxInsetLayout>

item.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.wear.widget.BoxInsetLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        app:boxedEdges="all">

        <TextView
            android:id="@+id/title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:fontFamily="sans-serif-medium"
            android:textSize="14sp" />

        <TextView
            android:id="@+id/info"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:fontFamily="sans-serif-condensed"
            android:textSize="14sp" />
    </LinearLayout>


</android.support.wear.widget.BoxInsetLayout>

我在MainActivity中设置布局管理器,如下所示:

rvTest.setLayoutManager(new LinearLayoutManager(this));

您知道我该如何解决吗?

0 个答案:

没有答案