androidtoolbar不顯示
⑴ Android關於Toolbar標題欄圖標比較大的問題
顏色較灰,我想是圖片的問題。推薦你一個網站,可以自由調整圖標的顏色,就不會出現這個問題了。網頁鏈接
至於標題欄圖標的顯示問題,首先需要ImageView控制項,根據Toolbar的寬度設置好控制項的大小,然後設置ImageView的對齊方式,之後的關鍵是實時調整控制項的padding和layout_margin屬性。具體可參照下面:
<ImageView
android:id="@+id/toolbarButton"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_gravity="end"
android:layout_marginTop="13dp"
android:paddingBottom="5dp"
android:paddingEnd="10dp"
android:paddingTop="15dp" />
歡迎採納,溝通呀!也在學習Android編程,哈哈
⑵ android 怎麼不顯示toolbar
現在App中基本都會用Toolbar來代替ActionBar,下面是可能的代碼片段。
布局文件
<LinearLayout 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:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
android:theme="@style/ThemeOverlay.AppComp
⑶ 為什麼 Android 中 Toolbar.setTitle 沒有效果
要看在哪裡調用的這個方法,一般如下:
、在setSupportActionBar(toolbar)之後調用toolbar.setTitle()的話。
在onCreate()中調用無效。
在onStart()中調用無效。
在onResume()中調用有效。
⑷ android中怎樣將toolbar擴展到狀態欄
有一個思路,使用正常的Toolbar,把頁面的布局設置為Overly,這樣頁面內容就會頂到屏幕最頂,toolbar和statusbar的顏色都設置為透明。如果要給toolbar加背景,可以在真正的內容布局那塊添加一個子view疊加在toolbar和startbar下面
⑸ android 5.0之後toolbar陰影怎麼去除
android開發中的問題
sdk版本使用5.0
使用support library中的toolbar,如何不顯示陰影???
根據網上查找的資料:
http://stackoverflow.com/questions/12246388/remove-shadow-below-actionbar/12246593#12246593,
分別對pre 5.0 和5.0 之後的設置作了說明,但總是不成功,誰有比較有效的方法呢?
下附上我的styles文件如下
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<resources>
<!--
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
<style name="AppBaseTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!--
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
-->
<!-- Remove shadow below action bar Android < 5.0 -->
<item name="android:windowContentOverlay">@null</item>
<!-- Support library compatibility -->
<item name="elevation">0dp</item>
</style>
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/theme_primary</item>
<item name="colorPrimaryDark">@color/theme_primary_dark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="AppBaseTheme1" parent="AppTheme">
<item name="android:windowIsTranslucent">true</item>
<!-- Remove shadow below action bar Android < 5.0 -->
<item name="android:windowContentOverlay">@null</item>
<!-- Support library compatibility -->
<item name="elevation">0dp</item>
</style>
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
</resources>
⑹ android toolbar 為什麼在導航欄上面
這是由於MaterialDesign設計中存在Z軸概念。按層級關系toolbar位於Activity的上方,需要將toolbar降層級,使其與activity同一層級。可以在程序裡面寫這樣的代碼,就會把toolbar當做actionbar,就不會遮擋了
⑺ Android中toolbar遮蓋住其他控制項該怎麼解決
toolbar一般是不可能遮住其它控制項的,toolbar是工具欄。通常在操作系統,Office 2010或其它軟體的界面中都有一個工具欄。
在PS中,界面左側有鋼筆工具,索引工具,圖章工具等等的一個框也是工具欄,也叫工具箱。
在計算機顯示器的圖形用戶界面上,工具欄放置了界面按鈕、圖標、菜單或其它輸入/輸出元素。
工具欄是顯示點陣圖式按鈕行的控制條,點陣圖式按鈕用來執行命令。按工具欄按鈕相當於選擇菜單項;如果某個菜單項具有和工具欄按鈕相同的ID,那麼使用工具欄按鈕將會調用映射到該菜單項的同一個處理程序。可以配置按鈕,使其在外觀和行為上表現為普通按鈕、單選按鈕或復選框。工具欄通常與框架窗口的頂部對齊,但 MFC工具欄可「停靠」在其父窗口的任何一邊或在它自己的袖珍框架窗口中浮動。工具欄也可「浮動」,用戶可更改其大小並用滑鼠拖動它。當用戶將滑鼠移動到工具欄按鈕上時,工具欄還可顯示工具提示。工具提示是個彈出的小窗口,簡要描述按鈕的作用。
有些應用程序,如圖形編輯軟體,允許工具欄分離並在窗口或其它工具欄之間移動。工具欄在辦公軟體套裝上很常見,如OpenOffice.org、圖形編輯軟體以及網頁瀏覽器如Inkscape和Mozilla Firefox。
⑻ Android studio中出現兩個錯誤,一個是toolbar,還一個fab,其中toolbar
似乎是你刪除模板時,殘留下來的變數,直接刪除就可以了
⑼ android工具欄隱藏了怎麼辦
如果開發工具的工具欄不見了如下
底部的也不見了
這個時候要設置回來很簡答的
版本變動補充:目前as 4.0.1版本在
view ---> Appearance 裡面
下面的是之前很早的版本。
點擊view 把消失的設置回來即可如下
Toolbar 就是 這些
Tool Buttons 就是這些
Status Bar 就是這些
Navigation Bar 就是這些 ,項目具體指向,打開了
3.6.3 版本工具調整了不過還是在view 裡面具體如下 需要的時候點擊一下就顯示了