«androiddesignsupport» etiketlenmiş sorular

4
CoordinatorLayout'ta araç çubuğunun altına görünüm ekleyin
Aşağıdaki düzenim var: <android.support.design.widget.CoordinatorLayout android:id="@+id/main_content" 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.design.widget.AppBarLayout android:id="@+id/appBar" android:layout_width="match_parent" android:layout_height="wrap_content" android:theme="@style/ThemeOverlay.AppCompat.ActionBar"> <android.support.v7.widget.Toolbar android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" android:background="?attr/colorPrimary" app:layout_scrollFlags="scroll|enterAlways" app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/> </android.support.design.widget.AppBarLayout> <FrameLayout android:id="@+id/content" android:layout_width="match_parent" android:layout_height="match_parent" /> </android.support.design.widget.CoordinatorLayout> Ben eklemek Fragmentiçine s FrameLayoutbunların yerine,. Benim Fragments biri aşağıdaki düzeni olan bir liste: <android.support.v7.widget.RecyclerView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/recyclerView" android:layout_width="match_parent" android:layout_height="match_parent" app:layout_behavior="@string/appbar_scrolling_view_behavior"/> Burada …

6
Gezinme çekmecesinde işaretlenmiş bir menü öğesinin rengini değiştirme
Uygulamamda bir gezinme çekmecesi uygulamak için yeni Android Tasarım Desteği kitaplığını kullanıyorum. Seçili bir öğenin rengini nasıl değiştireceğimi çözemiyorum! İşte menünün xml'si: <menu xmlns:android="http://schemas.android.com/apk/res/android"> <group android:checkableBehavior="single"> <item android:id="@+id/navigation_item_1" android:icon="@drawable/ic_1" android:title="@string/navigation_item_1"/> <item android:id="@+id/navigation_item_2" android:icon="@drawable/ic_2" android:title="@string/navigation_item_2"/> </group> Ve burada, a'nın içine yerleştirilmiş olan gezinti görünümü xml'si android.support.v4.widget.DrawerLayout: <android.support.design.widget.NavigationView android:id="@+id/activity_main_navigationview" android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_gravity="start" …


26
Durum çubuğu beyaza dönüyor ve arkasındaki içeriği göstermiyor
Marshmallow'da AppCompat'ı deniyorum. Ve şeffaf bir durum çubuğuna sahip olmak istiyorum, ancak beyaza dönüyor. Birkaç çözüm denedim ama benim için işe yaramadı ( Şeffaf durum çubuğu windowTranslucentNavigation = "false" , Lollipop: rengi şeffaf olarak ayarlanmış durum çubuğunun arkasında çizin ). İşte ilgili kod. Styles.xml'im <style name="Bacon" parent="Theme.Bacon"/> <style name="Theme.Bacon" parent="Theme.AppCompat.Light.NoActionBar"> …

25
Android.support.design.widget.NavigationView sınıfı şişirilirken hata oluştu
Destek Tasarım Kitaplığı'nda yeni bir bileşen NavigationView öğreticisini takip ettim ve bu hata mesajını alamıyorum: Error inflating class android.support.design.widget.NavigationView Buradaki her çözümü denedim Herhangi bir Android Tasarım Destek Kitaplığı Öğesi kullanılırken hata ancak hata mesajı hala var. xml <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/drawer_layout" android:layout_width="match_parent" android:layout_height="match_parent" android:fitsSystemWindows="true" > <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" > …


Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.