0
<LinearLayout
        android:id="@+id/screenshotlayout"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="#ffffff"
        android:layout_weight="4"
        android:orientation="vertical" >

        <GridView
            android:id="@+id/gridview"
            android:background="#ffffff"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:columnWidth="320dp"
            android:gravity="center"
            android:numColumns="1"
            android:verticalSpacing="5dp" />

        <TextView
            android:id="@+id/editText3"
            android:background="@color/DarkGrey"
            android:layout_width="fill_parent"
            android:layout_height="40dp"
            android:layout_gravity="center_horizontal"
            android:gravity="bottom"
            android:text="TextView LinearLayout"
            android:textSize="20dp"
            android:textStyle="bold" >

            <requestFocus />
        </TextView>

    </LinearLayout>

这是我的布局。Gridview 的工作方式类似于垂直滚动条。我正在向该 Gridview 动态添加位图。网格大小可能会有所不同。

4

1 回答 1

0

这是您如何获得布局的位图屏幕截图:

  1. 在您的布局中添加一个 ID(我的称为“屏幕”):
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:id="@+id/screen"
   android:layout_width="match_parent"
   android:layout_height="match_parent" >

   <!--//add your buttons, texts, other layouts, etc here-->

</LinearLayout>
  1. 这是您以编程方式捕获屏幕截图的方式:

查看屏幕 = screen = (View) findViewById(R.id.screen);
查看 rootview = screen.getRootView();
rootview.setDrawingCacheEnabled(true);

位图 bitmap = rootview.getDrawingCache();

这对我有用。您可以在 ImageView 上使用方法 .setImageBitmap(bitmap) 来显示屏幕截图。

于 2013-08-29T09:57:12.763 回答