gpt4 book ai didi

具有自定义 View 选项卡的 Android TabLayout - 图标单击不会切换选项卡

转载 作者:搜寻专家 更新时间:2023-11-01 08:24:36 27 4
gpt4 key购买 nike

我有一个包含三个选项卡的 tabsLayout,每个选项卡都包含一个带有 ImageViewTextView 的自定义 View 。 当我想切换选项卡并单击其中之一时,如果我在图标外单击,它们会正确切换。但是,当我单击该图标时,它们不会切换。我怎样才能解决这个问题?

enter image description here

我尝试使用 focusable=false,但它对我不起作用。

我的自定义 View :

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/customButton"
android:layout_width="match_parent"
android:layout_height="80dp"
android:clickable="false"
android:focusable="false"
android:focusableInTouchMode="false"
android:alpha="0.5"
android:orientation="vertical">

<ImageButton
android:id="@+id/icon"
android:layout_width="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_height="0dp"
android:layout_weight="4"
android:clickable="false"
android:focusable="false"
android:focusableInTouchMode="false"
android:background="@android:color/transparent"
android:onClick="airspacesButtonOnClick"
android:adjustViewBounds="true"
android:scaleType="fitCenter"
android:tint="@color/colorIcons"/>

<TextView
android:id="@+id/string"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:clickable="false"
android:focusable="false"
android:focusableInTouchMode="false"
android:textAlignment="center"
android:textSize="12sp" />
</LinearLayout>

我的标签布局:

<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="80dp"
app:tabIndicatorColor="@color/colorButton"
app:tabTextAppearance="@android:style/TextAppearance.Widget.TabWidget"
app:tabMode="fixed"
app:tabGravity="fill"/>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />

最后是我的 java 代码:

int[] iconIds = {R.drawable.ic_profile, R.drawable.ic_plane, R.drawable.ic_document};
int[] labelIds = {R.string.menu, R.string.menu, R.string.menu};
View customView;
for (int i = 0; i < tabLayout.getTabCount(); i++) {
customView = getActivity().getLayoutInflater().inflate(R.layout.custom_icon, null);
customView.findViewById(R.id.icon).setBackgroundResource(iconIds[i]);

((TextView) customView.findViewById(R.id.string)).setText(labelIds[i]);
tabLayout.getTabAt(i).setCustomView(customView);

最佳答案

您尝试通过将 clickable 设置为 false 来使您的 ImageView 不可点击,但是使用 onClick 覆盖它并且您的 ImageView 再次变为可点击。这就是为什么对 ImageView 的点击被 ImageView 本身消耗掉,而不是传播到它的父级。因此,应删除自定义选项卡布局的 ImageView 中的这一行:

android:onClick="airspacesButtonOnClick"

除了这一行,它适用于给定的代码和布局。

关于具有自定义 View 选项卡的 Android TabLayout - 图标单击不会切换选项卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46490645/

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