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>