-
Notifications
You must be signed in to change notification settings - Fork 331
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add information about the number of cars on Link Light Rail trains #1346
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -347,4 +347,19 @@ public Occupancy getHistoricalOccupancy() { | |
public Occupancy getOccupancyStatus() { | ||
return Occupancy.fromString(occupancyStatus); | ||
} | ||
|
||
/** | ||
* @return a String indicating the number of cars, if this is a light rail arrival. | ||
* Otherwise returns null. | ||
*/ | ||
public String getNumCars() { | ||
assert this.getVehicleId() != null; | ||
String[] splitByBracket = this.getVehicleId().split("\\["); | ||
if (splitByBracket.length == 2) { | ||
int numCars = splitByBracket[1].split("-").length; | ||
return numCars + " " + "car"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please ensure the string |
||
} else { | ||
return null; | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,6 +73,7 @@ protected void initView(View view, ArrivalInfo stopInfo) { | |
TextView destination = (TextView) view.findViewById(R.id.destination); | ||
TextView time = (TextView) view.findViewById(R.id.time); | ||
TextView status = (TextView) view.findViewById(R.id.status); | ||
TextView carCount = (TextView) view.findViewById(R.id.car_count); | ||
TextView etaView = (TextView) view.findViewById(R.id.eta); | ||
TextView minView = (TextView) view.findViewById(R.id.eta_min); | ||
ViewGroup realtimeView = (ViewGroup) view.findViewById(R.id.eta_realtime_indicator); | ||
|
@@ -103,6 +104,17 @@ protected void initView(View view, ArrivalInfo stopInfo) { | |
destination.setText(UIUtils.formatDisplayText(arrivalInfo.getHeadsign())); | ||
status.setText(stopInfo.getStatusText()); | ||
|
||
|
||
String numCars = stopInfo.getInfo().getNumCars(); | ||
if (numCars != null) { | ||
carCount.setBackgroundResource(R.drawable.round_corners_style_b_status); | ||
carCount.setText(stopInfo.getInfo().getNumCars()); | ||
carCount.setVisibility(View.VISIBLE); | ||
} else { | ||
carCount.setVisibility(View.GONE); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think you can make it by default |
||
} | ||
|
||
|
||
long eta = stopInfo.getEta(); | ||
if (eta == 0) { | ||
etaView.setText(R.string.stop_info_eta_now); | ||
|
@@ -130,6 +142,8 @@ protected void initView(View view, ArrivalInfo stopInfo) { | |
minView.setTextColor(color); | ||
d.setColor(color); | ||
|
||
((GradientDrawable) carCount.getBackground()).setColor(color); | ||
|
||
// Set padding on status view | ||
int pSides = UIUtils.dpToPixels(context, 5); | ||
int pTopBottom = UIUtils.dpToPixels(context, 2); | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<TextView xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content" | ||
android:gravity="center" | ||
android:minWidth="@dimen/arrival_style_b_status_min_width_small" | ||
android:paddingLeft="5dp" | ||
android:paddingRight="5dp" | ||
android:paddingTop="2dp" | ||
android:paddingBottom="2dp" | ||
android:text="12 min delay" | ||
android:id="@+id/status3" | ||
style="@style/ArrivalsListStatusSmallStyleA" | ||
android:layout_span="2" | ||
android:layout_alignParentEnd="true" | ||
android:background="@drawable/round_corners_style_b_status"/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if(this.getVehicleId() == null) return null;