gpt4 book ai didi

android - 在android中创建自定义工具栏

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:15:40 26 4
gpt4 key购买 nike

我正在尝试在 android 中创建一个自定义扩展工具栏,工具栏中有一个编辑文本。我想要实现的布局看起来像这样

enter image description here

我编写的实现代码是这样的:

<RelativeLayout 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_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">

<android.support.v7.widget.Toolbar
android:id="@+id/my_awesome_toolbar"
android:layout_height="256dp"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"

>

<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/searchbox"
android:layout_alignParentBottom="true"
android:text="Test"
android:background="#ffffff"
/>

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

Activity有如下代码

protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.my_awesome_toolbar);
if (toolbar != null) {
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayShowTitleEnabled(false);
getSupportActionBar().setDisplayShowHomeEnabled(false);
}}

但我得到的是: enter image description here

没有很多关于自定义扩展工具栏的教程,因此非常感谢您的帮助。

最佳答案

我认为您只需要在工具栏设置中添加 gravity="bottom",例如:

   <android.support.v7.widget.Toolbar
android:id="@+id/my_awesome_toolbar"
android:gravity="bottom"
android:layout_height="256dp"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary">

我必须在布局底部添加一些边距才能显示编辑内容,但这应该使文本位于编辑内容的底部。

或者您可以在 EditText 上设置 layout_gravity。

        <EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
android:layout_gravity="bottom"
android:id="@+id/searchbox"
android:text="Test"
android:background="#ffffff"/>

我很惊讶 alignParentBottom 编译。我不认为 Toolbar 继承自 RelativeLayout。

编辑 - 这是我的完整布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<android.support.v7.widget.Toolbar
android:id="@+id/my_awesome_toolbar"
android:layout_height="264dp"
android:layout_width="match_parent"
android:layout_alignParentBottom="true"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary">

<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
android:layout_gravity="bottom"
android:id="@+id/searchbox"
android:text="Test"
android:background="#ffffff"/>
</android.support.v7.widget.Toolbar>
</RelativeLayout>

结果是:

ToolBar

关于android - 在android中创建自定义工具栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30534065/

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