我正在使用SurfaceView
开发一个Android绘图应用程序(更具体地说,它是一个扩展SurfaceView
的类)。我已经在这个论坛上看到了很多话题,但我没有得到答案。
我的活动基本上是FrameLayout
,其中包含我的所有观看次数。我想将SurfaceView
设置在FrameLayout
的最低级别,以便查看上部元素(按钮,片段等)。我也想设置我SurfaceView
的背景,但是我遇到了问题。
我首先尝试设置SurfaceView
本身的背景,然后才有效。不幸的是,我的绘画内容(画布和位图)被这个背景重载,所以我尝试了第二个解决方案。我将可绘制的背景应用于FrameLayout
,并使用SurfaceView
将setZOrderOnTop
背景设置为透明。我的SurfaceView
确实是透明的,但我的绘画内容高于我的按钮和碎片。
所以我的第一个问题是:为什么我们需要setZOrderOnTop
才能获得透明背景?那么,我如何设置一个简单的可绘制背景,保持我的结构层次结构?
谢谢你的答案!
XML视图:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/mainFrame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/repeat_background"
tools:context=".MyActivity">
<!-- Option menu -->
<fragment ... />
<Button ... />
<Button ... />
<Button ... />
...
</FrameLayout>
@绘制/ repeat_background
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/drawing_font_texture"
android:tileMode="repeat" />
MyActivity
@Override
protected void onCreate(Bundle p_savedInstanceState) {
super.onCreate(p_savedInstanceState);
setContentView(R.layout.main_controller_activity);
// Getting my FrameLayout
FrameLayout mainFrame = (FrameLayout) findViewById(R.id.mainFrame);
// Instantiating my SurfaceView
this.drawableView = new MCustomDrawableView(getApplicationContext());
// Don't works
//setZOrderMediaOverlay(true);
this.drawableView.setZOrderOnTop(true);
this.drawableView.getHolder().setFormat(PixelFormat.TRANSLUCENT);
FrameLayout.LayoutParams style = new FrameLayout.LayoutParams(FrameLayout.LayoutParams.MATCH_PARENT,
FrameLayout.LayoutParams.MATCH_PARENT);
// Add the SurfaceView to the FrameLayout, on lowest position
mainFrame.addView(this.drawableView, 0, style);
}
答案 0 :(得分:1)
我认为您的解决方案是正确的。将背景设置为framelayout或在surfaceview的surfaceview下添加另一个布局。然后增加surfaceview的z索引和应该在surfaceview上的按钮/元素的z索引,否则它们在它下面。 如果使用材质设计,还可以在dp中设置高程以获得漂亮的阴影。