如何在活动结束时定位控制?

时间:2014-12-16 10:30:44

标签: android xml

enter image description here

我想在活动结束时添加一个控件,我需要有我的活动xml文件 note_date即将结束活动。

谢谢大家。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<EditText
    android:id="@+id/note_title"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:hint="@string/note_title_hint" />

<EditText
    android:id="@+id/note_body"
    android:layout_width="match_parent"
    android:layout_height="401dp"
    android:gravity="top"
    android:hint="@string/note_body_hint"
    android:inputType="textMultiLine" >

    <requestFocus />
</EditText>

<EditText
    android:id="@+id/note_date"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:hint="@string/note_date_hint"
    android:inputType="datetime" />

2 个答案:

答案 0 :(得分:1)

试试这个

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

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_above="@+id/note_date"
    android:orientation="vertical" >
</LinearLayout>

<EditText
    android:id="@+id/note_date"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:ems="10" >

    <requestFocus />
</EditText>

答案 1 :(得分:1)

<LinearLayout 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"
    android:gravity="bottom"
    tools:context=".Activity" >

    <EditText
        android:id="@+id/editText1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
       android:ems="10"
       >

        <requestFocus />
    </EditText>

</LinearLayout>