我正在尝试创建一个可穿戴的应用程序,我需要在工具栏中添加自定义布局,其中包含相对布局的TextView,属性android:layout_center_in_parent设置为true。但问题是TextView没有出现在ToolBar的中心。任何人都可以帮我如何在ToolBar的中心显示TextView。
我使用下面的代码为工具栏和我的布局添加自定义视图,如下所示:
android.support.v7.widget.Toolbar toolbar = ( android.support.v7.widget.Toolbar)findViewById(R.id.toolbar);
toolbar.setTitle("");
// toolbar.setContentInsetsAbsolute(0,0);
setSupportActionBar(toolbar);
LayoutInflater mInflater= LayoutInflater.from(getApplicationContext());
View mCustomView = mInflater.inflate(R.layout.toolbar_custom_view, null);
toolbar.addView(mCustomView);
我的activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.wearable.view.BoxInsetLayout
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:layout_height="match_parent"
android:layout_width="match_parent"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="5dp"
app:layout_box="all">
<include
android:id="@+id/toolbar"
layout="@layout/toolbar" />
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/framelayout"
>
</FrameLayout>
</LinearLayout>
</android.support.wearable.view.BoxInsetLayout>
toolbar.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="30dp"
xmlns:app="http://schemas.android.com/tools"
android:background="?attr/colorPrimary"
local:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
local:popupTheme="@style/ThemeOverlay.AppCompat.Light"
>
</android.support.v7.widget.Toolbar>
toolbar_custom_view.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">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Patient List"
android:id="@+id/title"
android:layot_center_in_parent="true"
android:gravity="center"
/>
</RelativeLayout>
答案 0 :(得分:1)
试试这个.. jsut更改TextView xml代码。如果您将android:layout_width="wrap_content"
更改为android:layout_width="match_parent"
,那么它将横向居中..
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Patient List"
android:id="@+id/title"
android:gravity="center"/>
</RelativeLayout>
如果您将android:layout_height="wrap_content"
更改为match_parent
,那么您的文字视图也会垂直居中......