<?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" android:paddingTop="10dp" android:paddingLeft="15dp" > <EditText android:id="@+id/searchbox" android:layout_width="340dp" android:layout_height="24dp" android:background="@drawable/search_box" android:drawableStart="@drawable/baseline_search_24" android:ems="10" android:hint="搜索" android:inputType="textPersonName" android:paddingLeft="10dp" android:textColorHint="#50000000" android:textSize="12sp" /> <TextView android:id="@+id/textView8" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_toRightOf="@+id/searchbox" android:layout_alignTop="@+id/searchbox" android:layout_marginLeft="12dp" android:textSize="16sp" android:text="调序" android:textColor="#00B7FF" /> <ListView android:id="@+id/result" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_below="@+id/searchbox" android:layout_marginTop="20dp" /> </RelativeLayout>listview绑定simple adapter运行后listview只显示一条灰色的线在edittext下面
时间: 2023-11-28 14:05:16 浏览: 162
你的ListView的高度是`match_parent`,但是它的父布局是RelativeLayout,并且没有设置ListView的相对位置。因此,它会显示在RelativeLayout的左上角,只有一条灰色的线。
你需要将ListView的`android:layout_below`属性设置为你希望它显示的组件的id,如下所示:
```
<ListView
android:id="@+id/result"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/textView8" // 设置为textView8的下方
android:layout_marginTop="20dp" />
```
这样,ListView就会显示在textView8下方,并且不会被隐藏。
希望这个解决方案能够帮助到你。
相关问题
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/activity_main" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.android.student.Activity.MainActivity">解释这几行代码
这几行代码是一个 Android 应用程序中主 Activity 的布局文件。解释如下:
- 第一行是 XML 声明语句,指定了 XML 版本和编码方式。
- 第二行是 RelativeLayout 标签,表示该布局采用 RelativeLayout 布局方式。
- 第三行到第五行是命名空间声明,用于引用 Android 应用程序包中的资源。
- 第六行是指定该布局文件对应的 Activity 的 ID 为 activity_main。
- 第七行和第八行分别指定该布局文件的宽度和高度为 match_parent,即与父容器的尺寸相同。
- 第九行是指定该布局文件所在的应用程序包和其主 Activity 的类名。
<?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:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <android.support.v7.widget.Toolbar android:id="@+id/toolbar_settings" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="?attr/colorPrimary" android:minHeight="?attr/actionBarSize" android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" app:title="设置" /> <RelativeLayout android:id="@+id/settings_content" android:layout_width="match_parent" android:layout_height="match_parent"/> </LinearLayout>
这是 Android 布局文件的示例代码,其中包括一个 LinearLayout 和一个 RelativeLayout,以及一个 Toolbar。通过布局文件中的 ID 属性,可以在代码中获取对应的 View 对象,例如:
```java
// 获取 Toolbar
Toolbar toolbar = findViewById(R.id.toolbar_settings);
// 获取 RelativeLayout
RelativeLayout settingsContentLayout = findViewById(R.id.settings_content);
```
这里通过 findViewById() 方法获取对应的 View 对象,方法的参数需要传入布局文件中设置的 ID 值。获取到 View 对象后,就可以对其进行进一步的操作,例如修改其属性、添加事件监听器等。
阅读全文