Android:实时更改背景颜色和/或文本大小

时间:2010-06-04 23:33:27

标签: android listview

我在Android应用程序中设置了几个ListActivties。我要做的是设置它,以便用户可以通过PreferenceActivity选择背景颜色,字体大小和字体颜色。我已经了解了有关Preference活动的一切,但我无法弄清楚如何在代码中获取ListView。

我的一个ListActivities是以正常方式设置的,但需要有android id标签“android:id =”@ android:id / list“”。因此,我无法实时更改它。 (我试图使用findViewById(R.id.list);)

我的其他ListActivities使用ArrayAdapter的不同实现来更改每行的布局。所以在这种情况下,我有一个包含ListView的XML文件和另一个定义行布局的XML文件。我需要能够在行XML文件和另一个XML文件中的ListView中更改TextView。它以这种方式设置的原因是动态决定在每行中放置什么图标,在ArrayAdapter的实现中,我必须使用充气器来获取标签ImageView。在这种情况下,我不确定如何使用该实现的冲销器。

以下是我与第二个listView讨论的一个例子。

public class Routes extends ListActivity {
private String[] ROUTES;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    ROUTES = getResources().getStringArray(R.array.routes);

    setContentView(R.layout.routes);
    setListAdapter(new IconicAdapter());

}

class IconicAdapter extends ArrayAdapter<String> {


    IconicAdapter() {
        super(Routes.this, R.layout.row, R.id.label, ROUTES);
    }

    public View getView(int position, View convertView, ViewGroup parent) {

        LayoutInflater inflater = getLayoutInflater();
        View row = inflater.inflate(R.layout.row, parent, false);
        TextView label = (TextView) row.findViewById(R.id.label);

        label.setText(ROUTES[position]);

        ImageView icon = (ImageView) row.findViewById(R.id.icon);
        ShapeDrawable mDrawable;

        int x = 0;
        int y = 0;
        int width = 50;
        int height = 50;

        float[] outerR = new float[] { 12, 12, 12, 12, 12, 12, 12, 12 };

        mDrawable = new ShapeDrawable(new RoundRectShape(outerR, null, null));
        mDrawable.setBounds(x, y, x + width, y+height);
        mDrawable.setPadding(25,25,25,25);



        switch(position){

        case 0:
            mDrawable.getPaint().setColor(0xffff0000);      //Red
            break;
        case 1:
            mDrawable.getPaint().setColor(0xffff0000);      //Red
            break;
        case 2:
            mDrawable.getPaint().setColor(0xff00c000);      //Green
            break;
        case 3:
            mDrawable.getPaint().setColor(0xff00c000);      //Green
            break;
        case 4:
            mDrawable.getPaint().setColor(0xff0000ff);      //Blue
            break;
        case 5:
            mDrawable.getPaint().setColor(0xff0000ff);      //Blue
            break;
        }

        icon.setBackgroundDrawable(mDrawable);
        return(row);
    }


   <?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:orientation="vertical">

  <ListView
    android:id="@android:id/list"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    />

</LinearLayout>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/row"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingTop="7px"
android:paddingLeft="6px">

<ImageView
    android:id="@+id/icon"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
/>

<TextView
    android:id="@+id/label"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:paddingLeft="17px"
    android:textSize="28sp"
/>

任何建议将不胜感激!

1 个答案:

答案 0 :(得分:1)

  

因此我无法改变   它是实时的。

致电getListView()上的ListActivity


关于您的其他ListViews,我不明白您的问题是什么。您可以在需要时对行进行充气(注意:不是每次getView()来电,请回收您的convertView)。您可以调整该点的行数以查看您的期望,就像调整ImageView

一样