0
私はリストビューの上にEditTextを置こうとしていますが、なぜlistiviewがテキストの上に重なっているのか分かりません。ここでは、レイアウトのソースは次のとおりです。swiperefreshlayoutでリストビューの上にEditTextを設定してください
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:padding="10dp"
>
<RelativeLayout
android:id="@+id/firstlayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >
<TextView
android:id="@+id/textEnter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="hello" />
<EditText
android:id="@+id/editTextInput"
android:layout_below="@+id/textEnter"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</RelativeLayout>
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/sw_refresh"
android:layout_width="match_parent"
android:layout_height="fill_parent">
<!--layout which should be refreshed should come here-->
<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:listSelector="@drawable/list_selector"
android:background="@drawable/customshape"
android:fadeScrollbars="false"
>
</ListView>
</android.support.v4.widget.SwipeRefreshLayout>
</RelativeLayout>
私は私の心にあったすべてのものを試していたとAndroid Studioのデザイナでレイアウトを忠実に再現警告
ちょうどこの行を追加します。何らかの理由で今リストビューが消えた – Josef