6

次のチュートリアル https://developer.android.com/training/wearables/ui/cards.htmlを参照して、Android Wearのサンプルカードを正常に作成しました

しかし、私のサンプル カードは、下にスワイプしても最小化されません。

これは私が得ている出力です

右スワイプのみが機能します(カードを閉じるため)

こんなものが欲しい

Wear アプリ実行の通常段階

下にスワイプすると、カードはこのように最小化されます 最小化された状態

ウェアラブルで動作するメディアプレーヤーアプリのように!

誰でもこれで私を助けることができますか?ウェアラブルの開発を学び始めたばかりです。

これが私のコードです

package com.example.cardsample;

import android.app.Activity;
import android.os.Bundle;
import android.support.wearable.view.CardScrollView;
import android.view.Gravity;
import android.view.Menu;
import android.view.MenuItem;

public class MainActivity extends Activity {

    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.rect);

          CardScrollView cardScrollView = (CardScrollView)
          findViewById(R.id.card_scroll_view);
          cardScrollView.setCardGravity(Gravity.BOTTOM);

    }




}

rect.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:background="@drawable/ic_full_sad"
android:layout_height="match_parent"
android:layout_width="match_parent">

    <android.support.wearable.view.CardScrollView
        android:id="@+id/card_scroll_view"
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        app:layout_box="bottom">

        <android.support.wearable.view.CardFrame
            android:layout_height="wrap_content"
            android:layout_width="fill_parent">

            <LinearLayout
                android:layout_height="wrap_content"
                android:layout_width="match_parent"
                android:orientation="vertical"
                android:paddingLeft="5dp">
                <TextView
                    android:fontFamily="sans-serif-light"
                    android:layout_height="wrap_content"
                    android:layout_width="match_parent"
                    android:text="Heading"
                    android:textColor="@color/black"
                    android:textSize="20sp"/>
                <TextView
                    android:fontFamily="sans-serif-light"
                    android:layout_height="wrap_content"
                    android:layout_width="match_parent"
                    android:text="description"
                    android:textColor="@color/black"
                    android:textSize="14sp"/>
            </LinearLayout>
        </android.support.wearable.view.CardFrame>
    </android.support.wearable.view.CardScrollView>
</android.support.wearable.view.BoxInsetLayout>
4

1 に答える 1

2

あなたが探しているのは通知だと思います: https://developer.android.com/training/wearables/notifications/creating.html

最小化すると通知にタイトルが表示され、上にスワイプすると全文またはカスタム レイアウト ( https://developer.android.com/training/wearables/apps/layouts.html ) が表示されます。

于 2015-02-14T17:07:55.993 に答える