gpt4 book ai didi

android - addContentView 到 GLSurfaceView 的问题

转载 作者:行者123 更新时间:2023-11-29 22:30:59 24 4
gpt4 key购买 nike

我正在尝试在我的 opengl View 上添加一个由 xml 定义的新 LinearLayout。

我使用纯 java 来实现:

public class VortexView extends GLSurfaceView {
public boolean onTouchEvent(final MotionEvent event) {
show_something();
}

void show_something()
{
//context is the main activity object that gets passed into this
LinearLayout ll = new LinearLayout(context);
b = new Button(context);
b.setText("hello world 1");
ll.addView(b);
ll.setGravity(Gravity.CENTER_HORIZONTAL | Gravity.CENTER_VERTICAL);
context.addContentView(ll, new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
}
}

但是我希望能够做到这一点:

LinearLayout ll = (LinearLayout)findViewById(R.layout.main);
context.addContentView(ll, new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));

我的 xml 是:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10dp"
android:text="kill"
/>
</LinearLayout>

虽然应用程序崩溃了,但我每次都这样做。有什么想法吗?

最佳答案

你有没有可能把那里弄得一团糟?让我们以不同的方式尝试一下,在后台创建一个 GLSurfaceView,并在其上添加 LinearLayout

main.xml 文件:

    <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/relativeLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<path.to.vortex.VortexView
android:id="@+id/vortexView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" >
</path.to.vortex.VortexView>

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

在您的 VortexView 类中添加构造函数和初始化

  public class VortexView extends GLSurfaceView {

public VortexView (Context context)
{
super(context);
init(context);
}

public VortexView (Context context, AttributeSet atts)
{
super(context, atts);
init(context);
}

public VortexView (Context context, AttributeSet atts, int defStyle)
{
super(context, atts, defStyle);
init(context);
}

public void init(context)
{
//do whatever you need to init your view here...
}
}

在您的 Activity 中,您需要在 main.xml 上setContentView():

public class VortexActivity extends Activity
{
Context mContext;
VortexView mVortexView;
RelativeLayout relativeLayout;

@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
mContext = getApplicationContext();
setContentView(R.layout.main);

mVortexView = (VortexView) findViewById(R.id.vortexView);
mRelativeLayout = (RelativeLayout) findViewById(R.id.relativeLayout);
}
}

现在您可以随心所欲地使用您的布局,并且由于 VortexView 是在 LinearLayout 之前在 xml 中声明的,它将位于它的背景中。

关于android - addContentView 到 GLSurfaceView 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4059768/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com