gpt4 book ai didi

Android 相对布局以编程方式更改 TextView

转载 作者:行者123 更新时间:2023-11-30 04:17:21 24 4
gpt4 key购买 nike

我正在尝试在我的应用中使用相对布局。有两个 TextViews 和一个 Button。这是 xml 文件:

    <RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:padding="30dip"
android:orientation="vertical">


<TextView
android:id="@+id/up"
android:text="@string/start_game"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
/>

<TextView
android:id="@+id/level"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_below="@id/up"/>
/>

<Button android:id="@+id/start"
android:text = "@string/go"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_alignParentBottom="true"
/>

</RelativeLayout>

现在,id=up 的 TextView 完美显示。对于第二个 TextView(id=level),我想通过我的 java 代码向它添加文本。这是我所做的:

       TextView text = (TextView) findViewById(R.id.level);
text.setText("Hello Android");

但这会使程序崩溃。我的错误是什么?

最佳答案

就是这样...在使用 findViewById 之前,您必须始终调用 setContentView

关于Android 相对布局以编程方式更改 TextView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9778408/

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