最近我开始学习Android App开发。今天我正在尝试构建一个ListView。但在Listview属性中我在android:layout_height中出错。我将我的layout_height设置为" match_parent"," wrap_content"和" fill_parent"。但在每种情况下都有一条红线。
<?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="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.sourav.myapplication.MainActivity">
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</RelativeLayout>
答案 0 :(得分:1)
将列表视图更改为以下内容:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ListView
android:id="@+id/android:list"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
</LinearLayout>
我自己在http://jamesbyars.github.io/android/Android-ListView-Height/
打了一个简短的博客文章答案 1 :(得分:1)
1.只需去构建 - &gt;重建项目 2.构建 - &gt;干净的项目 希望它能起作用:))
答案 2 :(得分:0)
转到文件 - &gt; &#39;使缓存无效/重新启动&#39;并重启工作室。