0
即時通訊與我的佈局有問題。我已經在一個活動中實現了一個帶查看傳呼機的標籤欄佈局,並且我一直在尋找答案,但沒有運氣來解決這個問題,我的問題是我的標籤欄有一個元素android:layout_alignParentBottom="true"
。起初它沒有顯示(圖片下方) tab bar not showingandroid:如何不覆蓋導航欄
並添加了一個元素android:layout_marginBottom="56dp"
來檢查它是否真的覆蓋導航欄,它似乎它。 tab bar shows
有人可以幫助我嗎?我認爲我的問題是風格。 這裏是我的風格:
<style name="Base.Theme.MyCureTheme" parent="@style/Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimary</item>
<item name="colorAccent">@color/colorPrimary</item>
<item name="android:textColorPrimary">@color/font_darker_blue</item>
<item name="android:textColor">@color/font_gray</item>
</style><style name="MyCustomTabLayout" parent="Widget.Design.TabLayout">
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:minHeight">?attr/actionBarSize</item>
<item name="tabIndicatorColor">@android:color/transparent</item>
</style>
<style name="ToolbarTheme" parent="Widget.AppCompat.Toolbar">
<item name="actionMenuTextColor">@color/white</item>
<item name="colorControlNormal">@color/white</item>
<item name="colorControlActivated">@color/white</item>
<item name="android:textColorPrimary">@color/white</item>
<item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
<item name="selectableItemBackground">?android:selectableItemBackground</item>
<item name="selectableItemBackgroundBorderless">?android:selectableItemBackground</item>
<item name="colorControlHighlight">@color/colorPrimary</item>
</style>
<style name="ToolbarThemeDark"
parent="Widget.AppCompat.Toolbar">
<item name="actionMenuTextColor">@color/colorPrimary</item>
<item name="colorControlNormal">@color/font_gray</item>
</style>
編輯:
XML:
<RelativeLayout 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">
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_above="@+id/tabs"
android:background="@color/font_gray"/>
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_alignParentBottom="true"
android:layout_height="?android:attr/actionBarSize"
android:background="@color/white"
android:layout_marginBottom="56dp"
app:tabGravity="center"/>
<com.mycurepatient.android.widgets.CustomViewPager
android:id="@+id/viewpager"
android:layout_above="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</RelativeLayout>
請發表您的XML佈局。 –
@krislarson added xml –
嗯......看不出有什麼明顯的錯誤,您的CustomViewPager會覆蓋'onMeasure()'或'onLayout'嗎? –