gpt4 book ai didi

java - Android:编辑xml中定义的textview

转载 作者:行者123 更新时间:2023-12-01 05:49:37 24 4
gpt4 key购买 nike

我已经坐了至少 4 个小时试图解决这个问题。

要理解这一点,您需要了解 3 个文件:

eggCatcher.java 扩展了 Activity,这个类的用途并不多于 保存游戏状态并显示选项菜单。

eggCatcherView.java 扩展了 SurfaceView 并包含“游戏”。

eggCatcher_layout.xml如下所示:

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

<FrameLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<easter.fun.EggCatcherView
android:id="@+id/eggcatcher"
android:layout_width="match_parent"
android:layout_height="match_parent"/>

<RelativeLayout android:id="@+id/relativeLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true">

<TextView android:text="Score: "
android:id="@+id/totalscore"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true">
</TextView>

<TextView android:text="Bonus: "
android:id="@+id/bonus"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true">
</TextView>

</RelativeLayout>
</FrameLayout>
</LinearLayout>

如xml文件所示,xml文件中放入了EggCatcherView。当我启动应用程序时,onCreate 调用 setContentView(layout.eggcatcher_layout);

我现在的问题是:我如何从 Egg​​CatcherView.java 访问和编辑 xml 文件中定义的 TextView?

如果它在 EggCatcher.java 中,那就很容易了,只需使用 findViewById(id.bonus),但是从在surfaceView内部似乎有点困难。

我希望我已经把一切说清楚了,如果你不明白,就问吧!

//米克

最佳答案

我认为你应该获取父 View ,然后从那里你可以使用 findViewById() (你确定你不能只使用该方法,因为 SurfaceView > 是 View 的子类并从中继承 findViewById()?)。

要使用父级,您需要执行以下操作:

ViewParent vp = eggCatcherView.getParent();
FrameLayout fl = (FrameLayout) vp;
TextView tx = (TextView) fl.findViewById(R.id.bonus);

当然,您需要检查 ViewParent 是否确实是 FrameLayout 的实例。

关于java - Android:编辑xml中定义的textview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5059185/

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