带有TextView的GLSurfaceView - SetText

时间:2015-06-05 15:49:37

标签: android android-layout android-relativelayout

我已经查看了几个SO问题和几个教程。

我认为,我已经在上下文中跟踪了这个问题。该解决方案似乎可能正在编辑我的xml文件,但我发现的任何内容都无法解决我的问题。

在我使用onCreate的主要活动中,我尝试获取我唯一的文本视图对象的引用。这将返回一个空引用。 如何获取我手动放置的textview的有效参考? 我不知道我是否已正确添加此文本视图;我应该通过代码还是其他东西添加它?

以下是我的onCreate和XML。

protected void onCreate(Bundle savedInstanceState) {
        Log.i("[DEBUG]", "main activity - started");
        super.onCreate(savedInstanceState);
        s_textView = (TextView)findViewById(R.id.textView);
        m_GLView = new MyGLSurfaceView(this);
        setContentView(m_GLView);
        s_textView = (TextView)findViewById(R.id.textView);
        Log.i("[DEBUG]", "main activity - finished");
    }

我还尝试过以下行s_textView = (TextView)m_GLView.findViewById(R.id.textView);

activity_main.xml中

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
    android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">

    <merge>
        <com.example.a2_1039652.a2_cooper.MyGLSurfaceView />
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/textView"
            android:layout_centerVertical="true"
            android:layout_centerHorizontal="true"
            android:textSize="20dp" />
    </merge>
</RelativeLayout>

我只添加了此<com.example.a2_1039652.a2_cooper.MyGLSurfaceView />行,因为它是类似问题的解决方案。它似乎没有改变我的应用程序。

2 个答案:

答案 0 :(得分:0)

试试这个

 protected void onCreate(Bundle savedInstanceState) {
    Log.i("[DEBUG]", "main activity - started");
    super.onCreate(savedInstanceState);
    m_GLView = new MyGLSurfaceView(this);
    setContentView(m_GLView);
    RelativeLayout layout = (RelativeLayout)LayoutInflater.from(this).inflate(R.layout.activity_main,null);
    s_textView = (TextView) layout.findViewById(R.id.textView);
    Log.i("[DEBUG]", "main activity - finished");
}

答案 1 :(得分:0)

因此,经过几个小时的休息后,我能够找到正确的单词串,找到一个带有解决方案的SO问题。解决方案可以在这里找到的问题中找到:Drawing Android UI on top of GLSurfaceView

我不清楚我的问题 是否有答案。然而,对于最终结果,我需要一个文本视图,现在我有一个我可以设置文本。这就是我做到的。

我删除了手动放置的文本视图。以下是后续的activity_main.xml文件:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
    android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">
</RelativeLayout>

我不清楚需要多少配置数据。虽然我尽可能多地删除了可移动的东西。

接下来,在大多数情况下,我从其他SO问题中获取了代码行。这就是我对onCreate方法的要求。

protected void onCreate(Bundle savedInstanceState) {
        Log.i("[DEBUG]", "main activity - started");
        super.onCreate(savedInstanceState);
        m_GLView = new MyGLSurfaceView(this);
        rl = new RelativeLayout(this);
        rl.addView(m_GLView);
        tv = new TextView(this);
        RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
        lp.addRule(RelativeLayout.CENTER_HORIZONTAL);
        lp.addRule(RelativeLayout.CENTER_VERTICAL);
        tv.setLayoutParams(lp);

        tv.setBackgroundColor(0xFFFFFFFF);
        rl.addView(tv);

        s_textView = tv;

        setContentView(rl);
        Log.i("[DEBUG]", "main activity - finished");
    }

现在我将此标记为解决方案。如果有人出现并提供了如何正确获取引用的答案 - 对于应用程序使用GLSurfaceView时手动添加的TextView - 那么我会将其标记为答案,只要它有效。