-2

我有 LinearLayout,我在其中动态添加视图。单击它时,我需要更改每个视图的背景。

我尝试在我的代码中执行此操作:

public class UserDetailActivity extends Activity implements View.OnTouchListener {
...
@Override
    public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.l_user_detail);

    Intent intent = getIntent();
    User user = (User) intent.getSerializableExtra("class");

    userWillGo = (LinearLayout) findViewById(R.id.linerLayout_userDetail_willGoTO);

    for (int i = 0; i < user.getUserWillGo().size(); i++) {
    View myView = (View)LayoutInflater.from(getApplicationContext()).inflate(R.layout.item_event_list, userWillGo, false);
                myView.setLayoutParams(new LinearLayout.LayoutParams(
                        LinearLayout.LayoutParams.FILL_PARENT,
                        LinearLayout.LayoutParams.FILL_PARENT));
                ...
                myView.setOnTouchListener(mOnTouchListener());
                userWillGo.addView(myView);
            }

}

private View.OnTouchListener mOnTouchListener() {
        return new View.OnTouchListener() {
            @Override
            public boolean onTouch(View v, MotionEvent event) {
                if (event.getAction() == MotionEvent.ACTION_DOWN) {
                    v.setBackgroundResource(R.color.textBlue);
                }
                if (event.getAction() == MotionEvent.ACTION_UP) {
                    v.setBackgroundResource(R.drawable.bg_item);
                }
                return true;
            }
        };
}

我得到这个代码的结果:

在此处输入图像描述

我需要得到什么:

在此处输入图像描述

4

1 回答 1

3

首先,我建议您拥有一个列表视图组件,而不是在循环中添加布局。

在列表视图中,您可以创建一个项目选择器,但无论如何在当前场景中,您可以在myView 布局上 有一个可绘制选择器*selector_bg.xml* . 您还可以按照场景中的说明使用android:state_focused="true|false' :

<?xml version="1.0" encoding="utf-8"?>
        <selector xmlns:android="http://schemas.android.com/apk/res/android">
            <item android:state_pressed="true" android:drawable="@drawable/hover_bg" /> <!-- pressed -->
            <item android:drawable="@drawable/normal" /> <!-- default -->
        </selector>

myView.setBackgroundResource(R.drawable.selector_bg)

上面的详细参考点击这里

于 2013-03-20T12:40:21.917 回答