Rozpocząłem pracę nad biblioteką wsparcia dla materiałów do projektowania Android, a jako początkujący mam pewne niejasności. I potrzebuję twojej pomocy. :)aplikacja: layout_scrollFlags = "scroll | enterAlways" nie działa z LinearLayout
1) Czy można używać layout_scrollFlags="scroll|enterAlways"
z LinearLayout?
2) Chcę LinearLayout tuż poniżej paska narzędzi. Osiągnąłem to za pomocą AppBarLayout, ale chcę przewinąć pasek narzędzi LinearLayout nie na przewijanie zawartości poniżej LinearLayout. Używanie layout_scrollFlags="scroll|enterAlways"
na LinearLayout nie działa.
3) Czy możemy użyć więcej niż jednego AppBarLayout w CoordinatorLAyout Toolbar w AppBarLayout?
<android.support.design.widget.CoordinatorLayout 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:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="10dp"
app:layout_scrollFlags="scroll|enterAlways">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="TextView : 1 " />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="TextView : 2" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="TextView : 3" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="TextView : 4" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="TextView : 5" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="TextView : 6" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="TextView : 7" />
</LinearLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>
po wdrożeniu rozwiązania SaravInfern jest, Oto co osiągnięto do tej pory ...
Chcę ukryć LinearLayout po przewinięciu nie Toolbar – Jaydeep
https://youtu.be/enWVNP3Gifg Chcę czegoś takiego, jedyna różnica polega na tym, że chcę, aby LinearLayout i textViews w nim były, a ten film ma tabLayout – Jaydeep
Twoja odpowiedź nie daj pożądaną wydajność ... – Jaydeep