Skip to content

Commit

Permalink
Updating the Group icon attaching respective activities is on the way…
Browse files Browse the repository at this point in the history
…#9 (#108)


Keep the issue #9 Open.
  • Loading branch information
Ijaiswalshivam authored May 15, 2024
2 parents 92d9a1b + 7807c97 commit 4627128
Show file tree
Hide file tree
Showing 8 changed files with 52 additions and 12 deletions.
26 changes: 26 additions & 0 deletions TalkIn/.idea/appInsightsSettings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion TalkIn/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions TalkIn/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,12 @@
android:theme="@style/Theme.TalkIn"
tools:targetApi="31">
<activity
android:name=".ResetPasswordActivity"
android:theme="@style/Theme.AppCompat.NoActionBar"
android:name=".UserProfile"
android:exported="false" />
<activity
android:name=".ResetPasswordActivity"
android:exported="false"
android:theme="@style/Theme.AppCompat.NoActionBar" />
<activity
android:name=".MobileAuthActivity"
android:exported="false" />
Expand Down
Binary file added TalkIn/app/src/main/res/drawable/img_3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added TalkIn/app/src/main/res/drawable/img_4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 7 additions & 5 deletions TalkIn/app/src/main/res/layout/activity_chat.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
android:layout_height="match_parent"
tools:context=".ChatActivity">


<androidx.recyclerview.widget.RecyclerView
android:id="@+id/chatRecyclerView"
android:layout_above="@id/linearLayout"
Expand All @@ -33,12 +32,15 @@
android:paddingLeft="10dp"
android:layout_marginLeft="10dp"
android:layout_weight="90"/>

<ImageView
android:id="@+id/sendButton"
android:layout_width="50dp"
android:layout_height="50dp"
android:src="@drawable/send"
android:layout_weight="20"/>
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="20"
android:padding="5dp"
android:layout_gravity="right"
android:src="@drawable/img_4"/>

</LinearLayout>
</RelativeLayout>
13 changes: 9 additions & 4 deletions TalkIn/app/src/main/res/menu/bottom_navigation_menu.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:title="Chats"
android:icon="@drawable/img_2"
android:id="@+id/menu_chat"
/>
<item android:title="Send"
android:icon="@drawable/img"
android:id="@+id/menu_send"
/>
<item android:title="Chats"
android:icon="@drawable/img_2"
android:id="@+id/menu_chat"
/>
<item android:title="Groups"
android:icon="@drawable/img_3"
android:id="@+id/menu_groups"
/>

<item android:title="Profile"
android:icon="@drawable/img_1"
android:id="@+id/menu_profile"
Expand Down
5 changes: 5 additions & 0 deletions TalkIn/app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<resources>
<string name="app_name">Talk-In</string>

<!-- TODO: Remove or change this placeholder text -->
<string name="hello_blank_fragment">Hello blank fragment</string>

<string name="welcome_to_talk_in">Welcome to Talk-In</string>

</resources>

0 comments on commit 4627128

Please sign in to comment.