我無法弄清楚爲什麼以及如何阻止線性佈局重疊導航欄的生活。我熟悉Android Studio,不是版本2+。線性佈局重疊導航條
這個問題從來不是一個問題,我嘗試過多次搜索並試圖解決這個問題。 (以下屏幕截圖)。
我無法弄清楚爲什麼以及如何阻止線性佈局重疊導航欄的生活。我熟悉Android Studio,不是版本2+。線性佈局重疊導航條
這個問題從來不是一個問題,我嘗試過多次搜索並試圖解決這個問題。 (以下屏幕截圖)。
在content_main.xml
文件中把這個在您的LinearLayout
代碼。
android:layout_width="match_parent"
android:layout_height="match_parent"
在你LinearLayout
集填充頂部50dp
android:paddingTop="50dp"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="20dp"
android:layout_marginBottom="20dp"
您可以根據佈局位置改變邊距值。
發佈您的代碼.. – anonymous