我是新的android開發人員,我試圖將文本視圖轉換或截圖成圖像,最近我發現了這個問題的代碼片段代碼,它可以正常工作當文本非常小時,就像一行一行,文本大小一樣的文本,但如果文本大小超過一行或文本大小較大,則文本會以一行壓縮文本,文本的大小變得非常小。 這裏是java代碼。如何將textview轉換爲精確大小的圖像,如屏幕截圖
public class MainActivity extends AppCompatActivity {
ImageView bmImage;
TextView view;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
view = (TextView) findViewById(R.id.screen);
bmImage = (ImageView)findViewById(R.id.image);
view.setDrawingCacheEnabled(true);
view.measure(View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED),
View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED));
view.layout(0, 0, view.getMeasuredWidth(), view.getMeasuredHeight());
view.buildDrawingCache(true);
Bitmap b = Bitmap.createBitmap(view.getDrawingCache());
view.setDrawingCacheEnabled(false);
bmImage.setImageBitmap(b);
bmImage.setBackgroundColor(Color.GRAY);
}}
這裏是xml代碼。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.jarad.c_to_i.MainActivity">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/screen"
android:textSize="20dp"
android:text="My name is Mo7mdech I am 30 years old, please help my in this problemَ"
/>
<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</LinearLayout>
請幫忙,謝謝。
保存屏幕比作物借你的TextView的座標的形象?我知道它不是答案,但我相信這會起作用 –
我想過它,但我想通過我的代碼來解決它,因爲我確信我錯過了某些東西。 – Mo7mdech