我试图找到这个问题的答案,并且我认为我的代码可以按我的意愿工作,但是......它不是。
问题:我有一个“父”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>