1
我使用兩個線性佈局,其中包含一個佈局中的編輯文本和另一個佈局中的列表視圖。我想要顯示佈局包含列表視圖重疊佈局包含edittext。如何組織在XML如何重疊線性佈局
我使用兩個線性佈局,其中包含一個佈局中的編輯文本和另一個佈局中的列表視圖。我想要顯示佈局包含列表視圖重疊佈局包含edittext。如何組織在XML如何重疊線性佈局
佈局您必須將組織布局如下圖所示:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<!-- Your EditText is here -->
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<!-- Your ListView is here -->
</LinearLayout>
</RelativeLayout>
用這種方式,你有你的ListView Overlaping您的EditText。
重疊,你是什麼意思?你的描述非常含糊...... – 2013-03-15 03:28:58
從我所瞭解的你應該有'RelativeLayout'作爲父母然後上述兩個佈局作爲孩子 – Naveen 2013-03-15 03:47:14
想顯示列表佈局左上方的編輯文本佈局 – vignesh 2013-03-15 03:53:17