2017-08-22 32 views
0

Google Firebaseの使用方法については、this tutorialに従っています。私は、次のコードしてきたと私は見て保たれているため:データがFirebaseに表示されない

Error: No resource found that matches the given name (at 'paddingBottom' with value '@dimen/ activity_vertical_margin')

それは次のようになりますので、私は、/ RES /値/ dimensメインアプリ/ SRS /に数行を追加しました:

<resources> 
    <dimen name="fab_margin">16dp</dimen> 
    <dimen name="activity_vertical_margin">5dp</dimen> 
    <dimen name="activity_horizontal_margin">5dp</dimen> 
</resources> 

データベースにアイテムを追加しようとしていますが、ボタンをクリックしてファイルを終了できないようです。その結果、Firebaseにはデータが表示されません。乾杯!

Screenshot of emulator running app

答えて

0

一度再確認してください:

1)Firebaseコンソールで、[データベースに移動します。

2)ルールを選択します。 1以下

ペースト:このようなXMLで余裕を与えてみてください

public class YourActivity extends AppCompatActivity implements View.OnClickListener { 

    public static FirebaseDatabase mFirebaseDatabase; 

    @Override 
    protected void onCreate(@Nullable Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     mFirebaseDatabase = FirebaseDatabase.getInstance(); 

     final EditText edittext = (EditText) findViewById(R.id.edittext); 
     findViewById(R.id.button).setOnClickListener(new View.OnClickListener() { 
      @Override 
      public void onClick(View view) { 
       if (edittext.getText().toString().length() > 0) { 
        mFirebaseDatabase.getReference("myref").push().setValue(edittext.getText().toString()); 
       } 
      } 
     }); 
    } 
} 

とyour_activity.xmlは

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

    <EditText 
     android:id="@+id/edittext" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     /> 
    <Button 
     android:id="@+id/button" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="Add Item"/> 
</LinearLayout> 
+0

伝説の、感謝のヒープ!それが働いた – Pembroke

0

次のようになります。

{ 
    "rules": { 
     ".read": true, 
     ".write": true 
    } 
} 

あなたの活動は次のようになります。

<TextView 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_margin="10dp" 
      /> 

注:これは上記のエラーを解決します。 これがあなたを助けてくれることを願って... あなたのフィードバックをご存知ですか?

関連する問題