gpt4 book ai didi

android - ListView 第一个元素不可点击

转载 作者:行者123 更新时间:2023-11-30 04:15:29 25 4
gpt4 key购买 nike

我有一个 fragment 中的元素列表。我想禁用列表的标题

http://bugs.haploid.fr/file_download.php?file_id=856&type=bug

这是我列表单元格的代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/stations_listView_layout">
<com.infrabel.railtime.views.RobotoMediumTextView
android:id="@+id/header_textview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="10dip"
android:paddingBottom="5dip"
android:layout_marginTop="29dip"
android:text="A"
style="@style/FragmentTitleSecondary">
</com.infrabel.railtime.views.RobotoMediumTextView>

<View
android:id="@+id/header_bar"
android:layout_width="match_parent"
android:layout_height="2dip"
android:background="@color/fragment_title_color">
</View>

<RelativeLayout
style="@style/stations_listView_inner_layout"
android:layout_width="fill_parent"
android:layout_height="60dip">

<com.infrabel.railtime.views.RobotoMediumTextView
android:id="@+id/name"
android:layout_width="fill_parent"
android:layout_height="30dip"
android:layout_gravity="center_vertical"
android:textSize="@dimen/menu_list_item_primary_text_size"
android:textColor="@color/grey_normal">
</com.infrabel.railtime.views.RobotoMediumTextView>

<com.infrabel.railtime.views.RobotoMediumTextView
android:id="@+id/details"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginTop="25dip"
android:textSize="@dimen/fragment_title_text_size"
android:textColor="@color/grey_light">
</com.infrabel.railtime.views.RobotoMediumTextView>
</RelativeLayout>
</LinearLayout>

我尝试设置 android:clickable = false 或 android:focusable="false"但它不起作用。

最佳答案

使某些 ListView 项目不可点击的一种方法是:

list.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
if(position == 0) {
// FIRST ITEM - DO NOTHING
} else {
// DO SOMETHING IF YOU WISH...
}

}
});

另一种方法是修改您的自定义适配器:

list.setAdapter(new ArrayAdapter<String>(this, R.layout.item,
listItems) {

@Override
public View getView(int position, View convertView, ViewGroup parent) {
final TextView v = (TextView) super.getView(position,
convertView, parent);
if(position == 0) {
v.setClickable(false);
// havent tested this thou...
}
}

});

关于android - ListView 第一个元素不可点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10103056/

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