- 1、本文档共6页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
由于Wearable UI库从1.1版本开始发生了些改变,删除了部分接口、类和方法,并改变了实现方式,请先确认你的Wearable UI库的版本再查看对应的文档。
列表可以让用户在一系列选项中选择某一项。Wearable UI库包含WearableListView 类,是专为穿戴设备优化的实现类。
创建列表的步骤:
在你activity的布局中添加WearableListView 元素
创建一个自定义布局来实现你的list item
创建一个adapter装载进这个listview
添加一个listview
android.support.wearable.view.BoxInsetLayout
xmlns:android=/apk/res/android
xmlns:app=/apk/res-auto
android:background=@drawable/robot_background
android:layout_height=match_parent
android:layout_width=match_parent
FrameLayout
android:id=@+id/frame_layout
android:layout_height=match_parent
android:layout_width=match_parent
app:layout_box=left|bottom|right
android.support.wearable.view.WearableListView
android:id=@+id/wearable_list
android:layout_height=match_parent
android:layout_width=match_parent
/android.support.wearable.view.WearableListView
/FrameLayout
/android.support.wearable.view.BoxInsetLayout
创建listItem布局
很多情况下,每个listItem都包含一个标题和一个图标。
下面这个布局实现了WearableListView.Item接口,并能在列表滚动的时候,让标题和图标带动画效果。
public class WearableListItemLayout extends LinearLayout
implements WearableListView.Item {
private final float mFadedTextAlpha;
private final int mFadedCircleColor;
private final int mChosenCircleColor;
private ImageView mCircle;
private float mScale;
private TextView mName;
public WearableListItemLayout(Context context) {
this(context, null);
}
public WearableListItemLayout(Context context, AttributeSet attrs) {
this(context, attrs, 0);
}
public WearableListItemLayout(Context context, AttributeSet attrs,
int defStyle) {
super(context, attrs, defStyle);
mFadedTextAlpha = getResources()
.getInteger(R.integer.action_text_faded_alpha) / 100f;
mFadedCircleColor = getResources().getColor(R.color.grey);
mChosenCircleColor = getResources().getColor(R.color.blue);
}
// Get references to the icon and text in the item layout definition
@Override
protected void onFinishInflate() {
super.onFinishInflate();
// These are defined in the layout file for list items
// (see next section)
mCircle = (ImageView) findViewById(R.id.ci
文档评论(0)