gpt4 book ai didi

java - 当重力=顶部时,文本不会从顶部开始

转载 作者:太空宇宙 更新时间:2023-11-04 12:34:00 25 4
gpt4 key购买 nike

我一直在尝试将工具栏的标题设置为从工具栏的顶部开始,但是虽然我设置了 android:gravity="top" ,但文本仍然从工具栏的中心(垂直)开始。我认为这可能与使用工具栏的自定义布局有关,但我使用它是因为我需要它,所以我希望有人知道一种将文本设置为从顶部开始的方法。

这是我的工具栏所在的布局:

<?xml version="1.0" encoding="utf-8"?>
<!--suppress AndroidDomInspection -->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">

<android.support.percent.PercentRelativeLayout
android:id="@+id/layoutProjectOverview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="1dp">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar2"
android:title="@string/menuLabel1a"
app:layout_widthPercent="37%"
app:layout_heightPercent="26%"
android:gravity="top"
app:titleTextAppearance="@style/toolbarTitleText"
android:background="@drawable/toolbar_basic"
android:theme="@style/AppTheme.AppBarOverlay"
app:popupTheme="@style/AppTheme.PopupOverlay" />


<android.support.percent.PercentRelativeLayout
android:id="@+id/layoutObjectNav"
app:layout_widthPercent="63%"
app:layout_aspectRatio="400%"
android:layout_toRightOf="@id/toolbar2"
android:layout_toEndOf="@id/toolbar2"
android:background="@drawable/border_basic">

<!-- Some irrelevant xml code -->

</android.support.percent.PercentRelativeLayout>


<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/layoutObjectNav">

<!-- Some more irrelevant xml code -->

</RelativeLayout>
</android.support.percent.PercentRelativeLayout>

<!-- Some more irrelevant xml code -->

</RelativeLayout>

这是自定义工具栏布局代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<TextView
android:id="@+id/action_bar_title"
android:textSize="20sp"
android:layout_height="match_parent"
android:layout_width="wrap_content"
android:gravity="top"
android:padding="5dp"
android:ellipsize="end"
android:maxLines="3"/>

</LinearLayout>

这是我设置自定义布局(和其他一些东西)的代码:

@Override
protected void onResume() {
super.onResume();
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar2);
setSupportActionBar(toolbar);
currentProject = getIntent().getParcelableExtra("Project");
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE) {
getSupportActionBar().setTitle("");
getSupportActionBar().setDisplayShowCustomEnabled(true);
getSupportActionBar().setCustomView(R.layout.layout_toolbar);
((TextView) findViewById(R.id.action_bar_title)).setText(currentProject.getTitle());
Display display = getWindowManager().getDefaultDisplay();
Point size = new Point();
display.getSize(size);
int width = (int)( size.x * 0.37);
int height = Math.round(size.x * 0.63f * 0.25f);
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(width,height);
toolbar.setLayoutParams(params);
} else {
getSupportActionBar().setTitle(currentProject.getTitle());
}
// Some irrelevant java code
}

有人知道我做错了什么吗?

编辑:

这是我用于工具栏的 TextAppearance 样式:

<style name="toolbarTitleText">
<item name="android:textSize">20sp</item>
<item name="android:maxLines">3</item>
</style>

最佳答案

在工具栏中添加 TextView

像这样:

<android.support.v7.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="wrap_content">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>

</android.support.v7.widget.Toolbar>

关于java - 当重力=顶部时,文本不会从顶部开始,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37527222/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com