Запись видео для конкретного макета в Android

Как я могу записать видео в Android для определенного макета в деятельности? У меня есть действие, которое имеет линейное расположение и содержит текстовое представление с некоторыми анимациями, и я хочу записать видео проигранных анимаций, так есть ли какой-нибудь способ в Android?

<LinearLayout 
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="0.8"
        android:gravity="center">

        <TextView
            android:id="@+id/tvLabel"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center"
            android:text="Animation will be in this textview"
            android:textAppearance="?android:textAppearanceLarge"
            android:textColor="@android:color/black" />

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="0.2"
        android:background="@color/color_background"
        android:gravity="center"
        android:orientation="horizontal">

        <android.support.v7.widget.AppCompatButton
            android:id="@+id/btnPlayAnim"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Play Animation" />

        <android.support.v7.widget.AppCompatButton
            android:id="@+id/btnStopAnim"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Stop Animation" />

        <android.support.v7.widget.AppCompatButton
            android:id="@+id/btnMakeVideo"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Start Recording" />

    </LinearLayout>

</LinearLayout>

0 ответов

Другие вопросы по тегам