簡體   English   中英

Android ListView不顯示任何內容(相對布局)

[英]Android ListView doesn't display anything (Relative Layout)

我在使用ListView時遇到問題。 它不顯示。 我知道這是一個常見問題,但是我是Android新手。 在大多數示例中,可以使用layout_bellow屬性解決問題,但是我沒有任何其他控件。 這是我的XML代碼:

這是我的activity_main.xml:

<?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:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context="com.gkmicro.trrrrrrrrrrrrrr.MainActivity"
    tools:showIn="@layout/activity_main">

    <ListView
        android:id="@+id/myListView"        
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentEnd="true" />
</RelativeLayout>

這是我的MainActivity.java:

package com.gkmicro.trrrrrrrrrrrrrr;

import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.View;
import android.view.Menu;
import android.view.MenuItem;

public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);

    FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
    fab.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
                    .setAction("Action", null).show();
        }
    });
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.menu_main, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    //noinspection SimplifiableIfStatement
    if (id == R.id.action_settings) {
        return true;
    }

    return super.onOptionsItemSelected(item);
}
}

更改您的ListView以使用父級RelativeLayout所有寬度和高度

<?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:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context="com.gkmicro.trrrrrrrrrrrrrr.MainActivity"
    tools:showIn="@layout/activity_main">

    <ListView
        android:id="@+id/myListView"        
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</RelativeLayout>

按照推薦的方式@Erik Jhordan Rey Caffrey使用RecyclerView

編輯:如果您有任何問題, 這里是一個很好的示例,以在RelativeLayout內部實現一個簡單的listView

希望這可以幫助!

由於您的ListViewandroid:layout_alignParentBottom="true"因此它會以android:layout_height="wrap_content" android:layout_alignParentBottom="true"在底部

因此,使ListView這樣

<ListView
    android:id="@+id/myListView"        
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
     />

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM