1

我试图找到这个问题的答案,并且我认为我的代码可以按我的意愿工作,但是......它不是。

问题:我有一个“父”LinearLayout,我向其中添加了几个嵌套的膨胀“子”LinearLayout。这行得通。每个 CHILD 布局都有两个视图,一个自定义 ChipView 和一个 TextView。在我为每个孩子充气后,我希望能够在我的活动期间“随时”修改每个孩子的 ChipView 和 TextView。

我创建了一个简单的项目来玩,但我只能设法访问 FIRST INFLATED 子布局的 ChipView 和 TextView。所有后续的都正确插入到 Parent 但显然我无法获得变量来引用它们。

我之前通过在运行时创建 ChipView 来做到这一点,它完美地工作,但我想要一种更优雅的方法,使用我可以单独控制的 XML。

在我的活动中,我有一个按钮可以创建子项,还有一个按钮应该调用当前 ChipView 中的方法(即最后一次充气或我单击的那个)。

活动:

public class SandboxActivity extends Activity {
    private Button okbtn;
    private Button add;
    private EditText count;
    private ChipsView chips;
    private LinearLayout pots;
    private TextView amount;
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.test);

       okbtn = (Button) findViewById(R.id.ok); //calls the method in customviews
       add = (Button) findViewById(R.id.add);  //adds a child
       count = (EditText) findViewById(R.id.count); //the value to call methods with
       pots = (LinearLayout) findViewById(R.id.pots); //the PARENT layout

       add.setOnClickListener(new Button.OnClickListener() {

        public void onClick(View v) {
            LinearLayout ll = (LinearLayout) getLayoutInflater().inflate(R.layout.pottemplate, pots);
            chips = (ChipsView) ll.findViewById(R.id.chips);
            amount = (TextView) ll.findViewById(R.id.amount);

               //this should allow me to set the activity.chips variable to the last clicked custom view
            chips.setOnClickListener(new View.OnClickListener() {
                public void onClick(View v) {
                    chips = (ChipsView) v;
                }
            });         
            }

        });


        okbtn.setOnClickListener(new Button.OnClickListener() {

            public void onClick(View v) {
                chips.setCount(Double.parseDouble(count.getText().toString()));         
            }

        });

    }
}

膨胀的 XML:

<?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" >
    <com.ded.sandbox.ChipsView xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="100dp"
        android:layout_height="fill_parent"
        android:layout_weight="2"
        android:id="@+id/chips">    

    </com.ded.sandbox.ChipsView>

    <TextView
        android:id="@+id/amount"
        android:layout_width="100dp"
        android:layout_height="wrap_content"
        android:text="TextView" android:gravity="center_horizontal" android:textSize="12dp" android:textStyle="bold"/>

</LinearLayout>
4

1 回答 1

1
View oneHappyRow = mInflater.inflate(R.layout.one_happy_hour_row,null);
TextView dayOfWeekTextView = (TextView) oneHappyRow.findViewById(R.id.dayOfWeekTextView);
TextView hoursOfDayTextView = (TextView) oneHappyRow.findViewById(R.id.hoursOfDayTextView);

在此处获取每个膨胀布局、设置文本等的参考,然后:

this.addView(oneHappyRow);

在我的案例中,该类扩展了 LinearLayout。

每个参考现在都在工作,您不会总是得到最后一个参考。

于 2015-10-16T16:23:40.447 回答