我需要在導航抽屜的底部設置帶背景圖像的文本視圖。我無法從XML中做到這一點。如何在導航抽屜底部添加帶有背景圖片的文本視圖?
回答
裏面你activity_main.xml中,
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
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:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<include layout="@layout/app_bar_main"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true">
<android.support.design.widget.NavigationView
android:layout_above="@+id/llBottomLay"
android:id="@+id/nav_view"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<LinearLayout
android:id="@+id/llBottomLay"
android:layout_alignParentBottom="true"
android:layout_width="match_parent"
android:layout_height="55dp"
android:background="#e6e6e6"
android:orientation="horizontal">
<!--place your things here-->
</LinearLayout>
</RelativeLayout>
</android.support.v4.widget.DrawerLayout>
*的ID llBottomLay需要的LinearLayout由親屬或其他選項,根據您的需要
嘗試是這樣的替換:
<?xml version="1.0" encoding="utf-8"?>
<merge>
<android.support.v4.widget.DrawerLayout>
...removed for brevity...
</android.support.v4.widget.DrawerLayout>
<TextView
...your required properties...
android:gravity="bottom" android:layout_gravity="bottom"/>
</merge>
請嘗試以下代碼: -
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@color/side_menu_bg_color"
android:fitsSystemWindows="false"
android:scrollbars="none"
android:theme="@style/NavigationDrawerStyle"
app:headerLayout="@layout/nav_header_mains"
app:itemTextAppearance="@style/NavigationDrawer"
app:itemTextColor="@color/White"
app:menu="@menu/activity_main_drawer"
app:selectableItemBackground="@drawable/nav_drawer_item_selector">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:clickable="true"
android:orientation="vertical">
<include layout="@layout/nav_bar_playback_controls" /> // This is bottom layout with black background and 2 textviews
</LinearLayout>
</android.support.design.widget.NavigationView>
nav_bar_playback_controls.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/Black"
android:padding="10dp">
<TextView
android:id="@+id/artist"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="end"
android:maxLines="1"
android:paddingRight="5dp"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="@color/White"
android:text="Demo text"
android:textSize="23px"
android:textStyle="bold"
android:typeface="sans" />
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/artist"
android:layout_marginTop="4dp"
android:layout_toLeftOf="@+id/play_pause"
android:ellipsize="end"
android:text="Hello there"
android:maxLines="2"
android:paddingRight="5dp"
android:textColor="@color/White"
android:textSize="31px"
android:textStyle="bold|normal"
android:typeface="sans" />
<ImageButton
android:id="@+id/play_pause"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:background="@null"
android:padding="8dp" />
</RelativeLayout>
我試過這個,它完美的作品,謝謝。但是,它包含了我的導航抽屜項目,是否有可能在最底層(可滾動)像項目一樣實現該文本,以便用戶在頁面底部滾動時可以看到這些內容? –
@ArdaÇebi:那麼在這種情況下,您可以將您的導航抽屜項目放在listview或recyclerview中,然後放置底部,將這兩個視圖放在相對佈局中,使用Relative佈局應用佈局的上方或下方佈局。這個技巧不會覆蓋菜單項,用戶可以正確地看到它。如果可能, – Bhavnik
是否可以創建一個要點(例如項目等)? –
- 1. 帶導航抽屜的底部導航視圖
- 2. 如何在使用導航抽屜的片段時在底部導航欄上添加導航抽屜?
- 3. 導航抽屜帶碎片的揹包
- 4. 在導航中添加圖標抽屜
- 5. 帶導航抽屜的片段導航
- 6. 如何設計帶有子列表視圖的導航抽屜?
- 7. 如何將視圖添加到Android抽屜的底部
- 8. 如何在導航抽屜背景中顯示完整圖像
- 9. 帶有碎片的Android導航抽屜
- 10. 在片段上添加導航抽屜
- 11. 將圖標添加到導航抽屜
- 12. 導航抽屜如何添加上述列表視圖
- 13. 在片段的ListView中添加圖像 - 導航抽屜
- 14. 背景圖片的導航抽屜尺寸(簡介部分 - 第一行)
- 15. 添加按鈕,導航抽屜片段
- 16. 如何創建帶有背景圖片的導航欄鏈接?
- 17. 如何在iphone導航欄上添加背景圖片?
- 18. 添加導航抽屜AppCompatActivity
- 19. 導航抽屜標題圖片
- 20. 導航抽屜作爲圖片
- 21. 無法將谷歌地圖添加到導航抽屜片段
- 22. 如何在導航抽屜活動中添加Google地圖?
- 23. 如何在抽屜式導航圖標添加到項目
- 24. 如何將圖標添加到導航抽屜中的標題?
- 25. 導航欄背景圖片
- 26. 導航抽屜緩慢,視圖複雜
- 27. 導航抽屜列表視圖透明
- 28. 更新導航抽屜列表視圖
- 29. 列表視圖和導航抽屜
- 30. 抽屜導航textview和列表視圖
這不是我的工作的情況下,給出了錯誤。 –
你正在收到什麼錯誤? – Exigente05