I want to know how to capture phone screen programmatically. I just googled and got to know that I have to use view.getDrawingCache(). But getDrawingCache() always returns null.
My xml layout is
<?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 file::
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);
}
Can someone please correct me where I am going wrong?