0
int resID = getResources().getIdentifier(getResources().getString(R.string.hello_world), "id", "com.example.test.projects");
       TextView text = (TextView)findViewById(resID);
       text.setText("cpu: " );

hello_world メッセージを変更できないようです...毎回エラーがスローされます

もともとそれはずっと前向きでしたが、:/ Rファイルで、テキストビューを変更する多くの例のように、hello worldの文字列にIDがないように見えることに気付いたので、これを一緒に投げました

レイアウトを作成した場所は次のとおりです。

<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" >

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:text="@string/hello_world"
    tools:context=".MainActivity" />

そして私のメインxml:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.test.projects"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="7"
    android:targetSdkVersion="16" />
<uses-feature android:name="android.hardware.bluetooth"/>
<uses-permission android:name="android.permission.WRITE_SETTINGS"/>
<uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/>
<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" 
    >
    <activity
        android:name=".MainActivity"
        android:label="@string/title_activity_main" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

4

1 に答える 1

1

別のアプローチをお勧めします。TextView に ID を追加します。

<TextView
    android:id="@+id/helloTextView"
    ... />

そして、そのテキストを次のように変更できます:

TextView text = (TextView) findViewById(R.id.helloTextView);
text.setText("cpu: " );

(また、アプリがクラッシュした場合は、何が起こっているかを正確に確認できるように、常に LogCat を投稿する必要があります。)

于 2012-09-19T20:47:29.810 に答える