我正在尝试索尼智能手表 2 的索尼附加 SDK 2.0。我将开发一些 Messageviewer。就像现有的 gmail 应用程序一样。它应该显示一个带有消息(简单文本、主题)的列表,并且通过选择任何项目应该显示带有标题和文本的内容查看器。
我创建了示例项目“SampleAdvancedControlExtension”,这几乎就是我想要的。我尝试使用以下布局创建一个新的“ContentView”控件。问题是,文本不可滚动,我看不到任何使文本可滚动的可能性。如果我正确理解 EXTRA_DATA_XML_LAYOUT,则不支持 ScrollView。但不知何故,GMail 应用程序可以滚动电子邮件的内容。他们怎么能这样做?
感谢您的任何建议
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="@dimen/smart_watch_2_control_width"
android:layout_height="@dimen/smart_watch_2_control_height"
tools:ignore="PxUsage,UselessParent,HardcodedText" >
<RelativeLayout
android:id="@+id/header"
android:layout_width="fill_parent"
android:layout_height="28px"
android:layout_alignParentTop="true"
android:background="@android:color/black" >
<TextView
android:id="@+id/header_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:paddingLeft="6px"
android:text="Это заголовок"
android:textColor="@android:color/white"
android:textSize="@dimen/smart_watch_2_text_size_medium"
android:textStyle="bold" />
</RelativeLayout>
<View
android:id="@+id/divider"
android:layout_width="fill_parent"
android:layout_height="1dp"
android:layout_below="@+id/header"
android:background="@android:color/white" />
<RelativeLayout
android:id="@+id/content"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_below="@+id/divider"
android:background="@android:color/black" >
<TextView
android:id="@+id/content_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:maxLines="5"
android:paddingLeft="6px"
android:text="Тут будет текст"
android:textColor="@android:color/white"
android:textSize="@dimen/smart_watch_2_text_size_medium"
android:textStyle="bold" />
</RelativeLayout>
</RelativeLayout>