Android düzen dosyaları ile iyi değilim ve şu anda bir Araç Çubuğu widget'ına ve geri dönüştürücü görünümü widget'ına sahip bir dosyam var. İşte kod.Gezinme Çekmecesi, Araç Çubuğu ve Geri Dönüştürücü Tüm aynı xml düzen dosyasını görüntüleyin?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.Toolbar
android:id="@+id/robot_chooser_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
<android.support.v7.widget.RecyclerView
android:id="@+id/robot_recycler_view"
android:paddingTop="5dp"
android:scrollbars="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<TextView
android:id="@+id/robot_empty_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:textSize="20sp"
android:text="@string/no_robots"
android:elevation="3dp"
android:layout_gravity="center"
android:visibility="gone"
android:gravity="center" />
</LinearLayout>
Buna nasıl DrawerLayout ekleyebilirim?
Cevabınız için teşekkürler! Alt kısımdaki parça kısmı nedir? –
Herhangi bir şeyle değiştirebilirsiniz. Yukarıda açıkladığım gibi, “DrawerLayout” iki çocuğa sahiptir, böylece herhangi bir 'View' ile değiştirebilirsiniz. benim örneğimde, sadece 'Fragment' ekledim, herhangi bir Görünüm ekleyebilirsin. –
Tamam, çünkü navigasyon çekmecesinin içine eklemeye çalıştığım şey fragmanlar. Yani orada 2 şeyden birini tıklattığınızda, çekmecenin içine parça eklemek istiyorsanız, görünüm –