diff --git a/README.md b/README.md index 07b91b0..26b5bad 100644 --- a/README.md +++ b/README.md @@ -1,18 +1,104 @@ -# WeeklyChallengeOne + + -After you have successfully fixed it, you have to materialize it :smiley:. Use your creativity and showcase it in #showcase channel. + + + + + + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:textStyle="bold" + android:textColor="#000000" + android:text="@string/Card_View" + android:textSize="30sp" + + android:layout_marginTop="10dp" + /> + + + + + + + + + + //for main.xml + package com.example.android.practice; + +import android.support.v7.app.AppCompatActivity; +import android.os.Bundle; + +public class MainActivity extends AppCompatActivity { + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_main); + + + } +}