3

我正在尝试创建一个使用动画缩小的 SurfaceView(包括它的黑色背景画布)。我已经搜索了多种方法,但看起来好像视图没有正确缩放或根本没有缩放。

这是布局:

<LinearLayout>
         <RelativeLayout
             android:id="@+id/gfxComponentContainer"
             android:layout_width="292dp"
             android:layout_height="260dp"
             android:background="@color/black" 
             android:gravity="center_horizontal">

             <SurfaceView
                  android:id="@+id/gfxComponent"
                  android:layout_width="fill_parent"
                  android:layout_height="fill_parent"
              />
          </RelativeLayout>
</LinearLayout>

任何帮助,将不胜感激!

4

1 回答 1

0

SurfaceHolder.setSizeFromLayout() 可能是您正在寻找的东西。http://developer.android.com/reference/android/view/SurfaceHolder.html#setSizeFromLayout()

于 2015-10-09T23:01:50.447 回答