gpt4 book ai didi

android TabItem onClick 不起作用

转载 作者:行者123 更新时间:2023-12-02 12:08:07 27 4
gpt4 key购买 nike

我有功能cityClick,如果我从 textView 调用此函数,它工作正常,但如果我从 TabItem 调用 cityClick,它不起作用,这是怎么回事?

Java

public class Kategorie extends AppCompatActivity
implements NavigationView.OnNavigationItemSelectedListener {

protected void cityClick(View view) {
Toast.makeText(this, "Hello", Toast.LENGTH_LONG).show();
}

布局

    <android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:clickable="true"
android:onClick="cityClick"
app:tabMode="fixed">

<android.support.design.widget.TabItem
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:textAlignment="center"
android:textSize="18sp"
android:onClick="cityClick"
android:clickable="true"
android:text="GDAŃSK" />

<android.support.design.widget.TabItem
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:textAlignment="center"
android:textSize="18sp"
android:onClick="cityClick"
android:clickable="true"
android:text="SOPOT" />

<android.support.design.widget.TabItem
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:textAlignment="center"
android:textSize="18sp"
android:onClick="cityClick"
android:clickable="true"
android:text="GDYNIA" />

</android.support.design.widget.TabLayout>

我在这个论坛上搜索,但没有找到任何可以帮助我的东西。

最佳答案

试试这个,

  tabs.addOnTabSelectedListener(new TabLayout.OnTabSelectedListener() {
@Override
public void onTabSelected(TabLayout.Tab tab) {
Toast.makeText(mActivity, "hai", Toast.LENGTH_SHORT).show();
}

@Override
public void onTabUnselected(TabLayout.Tab tab) {

}

@Override
public void onTabReselected(TabLayout.Tab tab) {

}
});

关于android TabItem onClick 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44899784/

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