1
我在我的工具欄中有一個文本視圖和一個tablayout。我想的TextView出現在頂部和tablayout出現在底部,但無論我如何努力將它們對齊,tablayout不會在底部出現,但在我的TextView右側如何對齊工具欄中的textview和tablayout
我應該怎麼如何正確對齊它們?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.country.kenya.MainActivity"
android:id="@+id/main_layout"
>
<android.support.v7.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:id="@+id/mainActivityBar"
android:layout_alignParentTop="true">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Uhuru Kenyatta"
android:id="@+id/appname_view"
android:gravity="top|left" />
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabMode="fixed"
app:tabGravity="fill"
android:background="@android:color/transparent"
/>
</android.support.v7.widget.Toolbar>
<android.support.v4.view.ViewPager
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.country.kenya.MainActivity"
android:layout_below="@+id/mainActivityBar" />
</RelativeLayout>
將'LinearLayout'的'android:layout_width =「wrap_content''更改爲'android:layout_width =」match_parent「''好好編輯它,以便我可以接受您的答案。爲什麼我的方法不起作用?工具欄使用哪種佈局? –
爲你高興,回答編輯,祝你好運! – Netero