0

我是新的android开发。下面我附上我的布局文件。

在我的布局中,我有一个和ListView一个。当我插入任务并按下该任务时,该任务将被一一添加。EditTextImageButtonEditTextImageButtonListView

我的问题是假设我添加了 4 个以上的任务意味着EditText视图ImageButton不可见,因为列表项占据了那个位置,请提供解决方案,谢谢...

布局:

     <LinearLayout 
         android:layout_width="fill_parent"
         android:layout_height="wrap_content">

        <ListView
            android:id="@+id/frontpagetasklistid"
            android:layout_width="fill_parent"
            android:layout_height="375dp" >

        </ListView>
        </LinearLayout>
        <LinearLayout 
         android:layout_width="fill_parent"
         android:layout_height="wrap_content">

        <RelativeLayout 
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom"
            >
        <EditText 
            android:id="@+id/edittextidAddTodayTask"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:background="@drawable/edittextselector"
            android:hint="Add Today Task"/>

        <ImageButton
            android:id="@+id/imagebuttonidAddTodayTask"
            android:layout_width="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true"
            android:layout_height="wrap_content"
            android:layout_gravity="right"
            android:src="@drawable/addtask" />

        </RelativeLayout>
        </LinearLayout>

    </LinearLayout>
4

5 回答 5

1

尝试这个:

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

      <RelativeLayout 
        android:id="@+id/button_layout"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom"
        >

    <EditText 
        android:id="@+id/edittextidAddTodayTask"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:background="@drawable/edittextselector"
        android:hint="Add Today Task"/>

    <ImageButton
        android:id="@+id/imagebuttonidAddTodayTask"
        android:layout_width="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:layout_height="wrap_content"
        android:layout_gravity="right"
        android:src="@drawable/addtask" />

 </RelativeLayout>
 <ListView
    android:id="@+id/frontpagetasklistid"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" 
    android:layout_above="@+id/button_layout">

</ListView>

</RelativeLayout>

或者

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

   <ListView
    android:id="@+id/frontpagetasklistid"
    android:layout_width="fill_parent"
    android:layout_height="0dp"         
    android:layout_weight="1"
    android:layout_above="@+id/button_layout">

   </ListView>  

   <RelativeLayout 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom"
        >
    <EditText 
        android:id="@+id/edittextidAddTodayTask"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:background="@drawable/edittextselector"
        android:hint="Add Today Task"/>

    <ImageButton
        android:id="@+id/imagebuttonidAddTodayTask"
        android:layout_width="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:layout_height="wrap_content"
        android:layout_gravity="right"
        android:src="@drawable/addtask" />

 </RelativeLayout>


</LinearLayout>
于 2013-07-09T05:39:41.857 回答
0

已编辑: 尝试添加您的 editText 和 ImageButton 之类的页脚:

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

<RelativeLayout 
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:layout_alignParentTop="true"
 android:layout_above="@+id/lay1">

<ListView
    android:id="@+id/frontpagetasklistid"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

</ListView>
</RelativeLayout>


<RelativeLayout 
    android:id="@+id/lay1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    >

<ImageButton
    android:id="@+id/imagebuttonidAddTodayTask"
    android:layout_width="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_height="wrap_content"
    android:layout_gravity="right"
    android:src="@drawable/addtask"
     />

<EditText
    android:id="@+id/edittextidAddTodayTask"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:ems="10"
     android:background="@drawable/edittextselector"
    android:hint="Add Today Task" />

</RelativeLayout>

这可能会帮助你....

于 2013-07-09T05:28:32.993 回答
0

我猜你的edittext和imagebutton在你的listview下面。在这种情况下,你可以在listview的页脚中添加这个视图。你可以谷歌找到如何在listview页脚中添加视图

这是一个很好的例子: 在相对布局上对齐按钮和编辑文本

希望对你有帮助!!

于 2013-07-09T04:57:40.807 回答
0

我没有运行下面的解决方案,但是你可以通过使用layout_weightSumlayout_weight属性来实现它。

<?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" 
        android:layout_weigthSum="1">

     <LinearLayout 
         android:layout_width="fill_parent"
         android:layout_height="0dp"
         android:layout_weight="0.9">

        <ListView
            android:id="@+id/frontpagetasklistid"
            android:layout_width="fill_parent"
            android:layout_height="375dp" >

        </ListView>
        </LinearLayout>
        <LinearLayout 
         android:layout_width="fill_parent"
         android:layout_height="0dp"
         android:layout_weight="0.1">

        <RelativeLayout 
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom"
            >
        <EditText 
            android:id="@+id/edittextidAddTodayTask"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:background="@drawable/edittextselector"
            android:hint="Add Today Task"/>

        <ImageButton
            android:id="@+id/imagebuttonidAddTodayTask"
            android:layout_width="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true"
            android:layout_height="wrap_content"
            android:layout_gravity="right"
            android:src="@drawable/addtask" />

        </RelativeLayout>
        </LinearLayout>

    </LinearLayout>
于 2013-07-09T04:57:56.840 回答
0

我需要尝试一下,以证明我是对的,但它应该可以将 ListView 放入具有固定高度的 ScrollView 中。

于 2013-07-09T04:59:01.990 回答