我正在開發一個應用程序,其中包含底部導航抽屜,直到現在,每件事情都很好,但是當我添加點擊偵聽器時,我正在執行的操作不起作用。如何從底部導航抽屜啓動活動?
bottombar_tabs.xml
<?xml version="1.0" encoding="utf-8"?>
<tabs xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_width="match_parent">
<tab
android:layout_height="50dp"
android:id="@+id/tab_favorites"
android:icon="@mipmap/ic_map_black_24dp"
android:title="Land" />
<tab
android:layout_height="50dp"
android:id="@+id/tab_nearby"
android:icon="@mipmap/ic_directions"
android:title="Vehicle" />
<tab
android:layout_height="50dp"
android:id="@+id/tab_friends"
android:icon="@mipmap/ic_inbox_black_24dp"
android:title="Equipment" />
</tabs>
activity_main.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_marginTop="?attr/actionBarSize"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical">
<android.support.v7.widget.RecyclerView
android:id="@+id/fishPriceList"
android:layout_marginBottom="?attr/actionBarSize"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="10dp"
android:layout_weight="1"/>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:background="#003300"
app:backgroundTint="@color/green"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_marginBottom="70dp"
android:layout_gravity="bottom|end"
android:layout_marginRight="@dimen/fab_margin"
android:src="@mipmap/ic_filter_list" />
<com.roughike.bottombar.BottomBar
android:id="@+id/bottomBar"
android:layout_width="match_parent"
android:layout_height="65dp"
android:layout_alignParentBottom="true"
app:bb_tabXmlResource="@layout/bottombar_tabs" />
</RelativeLayout>
在Java類
public class MainActivity extends Activity {
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
BottomBar bottomBar = (BottomBar) findViewById(R.id.bottomBar);
bottomBar.setOnTabReselectListener(new OnTabReselectListener() {
@Override
public void onTabReSelected(@IdRes int tabId) {
if (tabId == R.id.tab_nearby){
Toast.makeText(getApplicationContext(),"Working",Toast.LENGTH_LONG).show();
}
}
});
}
}
那麼你實際面臨什麼問題? –
我沒有得到烤麪包,當我在關閉庫時出現 –
試圖使用android原生viewpager標籤親愛的它給了更多的定製 –