我在我的项目中使用CardScrollView和CardFrame,但是CardScrollView不能滚动,这是我的代码,有什么建议吗?
cardScrollViewActivity.java

public class CardScrollViewActivity extends Activity {

    private CardFrame cardFrame;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.card_scroll_view);
        cardFrame=(CardFrame)findViewById(R.id.card_frame);
        cardFrame.setExpansionDirection(CardFrame.EXPAND_UP);
        cardFrame.setExpansionEnabled(true);
        cardFrame.setExpansionFactor(CardFrame.NO_EXPANSION);
    }
}

卡片滚动视图.xml
<android.support.wearable.view.CardScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <android.support.wearable.view.CardFrame
        android:id="@+id/card_frame"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:padding="5dp"
                android:text="TestTextView\nTestTextView\nTestTextView\nTestTextView\nTestTextView\nTestTextView\nTestTextView\nTestTextView"/>
    </android.support.wearable.view.CardFrame>
</android.support.wearable.view.CardScrollView>

最佳答案

CardScrollView似乎不像ScrollView那样工作。
你可以用滚动视图来包装卡片框架。

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <android.support.wearable.view.CardFrame
            android:id="@+id/cardFrame"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <TextView
                android:id="@+id/textView"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />

        </android.support.wearable.view.CardFrame>

    </FrameLayout>

</ScrollView>

10-08 14:09