如何使android活动标题可编辑?

时间:2016-06-14 15:18:57

标签: android manifest

有人可以帮助我使我的活动标题可编辑吗?我有这个笔记应用程序,我希望能够为我想要添加的特定笔记添加标题。我尝试使用菜单中的EditText的id作为Manifest.xml中的标签,但它不起作用。

菜单的示例代码

<?xml version="1.0" encoding="utf-8"?>
<menu  
    xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto">   

    <item 
        android:title="Ok" 
        android:icon="@drawable/ic_done_white_48dp" 
        android:id="@+id/note_details_save" 
        app:showAsAction="always"/>

    <item 
        android:title="back" 
        android:icon="@drawable/ic_back_button" 
        android:id="@+id/note_details_back" 
        android:orderInCategory="0" 
        app:showAsAction="always"/>

    <EditText 
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" 
        android:id="@+id/note_details_title"/>

</menu>

3 个答案:

答案 0 :(得分:0)

在您的活动中单独使用setTitle(“我的标题”)。

“我的标题”应该是您的editText的内容。

String title = et.getText().toString();

答案 1 :(得分:0)

<强> styles.xml

<resources>
    <style name="AppTheme" parent="Theme.AppCompat.NoActionBar">
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>
</resources>

<强> activity_main.xml中

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <LinearLayout
        android:background="@color/colorPrimary"
        android:layout_width="match_parent" android:layout_height="?attr/actionBarSize"
        android:elevation="8dp" app:elevation="8dp">
        <EditText
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:inputType="textPersonName"
            android:paddingLeft="10dp"
            android:text="@string/app_name"
            android:ems="10"
            android:id="@+id/editText2"
            android:layout_weight="1" />
    </LinearLayout>
</android.support.constraint.ConstraintLayout>

Editable title

答案 2 :(得分:0)

@Mel

我不知道为什么没人能正确回答这个问题。解决方法如下:

在活动的布局文件中(您要在其中编辑标题)。在工具栏标签内添加editText。它应该看起来像这样(使用支持库): (重要:这里要注意的是工具栏内的editText,不必太担心其他标记的属性。)

<android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/AppTheme.PopupOverlay" >

            <EditText
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:id="@+id/yourId"
                android:hint="yourHint"
                android:background="@android:color/transparent"/>

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

    </android.support.design.widget.AppBarLayout>

现在,在上述活动的onCreate方法上,禁用默认的不可编辑标题:

getSupportActionBar().setDisplayShowTitleEnabled(false);

如果要控制editText在工具栏中的位置,则可以将其包装在ConstraintLayout或RelativeLayout中。

就这样...祝大家好运