應用程序未從Firebase數據庫檢索任何數據。應用程序運行良好,但在應用程序內不顯示任何內容,只顯示空白。這裏是我的代碼從Firebase數據庫中檢索時未顯示數據
public class profilemain extends AppCompatActivity {
private FirebaseAuth mAuth;
private FirebaseAuth.AuthStateListener mAuthListener;
private Firebase url;
private ListView listview;
ArrayList<String> arrayList=new ArrayList<>();
ArrayAdapter<String> arrayAdapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_profilemain);
listview=(ListView) findViewById(R.id.listview);
Firebase.setAndroidContext(this);
url=new Firebase("https://-------.firebaseio.com/users");
arrayAdapter=new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1,arrayList);
listview.setAdapter(arrayAdapter);
url.addChildEventListener(new com.firebase.client.ChildEventListener() {
@Override
public void onChildAdded(com.firebase.client.DataSnapshot dataSnapshot, String s) {
String value=dataSnapshot.getValue(String.class);
arrayList.add(value);
arrayAdapter.notifyDataSetChanged();
}
// .. Other Overriden functions
});
mAuth=FirebaseAuth.getInstance();
mAuthListener =new FirebaseAuth.AuthStateListener() {
@Override
public void onAuthStateChanged(@NonNull FirebaseAuth firebaseAuth) {
if (firebaseAuth.getCurrentUser()==null){
startActivity(new Intent(profilemain.this,MainActivity.class));
}
}
};
}
@Override
protected void onStart() {
super.onStart();
mAuth.addAuthStateListener(mAuthListener);
}
}
這裏是我的xml文件如下。該應用程序運行良好,但沒有顯示數據。
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.food.sheenishere.stark.profilemain">
<FrameLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<ListView
android:id="@+id/listview"
style="@style/Widget.AppCompat.ListView"
android:layout_width="wrap_content"
android:layout_height="337dp" />
</FrameLayout>
<android.support.design.widget.BottomNavigationView
android:id="@+id/navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:background="?android:attr/windowBackground"
app:menu="@menu/navigation" />
</LinearLayout>
下面是我的Firebase數據庫的模式。
請特別注意您的問題。這個問題正在尋求調試幫助。 –
我具體說明未檢索到數據 –
請在Firebase中添加數據的虛擬快照。我們需要在Firebase中查看您的數據結構。 –