Wear: use paint for simple UI drawing
This commit is contained in:
parent
b8c2693d67
commit
c01ff80bf6
|
@ -10,13 +10,14 @@ import android.graphics.Color;
|
||||||
import android.graphics.Paint;
|
import android.graphics.Paint;
|
||||||
import android.graphics.Point;
|
import android.graphics.Point;
|
||||||
import android.graphics.Rect;
|
import android.graphics.Rect;
|
||||||
|
import android.graphics.Typeface;
|
||||||
import android.os.BatteryManager;
|
import android.os.BatteryManager;
|
||||||
import android.os.PowerManager;
|
import android.os.PowerManager;
|
||||||
import android.os.Vibrator;
|
import android.os.Vibrator;
|
||||||
import android.preference.PreferenceManager;
|
import android.preference.PreferenceManager;
|
||||||
import android.support.wearable.view.WatchViewStub;
|
import android.support.wearable.view.WatchViewStub;
|
||||||
import android.text.format.DateFormat;
|
import android.text.format.DateFormat;
|
||||||
import android.util.Log;
|
//import android.util.Log;
|
||||||
import android.view.Display;
|
import android.view.Display;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.WindowInsets;
|
import android.view.WindowInsets;
|
||||||
|
@ -37,6 +38,7 @@ import com.ustwo.clockwise.wearable.WatchFace;
|
||||||
|
|
||||||
import java.text.SimpleDateFormat;
|
import java.text.SimpleDateFormat;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
import java.util.Locale;
|
||||||
|
|
||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
|
|
||||||
|
@ -54,8 +56,6 @@ import lecho.lib.hellocharts.view.LineChartView;
|
||||||
* Refactored by dlvoy on 2019-11-2019
|
* Refactored by dlvoy on 2019-11-2019
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public abstract class BaseWatchFace extends WatchFace implements SharedPreferences.OnSharedPreferenceChangeListener {
|
public abstract class BaseWatchFace extends WatchFace implements SharedPreferences.OnSharedPreferenceChangeListener {
|
||||||
|
|
||||||
@Inject WearUtil wearUtil;
|
@Inject WearUtil wearUtil;
|
||||||
|
@ -70,18 +70,13 @@ public abstract class BaseWatchFace extends WatchFace implements SharedPreferenc
|
||||||
INTENT_FILTER.addAction(Intent.ACTION_TIME_CHANGED);
|
INTENT_FILTER.addAction(Intent.ACTION_TIME_CHANGED);
|
||||||
}
|
}
|
||||||
|
|
||||||
String mLastSvg = "";
|
|
||||||
String mLastDirection = "";
|
|
||||||
|
|
||||||
public final Point displaySize = new Point();
|
public final Point displaySize = new Point();
|
||||||
public TextView mTime, mHour, mMinute, mTimePeriod, mSgv, mDirection, mTimestamp, mUploaderBattery, mRigBattery, mDelta, mAvgDelta, mStatus, mBasalRate, mIOB1, mIOB2, mCOB1, mCOB2, mBgi, mLoop, mDay, mDayName, mMonth, isAAPSv2, mHighLight, mLowLight;
|
public TextView mTime, mHour, mMinute, mTimePeriod, mSgv, mDirection, mTimestamp, mUploaderBattery, mRigBattery, mDelta, mAvgDelta, mStatus, mBasalRate, mIOB1, mIOB2, mCOB1, mCOB2, mBgi, mLoop, mDay, mDayName, mMonth, isAAPSv2, mHighLight, mLowLight;
|
||||||
public TextView mSimpleSvg, mSimpleDirection, mSimpleTime;
|
|
||||||
public ImageView mGlucoseDial, mDeltaGauge, mHourHand, mMinuteHand;
|
public ImageView mGlucoseDial, mDeltaGauge, mHourHand, mMinuteHand;
|
||||||
public View mSimpleUi;
|
|
||||||
public RelativeLayout mRelativeLayout;
|
public RelativeLayout mRelativeLayout;
|
||||||
public LinearLayout mLinearLayout, mLinearLayout2, mDate, mChartTap, mMainMenuTap;
|
public LinearLayout mLinearLayout, mLinearLayout2, mDate, mChartTap, mMainMenuTap;
|
||||||
public int ageLevel = 1;
|
public int ageLevel = 1;
|
||||||
public int loopLevel = 1;
|
public int loopLevel = -1;
|
||||||
public int highColor = Color.YELLOW;
|
public int highColor = Color.YELLOW;
|
||||||
public int lowColor = Color.RED;
|
public int lowColor = Color.RED;
|
||||||
public int midColor = Color.WHITE;
|
public int midColor = Color.WHITE;
|
||||||
|
@ -101,7 +96,7 @@ public abstract class BaseWatchFace extends WatchFace implements SharedPreferenc
|
||||||
// related endTime manual layout
|
// related endTime manual layout
|
||||||
public View layoutView;
|
public View layoutView;
|
||||||
public int specW, specH;
|
public int specW, specH;
|
||||||
public boolean forceSquareCanvas = false; //set to true by the Steampunk watch face.
|
public boolean forceSquareCanvas = false; // Set to true by the Steampunk watch face.
|
||||||
public String sMinute = "0";
|
public String sMinute = "0";
|
||||||
public String sHour = "0";
|
public String sHour = "0";
|
||||||
protected SharedPreferences sharedPrefs;
|
protected SharedPreferences sharedPrefs;
|
||||||
|
@ -112,6 +107,12 @@ public abstract class BaseWatchFace extends WatchFace implements SharedPreferenc
|
||||||
private int colorDarkMid;
|
private int colorDarkMid;
|
||||||
private int colorDarkLow;
|
private int colorDarkLow;
|
||||||
private java.text.DateFormat timeFormat;
|
private java.text.DateFormat timeFormat;
|
||||||
|
private SimpleDateFormat sdfDay, sdfMonth, sdfHour, sdfPeriod, sdfDayName, sdfMinute;
|
||||||
|
// private final String TAG = "ASTAG";
|
||||||
|
private Paint mBackgroundPaint, mTimePaint, mSvgPaint, mDirectionPaint;
|
||||||
|
private Date mDateTime;
|
||||||
|
private String mLastSvg = "";
|
||||||
|
private String mLastDirection = "";
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onCreate() {
|
public void onCreate() {
|
||||||
|
@ -123,7 +124,6 @@ public abstract class BaseWatchFace extends WatchFace implements SharedPreferenc
|
||||||
colorDarkHigh = ContextCompat.getColor(getApplicationContext(), R.color.dark_highColor);
|
colorDarkHigh = ContextCompat.getColor(getApplicationContext(), R.color.dark_highColor);
|
||||||
colorDarkMid = ContextCompat.getColor(getApplicationContext(), R.color.dark_midColor);
|
colorDarkMid = ContextCompat.getColor(getApplicationContext(), R.color.dark_midColor);
|
||||||
colorDarkLow = ContextCompat.getColor(getApplicationContext(), R.color.dark_lowColor);
|
colorDarkLow = ContextCompat.getColor(getApplicationContext(), R.color.dark_lowColor);
|
||||||
timeFormat = DateFormat.getTimeFormat(BaseWatchFace.this);
|
|
||||||
|
|
||||||
rawData = new RawDisplayData(wearUtil);
|
rawData = new RawDisplayData(wearUtil);
|
||||||
Display display = ((WindowManager) getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay();
|
Display display = ((WindowManager) getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay();
|
||||||
|
@ -142,6 +142,8 @@ public abstract class BaseWatchFace extends WatchFace implements SharedPreferenc
|
||||||
persistence.turnOff();
|
persistence.turnOff();
|
||||||
|
|
||||||
setupBatteryReceiver();
|
setupBatteryReceiver();
|
||||||
|
initFormats();
|
||||||
|
setupSimpleUi();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void setupBatteryReceiver() {
|
private void setupBatteryReceiver() {
|
||||||
|
@ -164,6 +166,46 @@ public abstract class BaseWatchFace extends WatchFace implements SharedPreferenc
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void initFormats() {
|
||||||
|
Locale locale = Locale.getDefault();
|
||||||
|
timeFormat = DateFormat.getTimeFormat(BaseWatchFace.this);
|
||||||
|
sdfMinute = new SimpleDateFormat("mm", locale);
|
||||||
|
sdfHour = DateFormat.is24HourFormat(this) ? new SimpleDateFormat("HH", locale) : new SimpleDateFormat("hh", locale);
|
||||||
|
sdfPeriod = new SimpleDateFormat("a", locale);
|
||||||
|
sdfDay = new SimpleDateFormat("dd", locale);
|
||||||
|
sdfDayName = new SimpleDateFormat("E", locale);
|
||||||
|
sdfMonth = new SimpleDateFormat("MMM", locale);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void setupSimpleUi() {
|
||||||
|
mDateTime = new Date();
|
||||||
|
|
||||||
|
int black = ContextCompat.getColor(getApplicationContext(), R.color.black);
|
||||||
|
mBackgroundPaint = new Paint();
|
||||||
|
mBackgroundPaint.setColor(black);
|
||||||
|
|
||||||
|
final Typeface NORMAL_TYPEFACE = Typeface.create(Typeface.SANS_SERIF, Typeface.NORMAL);
|
||||||
|
final Typeface BOLD_TYPEFACE = Typeface.create(Typeface.SANS_SERIF, Typeface.BOLD);
|
||||||
|
int white = ContextCompat.getColor(getApplicationContext(), R.color.white);
|
||||||
|
|
||||||
|
float textSizeSvg = 75;
|
||||||
|
float textSizeDirection = 57;
|
||||||
|
float textSizeTime = 60;
|
||||||
|
|
||||||
|
mSvgPaint = createTextPaint(NORMAL_TYPEFACE, white, textSizeSvg);
|
||||||
|
mDirectionPaint = createTextPaint(BOLD_TYPEFACE, white, textSizeDirection);
|
||||||
|
mTimePaint = createTextPaint(NORMAL_TYPEFACE, white, textSizeTime);
|
||||||
|
}
|
||||||
|
|
||||||
|
private Paint createTextPaint(Typeface typeface, int colour, float textSize) {
|
||||||
|
Paint paint = new Paint();
|
||||||
|
paint.setColor(colour);
|
||||||
|
paint.setTypeface(typeface);
|
||||||
|
paint.setAntiAlias(true);
|
||||||
|
paint.setTextSize(textSize);
|
||||||
|
return paint;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onLayout(WatchShape shape, Rect screenBounds, WindowInsets screenInsets) {
|
protected void onLayout(WatchShape shape, Rect screenBounds, WindowInsets screenInsets) {
|
||||||
// Log.i(TAG, "onLayout: ");
|
// Log.i(TAG, "onLayout: ");
|
||||||
|
@ -217,13 +259,10 @@ public abstract class BaseWatchFace extends WatchFace implements SharedPreferenc
|
||||||
mChartTap = stub.findViewById(R.id.chart_zoom_tap);
|
mChartTap = stub.findViewById(R.id.chart_zoom_tap);
|
||||||
mMainMenuTap = stub.findViewById(R.id.main_menu_tap);
|
mMainMenuTap = stub.findViewById(R.id.main_menu_tap);
|
||||||
chart = stub.findViewById(R.id.chart);
|
chart = stub.findViewById(R.id.chart);
|
||||||
mSimpleUi = stub.findViewById(R.id.simple_ui);
|
|
||||||
mSimpleSvg = stub.findViewById(R.id.simple_sgv);
|
|
||||||
mSimpleDirection = stub.findViewById(R.id.simple_direction);
|
|
||||||
mSimpleTime = stub.findViewById(R.id.simple_watch_time);
|
|
||||||
layoutSet = true;
|
layoutSet = true;
|
||||||
|
setupCharts();
|
||||||
setDataFields();
|
setDataFields();
|
||||||
setColor();
|
missedReadingAlert();
|
||||||
});
|
});
|
||||||
wakeLock.acquire(50);
|
wakeLock.acquire(50);
|
||||||
}
|
}
|
||||||
|
@ -241,7 +280,7 @@ public abstract class BaseWatchFace extends WatchFace implements SharedPreferenc
|
||||||
|
|
||||||
public String readingAge(boolean shortString) {
|
public String readingAge(boolean shortString) {
|
||||||
if (rawData.datetime == 0) {
|
if (rawData.datetime == 0) {
|
||||||
return shortString ? "--'" : "-- Minute ago";
|
return shortString ? "--" : "-- Minute ago";
|
||||||
}
|
}
|
||||||
int minutesAgo = (int) Math.floor(timeSince() / (1000 * 60));
|
int minutesAgo = (int) Math.floor(timeSince() / (1000 * 60));
|
||||||
if (minutesAgo == 1) {
|
if (minutesAgo == 1) {
|
||||||
|
@ -272,9 +311,13 @@ public abstract class BaseWatchFace extends WatchFace implements SharedPreferenc
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onDraw(Canvas canvas) {
|
protected void onDraw(Canvas canvas) {
|
||||||
//Log.i(TAG, "onDraw: ");
|
// Log.i(TAG, "onDraw: start ");
|
||||||
|
// Draw the background.
|
||||||
|
// long sTime = System.nanoTime();
|
||||||
|
if (isSimpleUi()) {
|
||||||
|
onDrawSimpleUi(canvas);
|
||||||
|
} else {
|
||||||
if (layoutSet) {
|
if (layoutSet) {
|
||||||
setupCharts();
|
|
||||||
|
|
||||||
mRelativeLayout.measure(specW, specH);
|
mRelativeLayout.measure(specW, specH);
|
||||||
if (forceSquareCanvas) {
|
if (forceSquareCanvas) {
|
||||||
|
@ -287,26 +330,65 @@ public abstract class BaseWatchFace extends WatchFace implements SharedPreferenc
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// long fTime = System.nanoTime();
|
||||||
|
// float elapsedTime = (float) (fTime - sTime) / (1000 * 1000);
|
||||||
|
// Log.i(TAG, "onDraw: end " + String.format("%.3f", elapsedTime) + "ms");
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void onDrawSimpleUi(Canvas canvas) {
|
||||||
|
canvas.drawRect(0, 0, displaySize.x, displaySize.y, mBackgroundPaint);
|
||||||
|
float xHalf = displaySize.x / 2f;
|
||||||
|
float yThird = displaySize.y / 3f;
|
||||||
|
float yOffset = 25f;
|
||||||
|
|
||||||
|
boolean isOutdated = rawData.datetime > 0 && ageLevel() <= 0;
|
||||||
|
mSvgPaint.setStrikeThruText(isOutdated);
|
||||||
|
|
||||||
|
mSvgPaint.setColor(getBgColour(rawData.sgvLevel));
|
||||||
|
mDirectionPaint.setColor(getBgColour(rawData.sgvLevel));
|
||||||
|
|
||||||
|
String sSvg = rawData.sSgv;
|
||||||
|
float svgWidth = mSvgPaint.measureText(sSvg);
|
||||||
|
|
||||||
|
String sDirection = " " + rawData.sDirection + "\uFE0E";
|
||||||
|
float directionWidth = mDirectionPaint.measureText(sDirection);
|
||||||
|
|
||||||
|
float xSvg = xHalf - (svgWidth + directionWidth) / 2;
|
||||||
|
canvas.drawText(sSvg, xSvg, yThird + 50, mSvgPaint);
|
||||||
|
float xDirection = xSvg + svgWidth;
|
||||||
|
canvas.drawText(sDirection, xDirection, yThird + yOffset, mDirectionPaint);
|
||||||
|
|
||||||
|
String sTime = timeFormat.format(mDateTime);
|
||||||
|
float xTime = xHalf - mTimePaint.measureText(sTime) / 2;
|
||||||
|
canvas.drawText(timeFormat.format(mDateTime), xTime, yThird * 2 + yOffset, mTimePaint);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
int getBgColour(long level) {
|
||||||
|
if (rawData.sgvLevel == level) {
|
||||||
|
return colorDarkHigh;
|
||||||
|
|
||||||
|
} if (rawData.sgvLevel == level) {
|
||||||
|
return colorDarkMid;
|
||||||
|
}
|
||||||
|
return colorDarkLow;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onTimeChanged(WatchFaceTime oldTime, WatchFaceTime newTime) {
|
protected void onTimeChanged(WatchFaceTime oldTime, WatchFaceTime newTime) {
|
||||||
// Log.i(TAG, "onTimeChanged: ");
|
// Log.i(TAG, "onTimeChanged: called ");
|
||||||
if (layoutSet && (newTime.hasHourChanged(oldTime) || newTime.hasMinuteChanged(oldTime))) {
|
if (layoutSet && (newTime.hasHourChanged(oldTime) || newTime.hasMinuteChanged(oldTime))) {
|
||||||
//Log.i(TAG, "onTimeChanged: time changed");
|
// Log.i(TAG, "onTimeChanged: minute/hour changed");
|
||||||
PowerManager.WakeLock wl = wearUtil.getWakeLock("readingPrefs", 50);
|
long now = System.currentTimeMillis();
|
||||||
|
mDateTime.setTime(now);
|
||||||
|
|
||||||
setDataFields();
|
PowerManager.WakeLock wl = wearUtil.getWakeLock("readingPrefs", 50);
|
||||||
setColor();
|
|
||||||
missedReadingAlert();
|
missedReadingAlert();
|
||||||
checkVibrateHourly(oldTime, newTime);
|
checkVibrateHourly(oldTime, newTime);
|
||||||
|
if (!isSimpleUi()) {
|
||||||
mRelativeLayout.measure(specW, specH);
|
setDataFields();
|
||||||
if (forceSquareCanvas) {
|
|
||||||
mRelativeLayout.layout(0, 0, displaySize.x, displaySize.x); //force a square for Steampunk watch face.
|
|
||||||
} else {
|
|
||||||
mRelativeLayout.layout(0, 0, displaySize.x, displaySize.y);
|
|
||||||
}
|
}
|
||||||
wearUtil.releaseWakeLock(wl);
|
wearUtil.releaseWakeLock(wl);
|
||||||
// invalidate();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -321,7 +403,7 @@ public abstract class BaseWatchFace extends WatchFace implements SharedPreferenc
|
||||||
private void checkVibrateHourly(WatchFaceTime oldTime, WatchFaceTime newTime) {
|
private void checkVibrateHourly(WatchFaceTime oldTime, WatchFaceTime newTime) {
|
||||||
boolean hourlyVibratePref = sharedPrefs.getBoolean("vibrate_Hourly", false);
|
boolean hourlyVibratePref = sharedPrefs.getBoolean("vibrate_Hourly", false);
|
||||||
if (hourlyVibratePref && layoutSet && newTime.hasHourChanged(oldTime)) {
|
if (hourlyVibratePref && layoutSet && newTime.hasHourChanged(oldTime)) {
|
||||||
Log.i("hourlyVibratePref", "true --> " + newTime.toString());
|
// Log.i("hourlyVibratePref", "true --> " + newTime.toString());
|
||||||
Vibrator vibrator = (Vibrator) getSystemService(VIBRATOR_SERVICE);
|
Vibrator vibrator = (Vibrator) getSystemService(VIBRATOR_SERVICE);
|
||||||
long[] vibrationPattern = {0, 150, 125, 100};
|
long[] vibrationPattern = {0, 150, 125, 100};
|
||||||
vibrator.vibrate(vibrationPattern, -1);
|
vibrator.vibrate(vibrationPattern, -1);
|
||||||
|
@ -330,9 +412,6 @@ public abstract class BaseWatchFace extends WatchFace implements SharedPreferenc
|
||||||
|
|
||||||
public void setDataFields() {
|
public void setDataFields() {
|
||||||
|
|
||||||
if (setDataFieldsSimpleUi()) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
setDateAndTime();
|
setDateAndTime();
|
||||||
if (mSgv != null) {
|
if (mSgv != null) {
|
||||||
if (sharedPrefs.getBoolean("showBG", true)) {
|
if (sharedPrefs.getBoolean("showBG", true)) {
|
||||||
|
@ -383,7 +462,7 @@ public abstract class BaseWatchFace extends WatchFace implements SharedPreferenc
|
||||||
mCOB1.setVisibility(View.GONE);
|
mCOB1.setVisibility(View.GONE);
|
||||||
mCOB2.setVisibility(View.GONE);
|
mCOB2.setVisibility(View.GONE);
|
||||||
}
|
}
|
||||||
//deal with cases where there is only the value shown for COB, and not the label
|
// Deal with cases where there is only the value shown for COB, and not the label
|
||||||
} else if (mCOB2 != null) {
|
} else if (mCOB2 != null) {
|
||||||
mCOB2.setText(rawData.sCOB2);
|
mCOB2.setText(rawData.sCOB2);
|
||||||
if (sharedPrefs.getBoolean("show_cob", true)) {
|
if (sharedPrefs.getBoolean("show_cob", true)) {
|
||||||
|
@ -421,7 +500,6 @@ public abstract class BaseWatchFace extends WatchFace implements SharedPreferenc
|
||||||
mIOB2.setText("");
|
mIOB2.setText("");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mTimestamp != null) {
|
if (mTimestamp != null) {
|
||||||
if (sharedPrefs.getBoolean("showAgo", true)) {
|
if (sharedPrefs.getBoolean("showAgo", true)) {
|
||||||
if (isAAPSv2 != null) {
|
if (isAAPSv2 != null) {
|
||||||
|
@ -491,7 +569,8 @@ public abstract class BaseWatchFace extends WatchFace implements SharedPreferenc
|
||||||
mStatus.setVisibility(View.GONE);
|
mStatus.setVisibility(View.GONE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// Log.i(TAG,
|
||||||
|
// "setDataFields: loop " + rawData.openApsStatus + " " + (System.currentTimeMillis() - rawData.openApsStatus));
|
||||||
if (mLoop != null) {
|
if (mLoop != null) {
|
||||||
if (sharedPrefs.getBoolean("showExternalStatus", true)) {
|
if (sharedPrefs.getBoolean("showExternalStatus", true)) {
|
||||||
mLoop.setVisibility(View.VISIBLE);
|
mLoop.setVisibility(View.VISIBLE);
|
||||||
|
@ -506,69 +585,36 @@ public abstract class BaseWatchFace extends WatchFace implements SharedPreferenc
|
||||||
mLoop.setBackgroundResource(R.drawable.loop_green_25);
|
mLoop.setBackgroundResource(R.drawable.loop_green_25);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
mLoop.setText("-'");
|
loopLevel = -1;
|
||||||
|
mLoop.setText("-");
|
||||||
|
mLoop.setBackgroundResource(R.drawable.loop_grey_25);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
mLoop.setVisibility(View.GONE);
|
mLoop.setVisibility(View.GONE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
setColor();
|
||||||
|
|
||||||
boolean setDataFieldsSimpleUi() {
|
|
||||||
if (isSimpleUi()) {
|
|
||||||
mSimpleUi.setVisibility(View.VISIBLE);
|
|
||||||
|
|
||||||
mSimpleSvg.setText(rawData.sSgv);
|
|
||||||
if (ageLevel() <= 0) {
|
|
||||||
mSimpleSvg.setPaintFlags(mSimpleSvg.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);
|
|
||||||
} else {
|
|
||||||
mSimpleSvg.setPaintFlags(mSimpleSvg.getPaintFlags() & ~Paint.STRIKE_THRU_TEXT_FLAG);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (rawData.sgvLevel == 1) {
|
|
||||||
mSimpleSvg.setTextColor(colorDarkHigh);
|
|
||||||
mSimpleDirection.setTextColor(colorDarkHigh);
|
|
||||||
} else if (rawData.sgvLevel == 0) {
|
|
||||||
mSimpleSvg.setTextColor(colorDarkMid);
|
|
||||||
mSimpleDirection.setTextColor(colorDarkMid);
|
|
||||||
} else if (rawData.sgvLevel == -1) {
|
|
||||||
mSimpleSvg.setTextColor(colorDarkLow);
|
|
||||||
mSimpleDirection.setTextColor(colorDarkLow);
|
|
||||||
}
|
|
||||||
|
|
||||||
mSimpleDirection.setText(rawData.sDirection+"\uFE0E");
|
|
||||||
|
|
||||||
mSimpleTime.setText(timeFormat.format(System.currentTimeMillis()));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
mSimpleUi.setVisibility(View.GONE);
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void on24HourFormatChanged(boolean is24HourFormat) {
|
protected void on24HourFormatChanged(boolean is24HourFormat) {
|
||||||
setDateAndTime();
|
// Log.i(TAG, "on24HourFormatChanged: ");
|
||||||
|
initFormats();
|
||||||
|
if (!isSimpleUi()) {
|
||||||
|
setDataFields();
|
||||||
|
}
|
||||||
|
invalidate();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setDateAndTime() {
|
public void setDateAndTime() {
|
||||||
|
|
||||||
final java.text.DateFormat timeFormat = DateFormat.getTimeFormat(BaseWatchFace.this);
|
|
||||||
if (mTime != null) {
|
if (mTime != null) {
|
||||||
mTime.setText(timeFormat.format(System.currentTimeMillis()));
|
mTime.setText(timeFormat.format(mDateTime));
|
||||||
}
|
}
|
||||||
|
|
||||||
Date now = new Date();
|
sMinute = sdfMinute.format(mDateTime);
|
||||||
SimpleDateFormat sdfHour;
|
sHour = sdfHour.format(mDateTime);
|
||||||
SimpleDateFormat sdfMinute = new SimpleDateFormat("mm");
|
|
||||||
if (DateFormat.is24HourFormat(this)) {
|
|
||||||
sdfHour = new SimpleDateFormat("HH");
|
|
||||||
} else {
|
|
||||||
sdfHour = new SimpleDateFormat("hh");
|
|
||||||
}
|
|
||||||
sHour = sdfHour.format(now);
|
|
||||||
sMinute = sdfMinute.format(now);
|
|
||||||
|
|
||||||
if (mHour != null && mMinute != null) {
|
if (mHour != null && mMinute != null) {
|
||||||
mHour.setText(sHour);
|
mHour.setText(sHour);
|
||||||
mMinute.setText(sMinute);
|
mMinute.setText(sMinute);
|
||||||
|
@ -577,8 +623,7 @@ public abstract class BaseWatchFace extends WatchFace implements SharedPreferenc
|
||||||
if (mTimePeriod != null) {
|
if (mTimePeriod != null) {
|
||||||
if (!DateFormat.is24HourFormat(this)) {
|
if (!DateFormat.is24HourFormat(this)) {
|
||||||
mTimePeriod.setVisibility(View.VISIBLE);
|
mTimePeriod.setVisibility(View.VISIBLE);
|
||||||
SimpleDateFormat sdfPeriod = new SimpleDateFormat("a");
|
mTimePeriod.setText(sdfPeriod.format(mDateTime).toUpperCase());
|
||||||
mTimePeriod.setText(sdfPeriod.format(now).toUpperCase());
|
|
||||||
} else {
|
} else {
|
||||||
mTimePeriod.setVisibility(View.GONE);
|
mTimePeriod.setVisibility(View.GONE);
|
||||||
}
|
}
|
||||||
|
@ -587,14 +632,11 @@ public abstract class BaseWatchFace extends WatchFace implements SharedPreferenc
|
||||||
if (mDate != null && mDay != null && mMonth != null) {
|
if (mDate != null && mDay != null && mMonth != null) {
|
||||||
if (sharedPrefs.getBoolean("show_date", false)) {
|
if (sharedPrefs.getBoolean("show_date", false)) {
|
||||||
if (mDayName != null) {
|
if (mDayName != null) {
|
||||||
SimpleDateFormat sdfDayName = new SimpleDateFormat("E");
|
mDayName.setText(sdfDayName.format(mDateTime));
|
||||||
mDayName.setText(sdfDayName.format(now));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
SimpleDateFormat sdfDay = new SimpleDateFormat("dd");
|
mDay.setText(sdfDay.format(mDateTime));
|
||||||
SimpleDateFormat sdfMonth = new SimpleDateFormat("MMM");
|
mMonth.setText(sdfMonth.format(mDateTime));
|
||||||
mDay.setText(sdfDay.format(now));
|
|
||||||
mMonth.setText(sdfMonth.format(now));
|
|
||||||
mDate.setVisibility(View.VISIBLE);
|
mDate.setVisibility(View.VISIBLE);
|
||||||
} else {
|
} else {
|
||||||
mDate.setVisibility(View.GONE);
|
mDate.setVisibility(View.GONE);
|
||||||
|
@ -627,14 +669,20 @@ public abstract class BaseWatchFace extends WatchFace implements SharedPreferenc
|
||||||
|
|
||||||
protected void onWatchModeChanged(WatchMode watchMode) {
|
protected void onWatchModeChanged(WatchMode watchMode) {
|
||||||
// Log.i(TAG, "onWatchModeChanged: " + watchMode);
|
// Log.i(TAG, "onWatchModeChanged: " + watchMode);
|
||||||
setDataFields();
|
|
||||||
if (lowResMode ^ isLowRes(watchMode)) { //if there was a change in lowResMode
|
|
||||||
lowResMode = isLowRes(watchMode);
|
lowResMode = isLowRes(watchMode);
|
||||||
setColor();
|
if (isSimpleUi()) {
|
||||||
} else if (!sharedPrefs.getBoolean("dark", true)) {
|
setSimpleUiAntiAlias();
|
||||||
//in bright mode: different colours if active:
|
} else {
|
||||||
setColor();
|
setDataFields();
|
||||||
}
|
}
|
||||||
|
invalidate();
|
||||||
|
}
|
||||||
|
|
||||||
|
void setSimpleUiAntiAlias() {
|
||||||
|
boolean antiAlias = getCurrentWatchMode() == WatchMode.AMBIENT;
|
||||||
|
mSvgPaint.setAntiAlias(antiAlias);
|
||||||
|
mDirectionPaint.setAntiAlias(antiAlias);
|
||||||
|
mTimePaint.setAntiAlias(antiAlias);
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean isLowRes(WatchMode watchMode) {
|
private boolean isLowRes(WatchMode watchMode) {
|
||||||
|
@ -649,10 +697,7 @@ public abstract class BaseWatchFace extends WatchFace implements SharedPreferenc
|
||||||
if ((simplify.equals("ambient") || simplify.equals("ambient_charging")) && getCurrentWatchMode() == WatchMode.AMBIENT) {
|
if ((simplify.equals("ambient") || simplify.equals("ambient_charging")) && getCurrentWatchMode() == WatchMode.AMBIENT) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if ((simplify.equals("charging") || simplify.equals("ambient_charging")) && isCharging()) {
|
return (simplify.equals("charging") || simplify.equals("ambient_charging")) && isCharging();
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -665,7 +710,6 @@ public abstract class BaseWatchFace extends WatchFace implements SharedPreferenc
|
||||||
|
|
||||||
if (layoutSet) {
|
if (layoutSet) {
|
||||||
setDataFields();
|
setDataFields();
|
||||||
setColor();
|
|
||||||
}
|
}
|
||||||
invalidate();
|
invalidate();
|
||||||
}
|
}
|
||||||
|
@ -677,8 +721,10 @@ public abstract class BaseWatchFace extends WatchFace implements SharedPreferenc
|
||||||
protected abstract void setColorLowRes();
|
protected abstract void setColorLowRes();
|
||||||
|
|
||||||
public void missedReadingAlert() {
|
public void missedReadingAlert() {
|
||||||
|
// Log.i(TAG, "missedReadingAlert: check");
|
||||||
int minutes_since = (int) Math.floor(timeSince() / (1000 * 60));
|
int minutes_since = (int) Math.floor(timeSince() / (1000 * 60));
|
||||||
if (minutes_since >= 16 && ((minutes_since - 16) % 5) == 0) {
|
if (rawData.datetime == 0 || minutes_since >= 16 && ((minutes_since - 16) % 5) == 0) {
|
||||||
|
// Log.i(TAG, "missedReadingAlert: do");
|
||||||
ListenerService.requestData(this); // attempt endTime recover missing data
|
ListenerService.requestData(this); // attempt endTime recover missing data
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -705,8 +751,8 @@ public abstract class BaseWatchFace extends WatchFace implements SharedPreferenc
|
||||||
@Override
|
@Override
|
||||||
public void onReceive(Context context, Intent intent) {
|
public void onReceive(Context context, Intent intent) {
|
||||||
// Log.i(TAG, "Data MessageReceiver.onReceive: ");
|
// Log.i(TAG, "Data MessageReceiver.onReceive: ");
|
||||||
|
PowerManager.WakeLock wl = wearUtil.getWakeLock("readingPrefs", 50);
|
||||||
|
|
||||||
if (layoutSet) {
|
|
||||||
final DataMap dataMap = rawData.updateDataFromMessage(intent, wakeLock);
|
final DataMap dataMap = rawData.updateDataFromMessage(intent, wakeLock);
|
||||||
if (chart != null && dataMap != null) {
|
if (chart != null && dataMap != null) {
|
||||||
rawData.addToWatchSet(dataMap);
|
rawData.addToWatchSet(dataMap);
|
||||||
|
@ -714,26 +760,22 @@ public abstract class BaseWatchFace extends WatchFace implements SharedPreferenc
|
||||||
}
|
}
|
||||||
rawData.updateStatusFromMessage(intent, wakeLock);
|
rawData.updateStatusFromMessage(intent, wakeLock);
|
||||||
rawData.updateBasalsFromMessage(intent, wakeLock);
|
rawData.updateBasalsFromMessage(intent, wakeLock);
|
||||||
}
|
|
||||||
if (!needUpdate()) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
setDataFields();
|
if (isSimpleUi()) {
|
||||||
setColor();
|
if (needUpdate()) {
|
||||||
|
|
||||||
mRelativeLayout.measure(specW, specH);
|
|
||||||
if (forceSquareCanvas) {
|
|
||||||
mRelativeLayout.layout(0, 0, displaySize.x, displaySize.x); //force a square for Steampunk watch face.
|
|
||||||
} else {
|
|
||||||
mRelativeLayout.layout(0, 0, displaySize.x, displaySize.y);
|
|
||||||
}
|
|
||||||
invalidate();
|
invalidate();
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
setupCharts();
|
||||||
|
setDataFields();
|
||||||
|
invalidate();
|
||||||
|
}
|
||||||
|
wearUtil.releaseWakeLock(wl);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean needUpdate() {
|
private boolean needUpdate() {
|
||||||
if (isSimpleUi() && mLastSvg.equals(rawData.sSgv) && mLastDirection.equals(rawData.sDirection)) {
|
if (mLastSvg.equals(rawData.sSgv) && mLastDirection.equals(rawData.sDirection)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
mLastSvg = rawData.sSgv;
|
mLastSvg = rawData.sSgv;
|
||||||
|
|
|
@ -60,7 +60,9 @@ public class Cockpit extends BaseWatchFace {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (loopLevel == 1) {
|
if (loopLevel == -1) {
|
||||||
|
mLoop.setBackgroundResource(R.drawable.loop_grey_25);
|
||||||
|
} else if (loopLevel == 1) {
|
||||||
mLoop.setBackgroundResource(R.drawable.loop_green_25);
|
mLoop.setBackgroundResource(R.drawable.loop_green_25);
|
||||||
} else {
|
} else {
|
||||||
mLoop.setBackgroundResource(R.drawable.loop_red_25);
|
mLoop.setBackgroundResource(R.drawable.loop_red_25);
|
||||||
|
|
|
@ -117,7 +117,9 @@ public class Home2 extends BaseWatchFace {
|
||||||
mBasalRate.setTextColor(dividerTxtColor);
|
mBasalRate.setTextColor(dividerTxtColor);
|
||||||
mBgi.setTextColor(dividerTxtColor);
|
mBgi.setTextColor(dividerTxtColor);
|
||||||
|
|
||||||
if (loopLevel == 1) {
|
if (loopLevel == -1) {
|
||||||
|
mLoop.setBackgroundResource(R.drawable.loop_grey_25);
|
||||||
|
} else if (loopLevel == 1) {
|
||||||
mLoop.setBackgroundResource(R.drawable.loop_green_25);
|
mLoop.setBackgroundResource(R.drawable.loop_green_25);
|
||||||
} else {
|
} else {
|
||||||
mLoop.setBackgroundResource(R.drawable.loop_red_25);
|
mLoop.setBackgroundResource(R.drawable.loop_red_25);
|
||||||
|
@ -226,7 +228,9 @@ public class Home2 extends BaseWatchFace {
|
||||||
mBasalRate.setTextColor(dividerTxtColor);
|
mBasalRate.setTextColor(dividerTxtColor);
|
||||||
mBgi.setTextColor(dividerTxtColor);
|
mBgi.setTextColor(dividerTxtColor);
|
||||||
|
|
||||||
if (loopLevel == 1) {
|
if (loopLevel == -1) {
|
||||||
|
mLoop.setBackgroundResource(R.drawable.loop_grey_25);
|
||||||
|
} else if (loopLevel == 1) {
|
||||||
mLoop.setBackgroundResource(R.drawable.loop_green_25);
|
mLoop.setBackgroundResource(R.drawable.loop_green_25);
|
||||||
} else {
|
} else {
|
||||||
mLoop.setBackgroundResource(R.drawable.loop_red_25);
|
mLoop.setBackgroundResource(R.drawable.loop_red_25);
|
||||||
|
|
|
@ -67,7 +67,7 @@ public class Steampunk extends BaseWatchFace {
|
||||||
protected void setColorDark() {
|
protected void setColorDark() {
|
||||||
|
|
||||||
if (mLinearLayout2 != null) {
|
if (mLinearLayout2 != null) {
|
||||||
if (ageLevel() <= 0) {
|
if (ageLevel() <= 0 && rawData.datetime != 0) {
|
||||||
mLinearLayout2.setBackgroundResource(R.drawable.redline);
|
mLinearLayout2.setBackgroundResource(R.drawable.redline);
|
||||||
mTimestamp.setTextColor(getResources().getColor(R.color.red_600));
|
mTimestamp.setTextColor(getResources().getColor(R.color.red_600));
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -559,11 +559,6 @@
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<include
|
|
||||||
android:id="@+id/simple_ui"
|
|
||||||
layout="@layout/simple_ui"
|
|
||||||
android:visibility="gone" />
|
|
||||||
|
|
||||||
<!-- FLAGs -->
|
<!-- FLAGs -->
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/AAPSv2"
|
android:id="@+id/AAPSv2"
|
||||||
|
|
|
@ -154,9 +154,4 @@
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<include
|
|
||||||
android:id="@+id/simple_ui"
|
|
||||||
layout="@layout/simple_ui"
|
|
||||||
android:visibility="gone" />
|
|
||||||
|
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
|
|
@ -370,9 +370,4 @@
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<include
|
|
||||||
android:id="@+id/simple_ui"
|
|
||||||
layout="@layout/simple_ui"
|
|
||||||
android:visibility="gone" />
|
|
||||||
|
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
|
|
@ -136,9 +136,4 @@
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<include
|
|
||||||
android:id="@+id/simple_ui"
|
|
||||||
layout="@layout/simple_ui"
|
|
||||||
android:visibility="gone" />
|
|
||||||
|
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
|
|
@ -488,9 +488,4 @@
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<include
|
|
||||||
android:id="@+id/simple_ui"
|
|
||||||
layout="@layout/simple_ui"
|
|
||||||
android:visibility="gone" />
|
|
||||||
|
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
|
@ -378,9 +378,4 @@
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:visibility="gone"/>
|
android:visibility="gone"/>
|
||||||
|
|
||||||
<include
|
|
||||||
android:id="@+id/simple_ui"
|
|
||||||
layout="@layout/simple_ui"
|
|
||||||
android:visibility="gone" />
|
|
||||||
|
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
|
|
@ -560,11 +560,6 @@
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<include
|
|
||||||
android:id="@+id/simple_ui"
|
|
||||||
layout="@layout/simple_ui"
|
|
||||||
android:visibility="gone" />
|
|
||||||
|
|
||||||
<!-- FLAGs -->
|
<!-- FLAGs -->
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/AAPSv2"
|
android:id="@+id/AAPSv2"
|
||||||
|
|
|
@ -152,9 +152,4 @@
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<include
|
|
||||||
android:id="@+id/simple_ui"
|
|
||||||
layout="@layout/simple_ui"
|
|
||||||
android:visibility="gone" />
|
|
||||||
|
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
|
|
@ -383,9 +383,4 @@
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<include
|
|
||||||
android:id="@+id/simple_ui"
|
|
||||||
layout="@layout/simple_ui"
|
|
||||||
android:visibility="gone" />
|
|
||||||
|
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
|
|
@ -135,9 +135,4 @@
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<include
|
|
||||||
android:id="@+id/simple_ui"
|
|
||||||
layout="@layout/simple_ui"
|
|
||||||
android:visibility="gone" />
|
|
||||||
|
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
|
|
@ -488,9 +488,4 @@
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<include
|
|
||||||
android:id="@+id/simple_ui"
|
|
||||||
layout="@layout/simple_ui"
|
|
||||||
android:visibility="gone" />
|
|
||||||
|
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
|
@ -378,9 +378,4 @@
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:visibility="gone"/>
|
android:visibility="gone"/>
|
||||||
|
|
||||||
<include
|
|
||||||
android:id="@+id/simple_ui"
|
|
||||||
layout="@layout/simple_ui"
|
|
||||||
android:visibility="gone" />
|
|
||||||
|
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
|
|
@ -1,81 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
android:layout_height="fill_parent"
|
|
||||||
android:background="@color/black"
|
|
||||||
android:orientation="vertical"
|
|
||||||
android:weightSum="100">
|
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
android:layout_height="fill_parent"
|
|
||||||
android:layout_weight="50"
|
|
||||||
android:gravity="center_horizontal">
|
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_gravity="center_horizontal|bottom"
|
|
||||||
android:layout_marginBottom="5dp"
|
|
||||||
android:gravity="center_horizontal"
|
|
||||||
android:orientation="horizontal"
|
|
||||||
android:textAlignment="center">
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:id="@+id/simple_sgv"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_gravity="bottom"
|
|
||||||
android:layout_marginBottom="-2dp"
|
|
||||||
android:gravity="bottom|end"
|
|
||||||
android:text="---"
|
|
||||||
android:textColor="@color/white"
|
|
||||||
android:textSize="50sp" />
|
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
android:layout_height="fill_parent"
|
|
||||||
android:layout_gravity="center_horizontal"
|
|
||||||
android:baselineAligned="false"
|
|
||||||
android:gravity="center_horizontal"
|
|
||||||
android:orientation="vertical"
|
|
||||||
android:textAlignment="center"
|
|
||||||
android:weightSum="1">
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:id="@+id/simple_direction"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_gravity="center_horizontal|bottom"
|
|
||||||
android:layout_marginTop="-2dp"
|
|
||||||
android:layout_marginBottom="-5dp"
|
|
||||||
android:gravity="center_horizontal|bottom"
|
|
||||||
android:text="--"
|
|
||||||
android:textColor="@color/white"
|
|
||||||
android:textSize="35sp"
|
|
||||||
android:textStyle="bold" />
|
|
||||||
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
android:layout_height="fill_parent"
|
|
||||||
android:layout_weight="50"
|
|
||||||
android:gravity="center_horizontal">
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:id="@+id/simple_watch_time"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_gravity="center_horizontal|top"
|
|
||||||
android:layout_marginTop="5dp"
|
|
||||||
android:text="12:00"
|
|
||||||
android:textColor="#FFFFFF"
|
|
||||||
android:textSize="35sp" />
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
</LinearLayout>
|
|
Loading…
Reference in a new issue