我嘗試開發像這樣的圖像左TabLayout。垂直Android TabLayout不垂直滾動
但問題是TabLayout
元素不是表演和垂直滾動。下面有我的代碼也許我錯過了一些東西:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_toRightOf="@+id/appBarLay"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
<android.support.design.widget.AppBarLayout
android:id="@+id/appBarLay"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="60dp"
android:layout_height="match_parent"
app:tabBackground="@drawable/tab_color_selector"
app:tabGravity="fill"
app:tabMode="scrollable" />
</android.support.design.widget.AppBarLayout>
</RelativeLayout>
Tablayout並不意味着垂直滾動,他們只進行水平滾動。 我認爲你應該看看別的。 –
@PriyaSinghal,請告訴我什麼是正確的方式。我在GitHub中找到了一些庫,但有沒有其他方法? –
使用可以使用ListView或RecyclerView與固定寬度,因爲我認爲你需要用選擇的選項類型來填充屏幕...... 另外你試圖製作的UI是在IOS的指導下進行的if可能會要求您的設計師將設計作爲android的android指南。 –