我正在尝试使用自定义工具栏。我想在工具栏的中心显示图标和标题。我已经尝试了很多将它设置在中心,但我无法做到。我的XML如下所示
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_height="?actionBarSize"
android:layout_width="match_parent"
android:background="@color/colorPrimary">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal"
android:orientation="horizontal">
<ImageView
android:padding="5dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher"/>
<TextView
android:id="@+id/toolbar_title"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:gravity="center"
android:text="MyApplication"
android:textAppearance="@style/TextAppearance.Widget.AppCompat.Toolbar.Title"
android:textColor="@color/colorWhite" />
</RelativeLayout>
</android.support.v7.widget.Toolbar>
但根据我的需要,它并不完美。我想要第一个徽标和工具栏中心的标题,但它看起来像这样
如果有人可以帮我做,请告诉我。如果非常简单,我真的很抱歉。我还在学习。感谢
答案 0 :(得分:2)
请改为尝试:
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_height="?actionBarSize"
android:layout_width="match_parent"
android:paddingRight="16dp"
android:background="@color/colorPrimary">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="horizontal">
<ImageView
android:padding="5dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/ic_launcher"/>
<TextView
android:id="@+id/toolbar_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="MyApplication"
android:textAppearance="@style/TextAppearance.Widget.AppCompat.Toolbar.Title"
android:textColor="@color/colorWhite" />
</LinearLayout>
</android.support.v7.widget.Toolbar>
使用LinearLayout
可以轻松确保观看次数不重叠。我还在右侧添加了16dp的填充,以补偿自动添加到左侧的16dp边距。
答案 1 :(得分:0)
试试这个!使用具有水平方向imo的LinearLayout更容易一点。根据需要更改imageview源和标题文本:
class Service {
constructor() {
this.link = [];
}
}
var service = new Service();
service.link.push(1);
service.link.push(2);
service.link.push(3);
for (let x of service) {
console.log(x);
}
答案 2 :(得分:0)
尝试为图像视图提供布局边距,并将文本视图中心水平对齐,这将为您提供所需的输出。
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_height="?actionBarSize"
android:layout_width="match_parent"
android:background="@color/colorPrimary">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal"
android:orientation="horizontal">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="300dp"
android:padding="5dp"
android:src="@mipmap/ic_launcher" />
<TextView
android:id="@+id/toolbar_title"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:gravity="center"
android:text="MyApplication"
android:textAppearance="@style/TextAppearance.Widget.AppCompat.Toolbar.Title"
android:textColor="@color/colorWhite" />
</RelativeLayout>
</android.support.v7.widget.Toolbar>