-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Dev of 2.2.0 - Add dial/call button - Amateur radio station detail page
- Loading branch information
Showing
22 changed files
with
798 additions
and
380 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,187 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:orientation="vertical" | ||
android:paddingTop="10dip" | ||
xmlns:ads="http://schemas.android.com/apk/res-auto" | ||
> | ||
|
||
|
||
<TextView | ||
|
||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content" | ||
android:text="Handle" | ||
android:textStyle="bold" | ||
android:layout_marginLeft="10dip" | ||
|
||
android:paddingBottom="3dip" | ||
android:textColor="@color/holo_blue" | ||
/> | ||
|
||
<View style="@style/Divider"/> | ||
|
||
<TextView | ||
android:id="@+id/tvcmiHandle" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="Mohammad Hafiz" | ||
android:layout_marginLeft="10dip" | ||
android:textSize="16sp" | ||
|
||
android:paddingBottom="6dip" | ||
|
||
|
||
/> | ||
|
||
<TextView | ||
|
||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="Status" | ||
android:textStyle="bold" | ||
android:layout_marginLeft="10dip" | ||
|
||
android:paddingBottom="3dip" | ||
android:textColor="@color/holo_blue" | ||
/> | ||
|
||
<View style="@style/Divider"/> | ||
|
||
<TextView | ||
android:id="@+id/tvcmiStatus" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_marginLeft="10dip" | ||
android:paddingBottom="6dip" | ||
android:text="Teh tarik session - at mamak" | ||
android:textSize="16sp" /> | ||
|
||
<TextView | ||
|
||
android:id="@+id/TitlecmiPhone" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="Phone" | ||
android:textStyle="bold" | ||
android:layout_marginLeft="10dip" | ||
|
||
android:paddingBottom="3dip" | ||
android:textColor="@color/holo_blue" | ||
/> | ||
|
||
<View style="@style/Divider" android:id="@+id/DividercmiPhone"/> | ||
<LinearLayout | ||
android:orientation="horizontal" | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content" | ||
> | ||
<TextView | ||
android:id="@+id/tvcmiPhone" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_marginLeft="10dip" | ||
android:paddingBottom="6dip" | ||
android:text="+60120000" | ||
android:textSize="16sp" /> | ||
<RelativeLayout | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
> | ||
|
||
<ImageButton | ||
android:id="@+id/btnCall" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_alignParentRight="true" | ||
android:src="@android:drawable/ic_menu_call" /> | ||
|
||
</RelativeLayout> | ||
</LinearLayout> | ||
|
||
|
||
<TextView | ||
|
||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="Last Seen" | ||
android:textStyle="bold" | ||
android:layout_marginLeft="10dip" | ||
|
||
android:paddingBottom="3dip" | ||
android:textColor="@color/holo_blue" | ||
/> | ||
|
||
<View style="@style/Divider"/> | ||
|
||
<TextView | ||
android:id="@+id/tvcmiLastSeen" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_marginLeft="10dip" | ||
android:paddingBottom="6dip" | ||
android:text="2 hours ago" | ||
android:textSize="16sp" /> | ||
<TextView | ||
|
||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="Locality" | ||
android:textStyle="bold" | ||
android:layout_marginLeft="10dip" | ||
|
||
android:paddingBottom="3dip" | ||
android:textColor="@color/holo_blue" | ||
/> | ||
|
||
<View style="@style/Divider"/> | ||
|
||
<TextView | ||
android:id="@+id/tvcmiLocality" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_marginLeft="10dip" | ||
android:paddingBottom="6dip" | ||
android:text="around Alor Setar" | ||
android:textSize="16sp" /> | ||
<TextView | ||
|
||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="Client" | ||
android:textStyle="bold" | ||
android:layout_marginLeft="10dip" | ||
|
||
android:paddingBottom="3dip" | ||
android:textColor="@color/holo_blue" | ||
/> | ||
|
||
<View style="@style/Divider"/> | ||
|
||
<TextView | ||
android:id="@+id/tvcmiClient" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_marginLeft="10dip" | ||
android:paddingBottom="6dip" | ||
android:text="Repeater.MY/2.2.0" | ||
android:textSize="16sp" /> | ||
|
||
<RelativeLayout | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content"> | ||
|
||
<com.google.android.gms.ads.AdView | ||
android:id="@+id/adViewcallsign" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_alignParentBottom="true" | ||
|
||
ads:adSize="BANNER" | ||
ads:adUnitId="@string/ad_unit_id"/> | ||
|
||
</RelativeLayout> | ||
|
||
|
||
</LinearLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.