我有ImageView& RelativeLayout中的TextView。现在我将Text放在该位图(ImageView)上?

时间:2015-03-11 03:56:27

标签: android bitmap

  

之后我想用文本&捕捉所有编辑过的属性。存储为位图

     

我该怎么办...... ???

2 个答案:

答案 0 :(得分:1)

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

<ImageView
    android:id="@+id/imageView1"
    android:layout_width="500dp"
    android:layout_height="500dp"
    android:layout_alignParentRight="true"
    android:layout_centerVertical="true"
    android:src="@android:drawable/sym_def_app_icon" />

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBottom="@+id/imageView1"
    android:layout_centerHorizontal="true"
    android:layout_marginBottom="17dp"
    android:text="Enter Your Text Here" />

</RelativeLayout>

答案 1 :(得分:1)

yourRelativeLayout.setDrawingCacheEnabled(true);
yourRelativeLayout.buildDrawingCache();
Bitmap bm = yourRelativeLayout.getDrawingCache();

这样您就可以创建所需视图的位图。