0

我有一个问题数组,显示在屏幕上。当你点击一个项目时,你会去anwer。这一切都很好。但是(标题)标签不显示问题,只显示应用程序名称。

我读了这篇文章。但是每次你点击一个问题,它都是一个不同的问题,所以你不能硬编码。文你点击一个问题一个新的活动开始。如果问题(数组的项目)被发送到新的活动,我会很好。

所以这是一个列表视图,里面装满了数组问题的项目: 在此处输入图像描述

这是单击问题时的新活动: 在此处输入图像描述

“IDP2013”​​必须更改您点击的问题。

list_data.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string-array name="Questions">
        <item>Where is the exit button?</item>
        <item>Why cant I launch a rocket?</item>
        <item>Why cant I hack the other teams?</item>
        <item>How can I get back to the home screen?</item>
        <item>test</item>
</string-array>
<string-array name="Answers">
    <item>Right above, click the button and then the last button "exit".</item>
    <item>Because there is no rocket.</item>
    <item>Have patience.</item>
    <item>Left above, click the button. </item>
    <item>test</item>
</string-array>

AndroidManifest.xml:

    <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.activity.idp2013"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="14"
        android:targetSdkVersion="17" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        ...
        <activity android:name="com.activity.idp2013.SingleListItem"
                    android:label="@array/Questions">
        </activity>
        ...
    </application>

</manifest>
4

1 回答 1

1

使用 intent.putExtra 将数据传递给另一个活动。

Intent intent = new Intent(this, NewActivity.class);
intent.putExtra("questionName", array[selectedPosition]);
startActivity(intent);

然后在 NewActivity 中使用以下方法获取此字符串:-

String questionName = "";
Bundle extras = getIntent().getExtras();
if (extras != null) {
    this.questionName = extras.getString("questionName");
}

并将这个 questionName 设置为 NewActivity 的 setTitle。

于 2013-05-06T10:00:15.933 回答