gpt4 book ai didi

android - onclick不适用于 inflated layout

转载 作者:行者123 更新时间:2023-11-29 21:41:18 25 4
gpt4 key购买 nike

我有一个从相对布局扩展而来的自定义类。在我的 xml 中有一个线性布局和一个按钮。当我膨胀它并尝试与 onclick 一起使用时,它不起作用。但是,如果我不使用按钮,则单击有效。这是代码:

XML

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/inflated_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="vertical">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:background="@drawable/en_ad_purplebutton">
<Button
android:id="@+id/general_button"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/en_button_positive"
android:textColor="@color/en_white"
android:textSize="20sp"
android:clickable="true"/>
</LinearLayout>

自定义类:

@Override
public void onFinishInflate() {
init();
}

private void init(){
inf.inflate(R.layout.uc_button_positive, this);
b = (Button)findViewById(R.id.general_button);
}

这是我使用这个自定义类的代码

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:custom="http://schemas.android.com/apk/res/finansbank.enpara"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical" >


<mypakage.customClass
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/view"
android:text="deneme"
android:onClick="go"
android:clickable="true"
android:layout_gravity="center"/>
</LinearLayout>

最佳答案

我也试过了,发现不行,并且发现需要做这样一个事件:

layout = (LinearLayout) inflater.inflate(R.layout.your layout,
container, false);


Button b=(Button)layout .findViewById(R.id.view);
v.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
// TODO Auto-generated method stub

}
});

效果很好!!

关于android - onclick不适用于 inflated layout ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17037775/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com