Androidでテキストの色を設定しようとしています。アプリケーションを起動するたびにシャットダウンします。color.xml ファイルにあるものは次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<color name="background_color">#006400</color>
<color name="app_text_color">#FFE4C4</color>
MainActivity クラスにあるものは次のとおりです。
int textColor = getResources().getColor(R.color.app_text_color);
TextView helloText = (TextView)findViewById(R.string.hello_world);
helloText.setTextColor(textColor);
レイアウトファイルは次のとおりです。
<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"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<TextView
android:id="@+id/hello_world"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world"
/>
</RelativeLayout>
ログカー:
04-17 21:00:39.290: E/AndroidRuntime(9986): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1670)