From 5332f0b6e7b3728d15a04a523ea1077e65b3bff9 Mon Sep 17 00:00:00 2001 From: Rishav Sharma <33522557+Sparta0025@users.noreply.github.com> Date: Sun, 8 Apr 2018 12:01:51 +0530 Subject: [PATCH] Removed ImageButton There were only TextViews in the target pic so I removed the ImageButton. --- README.md | 102 +++++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 94 insertions(+), 8 deletions(-) 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); + + + } +}