这是在没有app:boxedEdges="true"
的情况下显示数据的方式:
当我尝试设置app:boxedEdges="true"
以将我的视图正确放置在圆形屏幕上时(如开发人员文档所建议),会导致视图裁剪:
这是我的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));
您知道我该如何解决吗?