我想知道如何以编程方式捕获手机屏幕。我只是用谷歌搜索并知道我必须使用 view.getDrawingCache()。但是 getDrawingCache() 总是返回 null。
我的 xml 布局是
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/screenlayout">
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/screen"
/>
</LinearLayout>
.java 文件::
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
View vScreen = findViewById(R.id.screenlayout);
ImageView imageview = (ImageView)findViewById(R.id.screen);
Bitmap bitmap;
View v1 = vScreen.getRootView();
v1.setDrawingCacheEnabled(true);
bitmap = Bitmap.createBitmap(v1.getDrawingCache()); //getting null here
v1.setDrawingCacheEnabled(false)
imageview.setImageBitmap(bitmap);
}
有人可以纠正我哪里出错了吗?