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所以我把它一起扔了< / p>
继承人我在哪里做了布局:
<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>
答案 0 :(得分:1)
我建议采用不同的方法,在TextView中添加一个id:
<TextView
android:id="@+id/helloTextView"
... />
您可以使用以下命令更改其文字:
TextView text = (TextView) findViewById(R.id.helloTextView);
text.setText("cpu: " );
(如果你的应用程序崩溃,你应该总是发布你的LogCat,这样我们就可以确切地看到发生了什么。)