我有一个包含文字“大文字”的文字视图。我想将它转换为高度和宽度都是文本视图的图像视图。图像应该像文本视图一样显示,即如果文本是“欢迎使用android”,图像视图也应该以相同的方式显示喜欢单击转换按钮的文本视图。请帮助我。我的xml文件是
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/relative" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="30dp"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textView1"
android:layout_centerHorizontal="true"
android:layout_marginTop="96dp"
/>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/imageView1"
android:layout_centerHorizontal="true"
android:layout_marginTop="99dp"
android:text="Convert" />
</RelativeLayout>
答案 0 :(得分:0)
你可以使用。 位图bmp = view.getDrawingCache(); ImageView.setImageBitmap(BMP);