My questions :
How can i align the layout as shown below
How can i recieve text in a textview with animation similar of marquee text (in place of Welcome Back,John Doe) which scrolls from right to left
Objective
but I am unable to align the icons here, and this is what i am getting:Screenshot_2
Concept :
These are icons and will display numbers in red circle whenever there's a notification or a message is recieved.
On the right side , I want to display text which depends the text recieved as message or text in the form of notification.Conside it dynamic, which keeps changing frequently.
I am stucked on this part and unable to solve it. I will be thankful if anyone can help me out with this !! Thanks
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_landing_page"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="16dp"
android:paddingRight="16dp"
tools:context="com.thebitshoes.uocn.AdminHome"
android:orientation="vertical"
android:weightSum="2" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.66"
android:orientation="vertical"
android:weightSum="1">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@mipmap/admin_bg_pic"
android:layout_gravity="center_horizontal"
android:layout_weight="1.22" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="1"
android:background="#737D8C">
<RelativeLayout
android:layout_width="0dp"
android:layout_height="40dp"
android:background="#3c424c"
android:layout_weight="0.31">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/message_icon_new"
android:id="@+id/message_icon"
android:layout_centerVertical="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_marginLeft="18dp"
android:layout_marginStart="18dp" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/notification_icon"
android:id="@+id/notification_icon"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Welcome Back, John Doe !"
android:textColor="#ffffff"
android:textSize="18sp"
/>
</RelativeLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1.34"
>
</LinearLayout>
</LinearLayout>