0

我正在尝试创建一个菜单选项,用户可以在其中选择 textView 可以显示的颜色。例如,用户选择红色,选择将 textView 背景设置为红色的预览按钮。任何建议将不胜感激。

public class UserMenu extends Activity implements OnClickListener {
Button preview;
Spinner spinnerColor;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_user_menu);

        spinnerColor = (Spinner) findViewById(R.id.spinnerColorMenu);
        TextView Title = (TextView)findViewById(R.id.ViewModuleTitle);

        preview = (Button)findViewById(R.id.previewButton);
           preview.setOnClickListener(this);
    }

    public void onClick(View v)
    {
        String color = spinnerColor.getSelectedItem().toString();
        Title.setBackgroundResource(R.color.color);


    }
}

布局

<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/ViewModuleTitle"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@color/darkBlue"
        android:paddingBottom="10dp"
        android:paddingLeft="10dp"
        android:paddingTop="10dp"
        android:text="@string/addModule"
        android:textColor="@color/white"
        android:textSize="22dp" />

    <TextView
        android:id="@+id/lableTextModuleCode"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/enterModuleCode"
        android:layout_marginLeft="10dp"
        android:paddingTop="10dp"
        android:paddingBottom="10dp"
        style="@style/textColor"/>

     <Spinner
        android:id="@+id/spinnerColorMenu"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:entries="@array/colorMenu"/>

     <Button
          android:id="@+id/previewButton"
          android:layout_width="150dp"
          android:layout_height="wrap_content"
          android:layout_marginBottom="10dp"
          android:onClick="previewButton"
          android:text="@string/addModule" />

     </LinearLayout>
4

3 回答 3

1

您可以尝试以下方法:-

  1. 让 colormenu.xml 中的 color_array 如下:-

    <item>red</item>
    <item>blue</item>
    <item>green</item>
    <item>black</item>
    
  2. 在您的 onClick 中添加以下行:-

    int parsed_color = Color.parseColor(color);

  3. 这是修改后的代码:-

公共类 MainActivity 扩展 Activity 实现 OnClickListener {

按钮预览;

微调微调器颜色;

文本视图标题;

@Override

public void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_main);


    spinnerColor = (Spinner) findViewById(R.id.spinnerColorMenu);
   Title = (TextView)findViewById(R.id.ViewModuleTitle);

    preview = (Button)findViewById(R.id.previewButton);
       preview.setOnClickListener(this);
}

public void onClick(View v)
{
    String color = spinnerColor.getSelectedItem().toString();
    int parsed_color = Color.parseColor(color);

   Title.setBackgroundColor(parsed_color );


}

}

这工作正常。不需要任何 if else 语句或任何开关。

PS parseColor() 方法支持#RRGGBB #AARRGGBB 'red', 'blue', 'green', 'black', 'white', 'gray', 'cyan', 'magenta', 'yellow', 'lightgray' , '深灰色' 格式。

于 2012-11-07T13:51:56.410 回答
1
 public void onClick(View v)
 {
        String color = spinnerColor.getSelectedItem().toString();
        if(color.equalsignorecase("Red"))
         {
            Title.setBackgroundColor(Color.RED);
         }
         else if(color.equalsignorecase("Blue"))
         {
            Title.setBackgroundColor(Color.Blue);
         }
}

更多的..

于 2012-11-07T11:39:47.887 回答
1
String color = spinnerColor.getSelectedItem().toString();
Title.setBackgroundResource(R.color.color);

它不起作用,你应该使用switch (color)

于 2012-11-07T11:41:46.520 回答