gpt4 book ai didi

Android RelativeLayout 和 OnClickListener

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

我找到了很多关于如何使相对布局响应点击事件的话题和答案。我已经根据他们实现了我的布局。但是仍然没有调用 OnClickListener。我还为它提供了选择器,它运行良好。

我的列表项目 xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res/air.com.jingit.mobile"
android:layout_width="match_parent" android:layout_height="@dimen/actionBarHeight"
android:clickable="true"
android:background="@drawable/my_list_selector">

<com.loopj.android.image.SmartImageView
android:layout_width="@dimen/actionBarHeight"
android:layout_height="@dimen/actionBarHeight"
android:id="@+id/image"
android:scaleType="fitCenter"
android:layout_marginLeft="20dp"
android:clickable="false"
android:focusable="false"/>

<com.uma.mobile.view.CustomTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Loading..."
android:id="@+id/userName"
app:typeface="fonts/HelveticaNeue"
app:customStyle="Regular"
android:textSize="20sp"
android:layout_centerVertical="true"
android:layout_toRightOf="@+id/image"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:textColor="#000"
android:clickable="false"
android:focusable="false"/>

<FrameLayout
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#aaa"
android:layout_alignBottom="@+id/image"></FrameLayout>

这是我膨胀 View 的地方:

public MyListItem(final Context context, final Integer retailerId) {
super(context);
LayoutInflater layoutInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = layoutInflater.inflate(R.layout.my_list_item, this);
image = (SmartImageView) view.findViewById(R.id.image);
userName = (CustomTextView) view.findViewById(R.id.userName);


setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {

Log.i("INSIDE LIST","CLICK");

}
});
}

编辑 1:

这个相对布局被添加到 ScrollView 内的线性布局中,因此它像 ListView 一样工作。这有关系吗???

ListView .xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="wrap_content"
android:background="#eee">

<ScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/scrollView" >

<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/listContainer" />
</ScrollView>

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageView"
android:layout_centerHorizontal="true"
android:src="@drawable/up_indicator"
android:layout_alignBottom="@+id/scrollView" />

最佳答案

一旦我有一个 RelativeLayout 没有触发 onClick 事件,那是因为我在它中间有一个 Button,而 Button 的 onClick 事件被触发,而不是 RelativeLayout 事件。解决了为它们实现监听器的问题:

OnClickListener listener = new OnClickListener() {
public void onClick(View v) {
//Handle onClick
}
};
relativeLayout.setOnClickListener(listener);
button.setOnClickListener(listener);

希望对您有所帮助!

关于Android RelativeLayout 和 OnClickListener,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20224651/

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