Comment convertir des points de Vue des bitmaps?

J'ai deux points de Vue (Textview & ImageView) dans le FrameLayout, je veux enregistrer l'image avec le texte. Pour cela, je secrètes, à la Vue d'une image bitmap.

Mon xml est:

<FrameLayout 
     android:id="@+id/framelayout"
     android:layout_marginTop="30dip"
     android:layout_height="fill_parent" 
     android:layout_width="fill_parent">

     <ImageView 
          android:id="@+id/ImageView01"
          android:layout_height="wrap_content" 
          android:layout_width="wrap_content"/>

    <TextView android:id="@+id/text_view"
          android:layout_marginTop="30dip"
          android:layout_width="wrap_content" 
          android:maxLines="20"
          android:scrollbars="vertical"
          android:layout_height="wrap_content"/>

</FrameLayout>