{"id":20122805,"url":"https://github.com/amitthecoder/profile-app","last_synced_at":"2025-03-02T20:25:49.079Z","repository":{"id":172161004,"uuid":"648930382","full_name":"amitthecoder/profile-app","owner":"amitthecoder","description":"Profile Design in Android Studio using xml ( material designe )","archived":false,"fork":false,"pushed_at":"2023-06-05T11:19:27.000Z","size":25744,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-01T18:57:36.410Z","etag":null,"topics":["android","android-application","android-studio","android-ui","kotlin","kotlin-android","kotlin-native","login","material-design","material-ui","profile","profile-card","profile-page","xml"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/amitthecoder.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-06-03T08:33:13.000Z","updated_at":"2024-05-29T14:04:08.000Z","dependencies_parsed_at":null,"dependency_job_id":"92f35eff-1f92-4984-8e23-0d9e4fdb9cc5","html_url":"https://github.com/amitthecoder/profile-app","commit_stats":null,"previous_names":["amitthecoder/profile-app"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amitthecoder%2Fprofile-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amitthecoder%2Fprofile-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amitthecoder%2Fprofile-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amitthecoder%2Fprofile-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/amitthecoder","download_url":"https://codeload.github.com/amitthecoder/profile-app/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241566163,"owners_count":19983258,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","android-application","android-studio","android-ui","kotlin","kotlin-android","kotlin-native","login","material-design","material-ui","profile","profile-card","profile-page","xml"],"created_at":"2024-11-13T19:41:14.255Z","updated_at":"2025-03-02T20:25:49.059Z","avatar_url":"https://github.com/amitthecoder.png","language":"Kotlin","readme":"## Screenshot\n\n![Demo](https://raw.githubusercontent.com/amitthecoder/profile-app/main/screenshot.png \"Demo\")\n\n## XML Code\n\n```xml\n\u003c?xml version=\"1.0\" encoding=\"utf-8\"?\u003e\n\u003cScrollView xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:tools=\"http://schemas.android.com/tools\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"\n    xmlns:app=\"http://schemas.android.com/apk/res-auto\"\n    tools:context=\".MainActivity\"\u003e\n\n    \u003cLinearLayout\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        android:orientation=\"vertical\"\n        android:layout_marginTop=\"10dp\"\n        android:padding=\"15dp\"\u003e\n\n        \u003cTextView\n            android:layout_width=\"wrap_content\"\n            android:layout_height=\"wrap_content\"\n            android:text=\"@string/profile\"\n            android:textStyle=\"bold\"\n            android:textSize=\"30sp\"\n            android:fontFamily=\"@font/poppinsbold\"\n            android:layout_gravity=\"center\"\n            android:textColor=\"@color/black\"/\u003e\n\n        \u003ccom.google.android.material.card.MaterialCardView\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"\n            app:cardCornerRadius=\"10dp\"\n            android:layout_marginTop=\"20dp\"\u003e\n\n            \u003cLinearLayout\n                android:layout_width=\"match_parent\"\n                android:layout_height=\"wrap_content\"\n                android:orientation=\"vertical\"\n                android:layout_marginTop=\"0dp\"\n                android:padding=\"15dp\"\u003e\n\n            \u003ccom.google.android.material.imageview.ShapeableImageView\n                android:layout_width=\"150dp\"\n                android:layout_height=\"150dp\"\n                android:layout_gravity=\"center\"\n                android:src=\"@drawable/user\"/\u003e\n            \u003cLinearLayout\n                android:layout_width=\"wrap_content\"\n                android:layout_height=\"wrap_content\"\n                android:layout_gravity=\"center\"\n                android:layout_marginTop=\"15dp\"\n                android:orientation=\"horizontal\"\u003e\n\n                \u003cTextView\n                    android:layout_width=\"wrap_content\"\n                    android:layout_height=\"wrap_content\"\n                    android:text=\"@string/amit_kumar\"\n                    android:textAlignment=\"center\"\n                    android:textSize=\"20sp\"\n                    android:fontFamily=\"@font/poppinsmedium\"\n                    android:textColor=\"@color/black\"\n                    android:textStyle=\"bold\"/\u003e\n\n                \u003ccom.airbnb.lottie.LottieAnimationView\n                    android:layout_width=\"20dp\"\n                    android:layout_height=\"20dp\"\n                    android:layout_gravity=\"center\"\n                    android:layout_marginBottom=\"1dp\"\n                    android:layout_marginStart=\"3dp\"\n                    app:lottie_rawRes=\"@raw/verified\"\n                    app:lottie_autoPlay=\"true\"\n                    app:lottie_loop=\"true\"/\u003e\n\n            \u003c/LinearLayout\u003e\n            \u003c/LinearLayout\u003e\n\n        \u003c/com.google.android.material.card.MaterialCardView\u003e\n\n        \u003ccom.google.android.material.card.MaterialCardView\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"\n            android:layout_marginTop=\"10dp\"\n            app:cardCornerRadius=\"10dp\"\u003e\n\n            \u003cLinearLayout\n                android:layout_width=\"match_parent\"\n                android:layout_height=\"wrap_content\"\n                android:orientation=\"vertical\"\n                android:padding=\"15dp\"\u003e\n                \u003cRelativeLayout\n                    android:layout_width=\"match_parent\"\n                    android:layout_height=\"wrap_content\"\n                    android:layout_marginStart=\"10dp\"\n                    android:layout_marginEnd=\"10dp\"\u003e\n                    \u003cTextView\n                        android:layout_width=\"wrap_content\"\n                        android:layout_height=\"wrap_content\"\n                        android:textColor=\"@color/black\"\n                        android:text=\"@string/about\"\n                        android:fontFamily=\"@font/poppinsmedium\"\n                        android:textSize=\"15sp\"\n                        android:layout_alignParentStart=\"true\"\n                        android:textStyle=\"bold\"/\u003e\n\n                    \u003cTextView\n                        android:layout_width=\"wrap_content\"\n                        android:layout_height=\"wrap_content\"\n                        android:layout_marginTop=\"30dp\"\n                        android:textColor=\"@color/black\"\n                        android:text=\"@string/bio\"\n                        android:fontFamily=\"@font/poppinsregular\"\n                        android:textSize=\"15sp\"\n                        android:layout_alignParentStart=\"true\" /\u003e\n                \u003c/RelativeLayout\u003e\n\n            \u003c/LinearLayout\u003e\n\n        \u003c/com.google.android.material.card.MaterialCardView\u003e\n\n        \u003ccom.google.android.material.card.MaterialCardView\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"\n            android:layout_marginTop=\"10dp\"\n            app:cardCornerRadius=\"10dp\"\u003e\n\n            \u003cLinearLayout\n                android:layout_width=\"match_parent\"\n                android:layout_height=\"wrap_content\"\n                android:orientation=\"vertical\"\n                android:padding=\"15dp\"\u003e\n\n                \u003cRelativeLayout\n                    android:layout_width=\"match_parent\"\n                    android:layout_height=\"wrap_content\"\n                    android:layout_marginStart=\"10dp\"\n                    android:layout_marginEnd=\"10dp\"\u003e\n                    \u003cTextView\n                        android:layout_width=\"wrap_content\"\n                        android:layout_height=\"wrap_content\"\n                        android:textColor=\"@color/black\"\n                        android:text=\"@string/user_information\"\n                        android:fontFamily=\"@font/poppinsmedium\"\n                        android:textSize=\"15sp\"\n                        android:layout_alignParentStart=\"true\"\n                        android:textStyle=\"bold\"/\u003e\n                \u003c/RelativeLayout\u003e\n\n                \u003cRelativeLayout\n                    android:layout_width=\"match_parent\"\n                    android:layout_height=\"wrap_content\"\n                    android:layout_marginStart=\"10dp\"\n                    android:layout_marginEnd=\"10dp\"\n                    android:layout_marginTop=\"15dp\"\u003e\n                    \u003cTextView\n                        android:layout_width=\"wrap_content\"\n                        android:layout_height=\"wrap_content\"\n                        android:textColor=\"@color/black\"\n                        android:text=\"@string/username_\"\n                        android:fontFamily=\"@font/poppinsmedium\"\n                        android:textSize=\"15sp\"\n                        android:layout_alignParentStart=\"true\"\n                        android:textStyle=\"bold\"/\u003e\n                    \u003cTextView\n                        android:layout_width=\"wrap_content\"\n                        android:layout_height=\"wrap_content\"\n                        android:textColor=\"#6E6C6C\"\n                        android:text=\"@string/amitthecoder\"\n                        android:fontFamily=\"@font/poppinsmedium\"\n                        android:textSize=\"15sp\"\n                        android:layout_alignParentEnd=\"true\"\n                        android:textStyle=\"bold\"/\u003e\n                \u003c/RelativeLayout\u003e\n\n                \u003cRelativeLayout\n                    android:layout_width=\"match_parent\"\n                    android:layout_height=\"wrap_content\"\n                    android:layout_marginTop=\"15dp\"\n                    android:layout_marginStart=\"10dp\"\n                    android:layout_marginEnd=\"10dp\"\u003e\n                    \u003cTextView\n                        android:layout_width=\"wrap_content\"\n                        android:layout_height=\"wrap_content\"\n                        android:textColor=\"@color/black\"\n                        android:text=\"@string/gender\"\n                        android:fontFamily=\"@font/poppinsmedium\"\n                        android:textSize=\"15sp\"\n                        android:layout_alignParentStart=\"true\"\n                        android:textStyle=\"bold\"/\u003e\n                    \u003cTextView\n                        android:layout_width=\"wrap_content\"\n                        android:layout_height=\"wrap_content\"\n                        android:textColor=\"#6E6C6C\"\n                        android:text=\"@string/male\"\n                        android:fontFamily=\"@font/poppinsmedium\"\n                        android:textSize=\"15sp\"\n                        android:layout_alignParentEnd=\"true\"\n                        android:textStyle=\"bold\"/\u003e\n                \u003c/RelativeLayout\u003e\n\n                \u003cRelativeLayout\n                    android:layout_width=\"match_parent\"\n                    android:layout_height=\"wrap_content\"\n                    android:layout_marginTop=\"15dp\"\n                    android:layout_marginStart=\"10dp\"\n                    android:layout_marginEnd=\"10dp\"\u003e\n                    \u003cTextView\n                        android:layout_width=\"wrap_content\"\n                        android:layout_height=\"wrap_content\"\n                        android:textColor=\"@color/black\"\n                        android:text=\"@string/age\"\n                        android:fontFamily=\"@font/poppinsmedium\"\n                        android:textSize=\"15sp\"\n                        android:layout_alignParentStart=\"true\"\n                        android:textStyle=\"bold\"/\u003e\n                    \u003cTextView\n                        android:layout_width=\"wrap_content\"\n                        android:layout_height=\"wrap_content\"\n                        android:textColor=\"#6E6C6C\"\n                        android:text=\"@string/_21\"\n                        android:fontFamily=\"@font/poppinsmedium\"\n                        android:textSize=\"15sp\"\n                        android:layout_alignParentEnd=\"true\"\n                        android:textStyle=\"bold\"/\u003e\n                \u003c/RelativeLayout\u003e\n\n                \u003cRelativeLayout\n                    android:layout_width=\"match_parent\"\n                    android:layout_height=\"wrap_content\"\n                    android:layout_marginTop=\"15dp\"\n                    android:layout_marginStart=\"10dp\"\n                    android:layout_marginEnd=\"10dp\"\u003e\n                    \u003cTextView\n                        android:layout_width=\"wrap_content\"\n                        android:layout_height=\"wrap_content\"\n                        android:textColor=\"@color/black\"\n                        android:text=\"@string/date_of_birth\"\n                        android:fontFamily=\"@font/poppinsmedium\"\n                        android:textSize=\"15sp\"\n                        android:layout_alignParentStart=\"true\"\n                        android:textStyle=\"bold\"/\u003e\n                    \u003cTextView\n                        android:layout_width=\"wrap_content\"\n                        android:layout_height=\"wrap_content\"\n                        android:textColor=\"#6E6C6C\"\n                        android:text=\"@string/_07_02_2003\"\n                        android:fontFamily=\"@font/poppinsmedium\"\n                        android:textSize=\"15sp\"\n                        android:layout_alignParentEnd=\"true\"\n                        android:textStyle=\"bold\"/\u003e\n                \u003c/RelativeLayout\u003e\n\n                \u003cRelativeLayout\n                    android:layout_width=\"match_parent\"\n                    android:layout_height=\"wrap_content\"\n                    android:layout_marginTop=\"15dp\"\n                    android:layout_marginStart=\"10dp\"\n                    android:layout_marginEnd=\"10dp\"\u003e\n                    \u003cTextView\n                        android:layout_width=\"wrap_content\"\n                        android:layout_height=\"wrap_content\"\n                        android:textColor=\"@color/black\"\n                        android:text=\"@string/mobile\"\n                        android:fontFamily=\"@font/poppinsmedium\"\n                        android:textSize=\"15sp\"\n                        android:layout_alignParentStart=\"true\"\n                        android:textStyle=\"bold\"/\u003e\n                    \u003cTextView\n                        android:layout_width=\"wrap_content\"\n                        android:layout_height=\"wrap_content\"\n                        android:textColor=\"#6E6C6C\"\n                        android:text=\"@string/_91_9000000009\"\n                        android:fontFamily=\"@font/poppinsmedium\"\n                        android:textSize=\"15sp\"\n                        android:layout_alignParentEnd=\"true\"\n                        android:textStyle=\"bold\"/\u003e\n                \u003c/RelativeLayout\u003e\n\n                \u003cRelativeLayout\n                    android:layout_width=\"match_parent\"\n                    android:layout_height=\"wrap_content\"\n                    android:layout_marginTop=\"15dp\"\n                    android:layout_marginStart=\"10dp\"\n                    android:layout_marginEnd=\"10dp\"\u003e\n                    \u003cTextView\n                        android:layout_width=\"wrap_content\"\n                        android:layout_height=\"wrap_content\"\n                        android:textColor=\"@color/black\"\n                        android:text=\"@string/email\"\n                        android:fontFamily=\"@font/poppinsmedium\"\n                        android:textSize=\"15sp\"\n                        android:layout_alignParentStart=\"true\"\n                        android:textStyle=\"bold\"/\u003e\n                    \u003cTextView\n                        android:layout_width=\"wrap_content\"\n                        android:layout_height=\"wrap_content\"\n                        android:textColor=\"#6E6C6C\"\n                        android:text=\"@string/axxxxxxa_gmail_com\"\n                        android:fontFamily=\"@font/poppinsmedium\"\n                        android:textSize=\"15sp\"\n                        android:layout_alignParentEnd=\"true\"\n                        android:textStyle=\"bold\"/\u003e\n                \u003c/RelativeLayout\u003e\n            \u003c/LinearLayout\u003e\n\n        \u003c/com.google.android.material.card.MaterialCardView\u003e\n\n        \u003ccom.google.android.material.card.MaterialCardView\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"\n            android:layout_marginTop=\"10dp\"\n            android:layout_marginBottom=\"30dp\"\n            app:cardCornerRadius=\"10dp\"\u003e\n\n            \u003cLinearLayout\n                android:layout_width=\"match_parent\"\n                android:layout_height=\"wrap_content\"\n                android:orientation=\"vertical\"\n                android:padding=\"15dp\"\u003e\n\n                \u003cRelativeLayout\n                    android:layout_width=\"match_parent\"\n                    android:layout_height=\"wrap_content\"\n                    android:layout_marginStart=\"10dp\"\n                    android:layout_marginEnd=\"10dp\"\u003e\n                    \u003cTextView\n                        android:layout_width=\"wrap_content\"\n                        android:layout_height=\"wrap_content\"\n                        android:textColor=\"@color/black\"\n                        android:text=\"@string/social_media\"\n                        android:fontFamily=\"@font/poppinsmedium\"\n                        android:textSize=\"15sp\"\n                        android:layout_alignParentStart=\"true\"\n                        android:textStyle=\"bold\"/\u003e\n                \u003c/RelativeLayout\u003e\n\n                \u003cGridLayout\n                    android:layout_width=\"match_parent\"\n                    android:layout_height=\"match_parent\"\n                    android:useDefaultMargins=\"true\"\n                    android:rowCount=\"1\"\n                    android:columnCount=\"3\"\u003e\n\n                    \u003ccom.airbnb.lottie.LottieAnimationView\n                        android:layout_width=\"100dp\"\n                        android:layout_height=\"100dp\"\n                        app:lottie_loop=\"true\"\n                        app:lottie_autoPlay=\"true\"\n                        app:lottie_rawRes=\"@raw/twitter\"/\u003e\n\n                    \u003ccom.airbnb.lottie.LottieAnimationView\n                        android:layout_width=\"100dp\"\n                        android:layout_height=\"100dp\"\n                        app:lottie_loop=\"true\"\n                        app:lottie_autoPlay=\"true\"\n                        app:lottie_rawRes=\"@raw/linkedin\"/\u003e\n\n                    \u003ccom.airbnb.lottie.LottieAnimationView\n                        android:layout_width=\"100dp\"\n                        android:layout_height=\"100dp\"\n                        app:lottie_loop=\"true\"\n                        app:lottie_autoPlay=\"true\"\n                        app:lottie_rawRes=\"@raw/whatsapp\"/\u003e\n\n                \u003c/GridLayout\u003e\n            \u003c/LinearLayout\u003e\n\n        \u003c/com.google.android.material.card.MaterialCardView\u003e\n\n\n    \u003c/LinearLayout\u003e\n\n\u003c/ScrollView\u003e\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famitthecoder%2Fprofile-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famitthecoder%2Fprofile-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famitthecoder%2Fprofile-app/lists"}