gpt4 book ai didi

java - 工具栏菜单不适用于 ViewPager

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:17:16 24 4
gpt4 key购买 nike

我正在学习 android,目前正在尝试将 android.support:design 中的工具栏添加到我的应用程序中,但我也想翻页,在网络上对这个问题进行了多次研究后,我写了这样的代码

1 ) activity_main.xml

<RelativeLayout
android:id="@+id/main_layout"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
>

<include
layout="@layout/toolbar"/>
<android.support.design.widget.TabLayout
android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="0dp"
style="@style/MyCustomTabLayout"
android:background="@drawable/bottom_menu"
android:layout_alignParentBottom="true"
android:paddingTop="?attr/actionBarSize"
/>

<com.example.misha.myapplication.utils.CustomViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/tab_layout"/>
</RelativeLayout>

2) toolbar.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/my_toolbar"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:background="@color/primary"
android:elevation="6dp"
android:minHeight="?attr/actionBarSize"
>
</android.support.v7.widget.Toolbar>

接下来,在java代码中我在MainActivity.java中编写了代码

 @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
toolbar = (Toolbar) findViewById(R.id.my_toolbar);
setSupportActionBar(toolbar);
TabLayout tabLayout = (TabLayout) findViewById(R.id.tab_layout);
tabLayout.addTab(tabLayout.newTab().setIcon(R.drawable.button_home_on));
tabLayout.addTab(tabLayout.newTab().setIcon(R.drawable.button_my_favorit_off));
tabLayout.addTab(tabLayout.newTab().setIcon(R.drawable.button_such_on));
tabLayout.setTabGravity(TabLayout.GRAVITY_FILL);
tabLayout.setBackgroundResource(R.drawable.button_background_off);
viewPager = (ViewPager) findViewById(R.id.pager);
final PagerAdapter adapter = new PagerAdapter
(getSupportFragmentManager(), tabLayout.getTabCount(), getBaseContext());
viewPager.setAdapter(adapter);
tabLayout.setupWithViewPager(viewPager);
viewPager.addOnPageChangeListener(new TabLayout.TabLayoutOnPageChangeListener(tabLayout));
tabLayout.setOnTabSelectedListener(new TabLayout.OnTabSelectedListener() {
@Override
public void onTabSelected(TabLayout.Tab tab) {

}

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

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

}
});
}
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}

4 和我的 menu_main.xml

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/action_search"
android:icon="@android:drawable/ic_menu_search"
app:showAsAction="ifRoom"
android:orderInCategory="200"
app:actionViewClass="android.support.v7.widget.SearchView"
android:title="Search"/>

<item
android:id="@+id/action_user"
android:orderInCategory="300"
android:title="User"
android:icon="@drawable/no_name_"
app:showAsAction="ifRoom"/>
</menu>

此外,在 values/styles.xml 中

  <!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="windowActionBar">false</item>

</style>

在 AndroidManifest.xml 中

<application
android:allowBackup="true"
android:icon="@mipmap/icon"
android:label="@string/app_name"
android:theme="@style/AppTheme"

我遇到了麻烦 - 当我点击工具栏菜单时没有任何反应......

我尝试在 main_menu.xml 中替换

<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" tools:context=".MainActivity">
<item android:id="@+id/action_settings" android:title="@string/action_settings"
android:orderInCategory="100" app:showAsAction="never" />
</menu>

但是这里是一样的效果...请问你能帮帮我吗,我的错误在哪里?

更新当我试图解决问题时,我注意到,如果我删除

viewPager = (ViewPager) findViewById(R.id.pager);
final PagerAdapter adapter = new PagerAdapter
(getSupportFragmentManager(), tabLayout.getTabCount(), getBaseContext());
viewPager.setAdapter(adapter);
tabLayout.setupWithViewPager(viewPager);
viewPager.addOnPageChangeListener(new TabLayout.TabLayoutOnPageChangeListener(tabLayout));

菜单将起作用。

我忘了说我正在使用带有 API - 17 的智能手机和平板电脑进行测试,以及另一部带有 api 15 的智能手机。但是在带有 api 23 的模拟器上进行测试 - 一切都很好。

最佳答案

And I have trouble - when I click on toolbar menu nothing is happening

老实说,先生,应该不会发生什么,因为你还没有实现

@Override
public boolean onOptionsItemSelected(MenuItem item) {
// this is where you handle menu clicks etc etc.
// so add a switch statement and handle clicks
switch (item.getItemId()) {
case R.id.id:

break;

default:
break;
}
return true;
}

也将此添加到您的 list 中

application
android:allowBackup="true"
android:icon="@mipmap/icon"
android:label="@string/app_name"
android:theme="@style/Theme.AppCompat.Light.NoActionBar" >//this guy

关于java - 工具栏菜单不适用于 ViewPager,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32392735/

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