0

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)
4

1 に答える 1

0

それ以外の

TextView helloText = (TextView)findViewById(R.string.hello_world);

次のように、findViewByIDでいくつかのIDを使用する必要があります

TextView helloText = (TextView)findViewById(R.id.your_textview_id);

ここで your_textview_id は、レイアウト xml のテキストビューの ID です。

<TextView
    android:id="@+id/your_textview_id"
     .............
      .........

私はちょうどこれを試してみましたが、うまくいきました:

TextView helloText = (TextView)findViewById(R.id.hello_world);

helloText.setTextColor(getResources().getColor(R.color.app_text_color));
于 2013-04-18T00:56:26.877 に答える