如何制作和添加Imagebutton叠加表面视图?

时间:2015-12-19 19:56:31

标签: java android

我一直试图在表面视图上添加一个图像按钮,但我不知道如何帮助我,但我的表面视图下面的对不起,但它有点大。我正在寻找制作图像按钮的方法,然后将其显示在表面视图的顶部

Future[Option[...]]

1 个答案:

答案 0 :(得分:0)

只需将按钮添加到父版面,即添加了surfaceview。

像这样的Smth

   <FrameLayout 
      xmlns:android="http://schemas.android.com/apk/res/android"
      layout_width="match_parent"
      layout_height="match_parent">

   <yourpackage.GamePanel 
       layout_width="match_parent"
      layout_height="match_parent" />

   <ImageButton
       layout_width="wrap_content"
      layout_height="wrap_content" />

  </FrameLayout>

或通过代码。不要忘记在 surfaceview之后放置叠加视图以避免重叠。