如何在LinearLayout底部创建一个ImageButton

时间:2016-11-12 16:23:41

标签: android android-linearlayout android-scrollview android-imagebutton

XML文件     

<include
    android:id="@id/my_toolbar"
    layout="@layout/toobar"
    />

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent">

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



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

        <ImageButton
            android:layout_height="wrap_content"
            app:srcCompat="@android:drawable/ic_input_add"
            android:id="@+id/imageButton2"
            android:layout_width="50dp"
            android:layout_gravity="bottom"
            android:onClick="AddNewTextFields"


            />


    </LinearLayout>

</ScrollView>

我的Java文件,我以编程方式编写EdtTexts       列出alledittexts = new ArrayList();

public void AddNewTextFields(View view) {
    TotalEdittexts++;
    if (TotalEdittexts > 100)
        return;
    EditText editText = new EditText(this);
    Containerlayout.addView(editText);
    editText.setGravity(Gravity.TOP);
    LinearLayout.LayoutParams layoutParams = (LinearLayout.LayoutParams) editText.getLayoutParams();
    layoutParams.width = LinearLayout.LayoutParams.MATCH_PARENT;
    layoutParams.height = LinearLayout.LayoutParams.WRAP_CONTENT;

    editText.setLayoutParams(layoutParams);
    //if you want to identify the created editTexts, set a tag, like below
    editText.setTag("AddedEditText" + TotalEdittexts);

    alledittexts.add(editText);

}

每次EditText调用该功能时,我都会尝试让我的图片按钮停留在该图片按钮创建的onClickListener()下面。
设置它的重力并没有改变任何我希望得到一些帮助的东西。

2 个答案:

答案 0 :(得分:0)

试试这个:

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    androidd:orientation="vertical">
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="2">
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical"
            android:id="@+id/linearlayout">
            <EditText
                android:layout_width="match_parent"
                android:layout_height="wrap_content" />
        </LinearLayout>
    </ScrollView>
    <ImageButton
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:src="@android:drawable/ic_media_rew"/>
</LinearLayout>

答案 1 :(得分:0)

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



 <include
    android:id="@id/my_toolbar"
    layout="@layout/toobar"
    />

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="2">

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



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


    </LinearLayout>

</ScrollView>
<ImageButton
    android:layout_width="match_parent"
    android:src="@android:drawable/ic_media_rew"
    android:layout_height="wrap_content" />

</LinearLayout>

这是我的XML文件在编辑后的样子。
谢谢你的答案,它就像一个魅力