Java Code Examples for com.ingenic.iwds.slpt.view.core.SlptLinearLayout#setRect()
The following examples show how to use
com.ingenic.iwds.slpt.view.core.SlptLinearLayout#setRect() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: HeartRateWidget.java From AmazfitAPKs with Apache License 2.0 | 6 votes |
@Override public List<SlptViewComponent> buildSlptViewComponent(Service service) { SlptLinearLayout heart = new SlptLinearLayout(); SlptPictureView bpm = new SlptPictureView(); bpm.setStringPicture(" bpm"); heart.add(new SlptLastHeartRateView()); heart.add(bpm); heart.setTextAttrForAll( service.getResources().getDimension(R.dimen.circles_font_size_slpt), -16777216, ResourceManager.getTypeFace(service.getResources(), ResourceManager.Font.PROTOTYPE_SOURCE) ); heart.setStart( (int) service.getResources().getDimension(R.dimen.heart_rate_text_left_slpt), (int) service.getResources().getDimension(R.dimen.heart_rate_text_top_slpt)); heart.alignX= 2; heart.alignY= 0; heart.setRect(100, 30); return Collections.<SlptViewComponent>singletonList(heart); }
Example 2
Source File: CaloriesWidget.java From AmazfitAPKs with Apache License 2.0 | 6 votes |
@Override public List<SlptViewComponent> buildSlptViewComponent(Service service) { SlptLinearLayout caloriesLayout = new SlptLinearLayout(); SlptPictureView caloriesUnit = new SlptPictureView(); caloriesUnit.setStringPicture(" kcal"); caloriesLayout.add(new SlptTodayCaloriesView()); caloriesLayout.add(caloriesUnit); caloriesLayout.setStart( (int) service.getResources().getDimension(R.dimen.calories_text_left_slpt), (int) service.getResources().getDimension(R.dimen.calories_text_top_slpt) ); Typeface caloriesFont = ResourceManager.getTypeFace(service.getResources(), ResourceManager.Font.PROTOTYPE_SOURCE); caloriesLayout.setTextAttrForAll( service.getResources().getDimension(R.dimen.circles_font_size_slpt), -16777216 , caloriesFont ); caloriesLayout.alignX = 2; caloriesLayout.alignY = 0; caloriesLayout.setRect(80,23); return Collections.<SlptViewComponent>singletonList(caloriesLayout); }
Example 3
Source File: HeartRateWidget.java From AmazfitAPKs with Apache License 2.0 | 6 votes |
@Override public List<SlptViewComponent> buildSlptViewComponent(Service service) { SlptLinearLayout heart = new SlptLinearLayout(); heart.add(new SlptLastHeartRateView()); heart.setTextAttrForAll( service.getResources().getDimension(R.dimen.circles_font_size_slpt), -16777216, ResourceManager.getTypeFace(service.getResources(), ResourceManager.Font.BEBAS_NEUE) ); heart.setStart( (int) service.getResources().getDimension(R.dimen.widget_text_left_slpt), (int) service.getResources().getDimension(R.dimen.widget_text_top_slpt)); heart.alignX=2; heart.alignY=0; heart.setRect(60,60); return Collections.<SlptViewComponent>singletonList(heart); }
Example 4
Source File: CaloriesWidget.java From AmazfitAPKs with Apache License 2.0 | 6 votes |
@Override public List<SlptViewComponent> buildSlptViewComponent(Service service) { SlptLinearLayout caloriesLayout = new SlptLinearLayout(); SlptPictureView caloriesUnit = new SlptPictureView(); caloriesUnit.setStringPicture(" kcal"); caloriesLayout.add(new SlptTodayCaloriesView()); caloriesLayout.add(caloriesUnit); caloriesLayout.setStart( (int) service.getResources().getDimension(R.dimen.widget_text_left_slpt), (int) service.getResources().getDimension(R.dimen.widget_text_top_slpt) ); Typeface caloriesFont = ResourceManager.getTypeFace(service.getResources(), ResourceManager.Font.BEBAS_NEUE); caloriesLayout.setTextAttrForAll( service.getResources().getDimension(R.dimen.circles_font_size_slpt), -16777216 , caloriesFont ); caloriesLayout.alignX = 2; caloriesLayout.alignY = 0; caloriesLayout.setRect(60,60); return Collections.<SlptViewComponent>singletonList(caloriesLayout); }
Example 5
Source File: BatteryWidget.java From AmazfitAPKs with Apache License 2.0 | 5 votes |
public List<SlptViewComponent> buildSlptViewComponent(Service service) { byte[] SlptBlank = Util.assetToBytes(service.getApplicationContext(), "blank.png"); byte[] SlptZero = Util.assetToBytes(service.getApplicationContext(), "zero.png"); byte[] SlptBatteryIcon100 = Util.assetToBytes(service.getApplicationContext(), "battery100.png"); byte[] SlptBatteryIcon90 = Util.assetToBytes(service.getApplicationContext(), "battery90.png"); byte[] SlptBatteryIcon80 = Util.assetToBytes(service.getApplicationContext(), "battery80.png"); byte[] SlptBatteryIcon70 = Util.assetToBytes(service.getApplicationContext(), "battery70.png"); byte[] SlptBatteryIcon60 = Util.assetToBytes(service.getApplicationContext(), "battery60.png"); byte[] SlptBatteryIcon50 = Util.assetToBytes(service.getApplicationContext(), "battery50.png"); byte[] SlptBatteryIcon40 = Util.assetToBytes(service.getApplicationContext(), "battery40.png"); byte[] SlptBatteryIcon30 = Util.assetToBytes(service.getApplicationContext(), "battery30.png"); byte[] SlptBatteryIcon20 = Util.assetToBytes(service.getApplicationContext(), "battery20.png"); byte[] SlptBatteryIcon10 = Util.assetToBytes(service.getApplicationContext(), "battery10.png"); byte[] SlptBatteryIcon0 = Util.assetToBytes(service.getApplicationContext(), "battery0.png"); byte[][] SlptBatteryArray = new byte[][]{SlptBatteryIcon0, SlptBatteryIcon10, SlptBatteryIcon20, SlptBatteryIcon30, SlptBatteryIcon40, SlptBatteryIcon50, SlptBatteryIcon60, SlptBatteryIcon70, SlptBatteryIcon80, SlptBatteryIcon90}; byte[][] SlptBatteryArray100 = new byte[][]{SlptZero, SlptBatteryIcon100, SlptBlank, SlptBlank, SlptBlank, SlptBlank, SlptBlank, SlptBlank, SlptBlank, SlptBlank}; SlptLinearLayout BatteryIcon10 = new SlptLinearLayout(); BatteryIcon10.add(new SlptPowerNumView()); BatteryIcon10.setImagePictureArrayForAll(SlptBatteryArray); BatteryIcon10.setStart(-17, 17); SlptLinearLayout BatteryIcon100 = new SlptLinearLayout(); BatteryIcon100.add(new SlptPowerNumView()); BatteryIcon100.setImagePictureArrayForAll(SlptBatteryArray100); BatteryIcon100.setStart(-17, 17); BatteryIcon100.alignX = (byte) 1; BatteryIcon100.alignY = (byte) 0; BatteryIcon100.setRect(960, 320); return Arrays.asList(new SlptViewComponent[]{BatteryIcon100, BatteryIcon10}); }
Example 6
Source File: FloorWidget.java From AmazfitAPKs with Apache License 2.0 | 5 votes |
@Override public List<SlptViewComponent> buildSlptViewComponent(Service service) { byte[] num0 = Util.assetToBytes(service.getApplicationContext(), "num0.png"); byte[] num1 = Util.assetToBytes(service.getApplicationContext(), "num1.png"); byte[] num2 = Util.assetToBytes(service.getApplicationContext(), "num2.png"); byte[] num3 = Util.assetToBytes(service.getApplicationContext(), "num3.png"); byte[] num4 = Util.assetToBytes(service.getApplicationContext(), "num4.png"); byte[] num5 = Util.assetToBytes(service.getApplicationContext(), "num5.png"); byte[] num6 = Util.assetToBytes(service.getApplicationContext(), "num6.png"); byte[] num7 = Util.assetToBytes(service.getApplicationContext(), "num7.png"); byte[] num8 = Util.assetToBytes(service.getApplicationContext(), "num8.png"); byte[] num9 = Util.assetToBytes(service.getApplicationContext(), "num9.png"); byte[][] SlptNumArray = new byte[][]{num0, num1, num2, num3, num4, num5, num6, num7, num8, num9}; SlptLinearLayout floors = new SlptLinearLayout(); SlptTodayFloorNumView floorsnum = new SlptTodayFloorNumView(); SlptPictureView floorsunit = new SlptPictureView(); floors.add(new SlptTodayFloorNumView()); floors.setImagePictureArrayForAll(SlptNumArray); floors.setStart( (int) service.getResources().getDimension(R.dimen.floors_text_left_slpt), (int) service.getResources().getDimension(R.dimen.floors_text_top_slpt)); floors.alignX = 2; floors.alignY=0; floors.setRect(28,21); return Arrays.asList(new SlptViewComponent[]{floors}); }
Example 7
Source File: HeartRateWidget.java From xDrip-Watchface with Apache License 2.0 | 5 votes |
@Override public List<SlptViewComponent> buildSlptViewComponent(Service service) { SlptLinearLayout heart = new SlptLinearLayout(); heart.add(new SlptLastHeartRateView()); // Show or Not Units if(service.getResources().getBoolean(R.bool.heart_rate_units)) { SlptPictureView bpm = new SlptPictureView(); bpm.setStringPicture(" bpm"); heart.add(bpm); } heart.setTextAttrForAll( service.getResources().getDimension(R.dimen.heart_rate_font_size), service.getResources().getColor(R.color.heart_colour_slpt), ResourceManager.getTypeFace(service.getResources(), ResourceManager.Font.MONO_SPACE) ); // Position based on screen on heart.alignX = 2; heart.alignY = 0; int tmp_left = (int) service.getResources().getDimension(R.dimen.heart_rate_text_left); if(!service.getResources().getBoolean(R.bool.heart_rate_left_align)) { // If text is centered, set rectangle heart.setRect( (int) (2 * tmp_left + 640), (int) (service.getResources().getDimension(R.dimen.heart_rate_font_size)) ); tmp_left = -320; } heart.setStart( tmp_left, (int) (service.getResources().getDimension(R.dimen.heart_rate_text_top)-((float)service.getResources().getInteger(R.integer.font_ratio)/100)*service.getResources().getDimension(R.dimen.heart_rate_font_size)) ); // Hide if disabled if(!service.getResources().getBoolean(R.bool.heart_rate)){heart.show=false;} return Collections.<SlptViewComponent>singletonList(heart); }
Example 8
Source File: CirclesWidget.java From AmazfitAPKs with Apache License 2.0 | 4 votes |
@Override public List<SlptViewComponent> buildSlptViewComponent(Service service) { Typeface timeTypeFace = ResourceManager.getTypeFace(service.getResources(), ResourceManager.Font.PROTOTYPE_SOURCE); SlptPictureView point = new SlptPictureView(); point.setStringPicture("."); SlptLinearLayout power = new SlptLinearLayout(); SlptPictureView percentage = new SlptPictureView(); percentage.setStringPicture("%"); power.alignX = 2; power.alignY = 2; power.add(new SlptPowerNumView()); power.add(percentage); power.setTextAttrForAll( service.getResources().getDimension(R.dimen.circles_font_size_slpt), -16777216, timeTypeFace ); power.setStart( (int) service.getResources().getDimension(R.dimen.battery_text_left_slpt), (int) service.getResources().getDimension(R.dimen.battery_text_top_slpt)); power.alignX= 2; power.alignY= 0; power.setRect(50, 30); SlptLinearLayout steps = new SlptLinearLayout(); steps.alignX = (byte)1; steps.alignY = (byte)2; steps.add(new SlptTodayStepNumView()); steps.setTextAttrForAll( service.getResources().getDimension(R.dimen.circles_font_size_slpt), -16777216, timeTypeFace ); steps.setStart( (int) service.getResources().getDimension(R.dimen.steps_text_left_slpt), (int) service.getResources().getDimension(R.dimen.steps_text_top_slpt)); steps.alignX= (byte) 2; steps.alignY= (byte) 2; steps.setRect(64,22); SlptLinearLayout sport = new SlptLinearLayout(); sport.add(new SlptTodaySportDistanceFView()); sport.add(point); sport.add(new SlptTodaySportDistanceLView()); sport.setTextAttrForAll( service.getResources().getDimension(R.dimen.circles_font_size_slpt), -16777216, timeTypeFace ); sport.setStart( (int) service.getResources().getDimension(R.dimen.sport_text_left_slpt), (int) service.getResources().getDimension(R.dimen.sport_text_top_slpt)); SlptLinearLayout road = new SlptLinearLayout(); SlptPictureView kilometer = new SlptPictureView(); kilometer.setStringPicture(" km"); road.add(new SlptTotalDistanceFView()); road.add(point); road.add(new SlptTotalDistanceLView()); road.add(kilometer); road.setTextAttrForAll( service.getResources().getDimension(R.dimen.circles_font_size_slpt),-16777216,timeTypeFace ); road.setStart( (int) service.getResources().getDimension(R.dimen.road_text_left_slpt), (int) service.getResources().getDimension(R.dimen.road_text_top_slpt) ); road.alignX = 1; road.alignY = 0; road.setRect(100, 30); return Arrays.asList(new SlptViewComponent[]{steps, sport, road, power}); }
Example 9
Source File: MainClock.java From AmazfitAPKs with Apache License 2.0 | 4 votes |
@Override public List<SlptViewComponent> buildSlptViewComponent(Service service) { SlptPictureView background = new SlptPictureView(); background.setImagePicture(Util.assetToBytes(service, "background_heart_splt.png")); SlptLinearLayout hourLayout = new SlptLinearLayout(); hourLayout.add(new SlptHourHView()); hourLayout.add(new SlptHourLView()); hourLayout.setStringPictureArrayForAll(this.digitalNums); SlptLinearLayout minuteLayout = new SlptLinearLayout(); minuteLayout.add(new SlptMinuteHView()); minuteLayout.add(new SlptMinuteLView()); minuteLayout.setStringPictureArrayForAll(this.digitalNums); Typeface timeTypeFace = ResourceManager.getTypeFace(service.getResources(), ResourceManager.Font.BEBAS_NEUE); hourLayout.setTextAttrForAll( service.getResources().getDimension(R.dimen.time_font_size), -16777216, timeTypeFace); minuteLayout.setTextAttrForAll( service.getResources().getDimension(R.dimen.time_font_size), -65536, timeTypeFace); hourLayout.setStart( (int) service.getResources().getDimension(R.dimen.time_hour_left_slpt), (int) service.getResources().getDimension(R.dimen.time_hour_top_slpt)); hourLayout.alignX = 2; hourLayout.alignY = 0; hourLayout.setRect(320,160); minuteLayout.setStart( (int) service.getResources().getDimension(R.dimen.time_minute_left_slpt), (int) service.getResources().getDimension(R.dimen.time_minute_top_slpt)); minuteLayout.alignX=2; minuteLayout.alignY=0; minuteLayout.setRect(320,160); SlptPictureView dash = new SlptPictureView(); dash.setStringPicture(" -"); SlptLinearLayout dayLayout = new SlptLinearLayout(); dayLayout.add(new SlptDayHView()); dayLayout.add(new SlptDayLView()); dayLayout.add(dash); SlptLinearLayout monthLayout = new SlptLinearLayout(); monthLayout.add(new SlptMonthHView()); monthLayout.add(new SlptMonthLView()); for (SlptLayout component : Arrays.asList(monthLayout, dayLayout)) { component.setTextAttrForAll( service.getResources().getDimension(R.dimen.date_font_size), -16777216, timeTypeFace ); } dayLayout.setStart( (int) service.getResources().getDimension(R.dimen.date_left_slpt), (int) service.getResources().getDimension(R.dimen.date_top_slpt)); monthLayout.setStart( (int) service.getResources().getDimension(R.dimen.month_left_slpt), (int) service.getResources().getDimension(R.dimen.month_top_slpt)); SlptLinearLayout WeekdayLayout = new SlptLinearLayout(); WeekdayLayout.add(new SlptWeekView()); WeekdayLayout.setStart( (int) service.getResources().getDimension(R.dimen.week_left_slpt), (int) service.getResources().getDimension(R.dimen.week_top_slpt)); WeekdayLayout.setTextAttrForAll(service.getResources().getDimension(R.dimen.date_font_size), -16777216, timeTypeFace ); WeekdayLayout.alignX = (byte) 2; WeekdayLayout.alignY = (byte) 0; WeekdayLayout.setRect(50, 40); return Arrays.asList(background, hourLayout, minuteLayout, dayLayout, monthLayout, WeekdayLayout); }
Example 10
Source File: WeatherWidget.java From xDrip-Watchface with Apache License 2.0 | 4 votes |
@Override public List<SlptViewComponent> buildSlptViewComponent(Service service) { // Variables this.mService = service; Typeface font = ResourceManager.getTypeFace(service.getResources(), ResourceManager.Font.MONO_SPACE); // Get weather data this.weather = getSlptWeather(); // Just to be safe :P if(this.weather.weatherType<0 || this.weather.weatherType>22){ this.weather.weatherType = 22; } // Load weather icons List<String> weatherImageStrList = new ArrayList<String>(); weatherImageStrList.add("sunny"); //0 weatherImageStrList.add("cloudy"); //1 weatherImageStrList.add("overcast"); //2 weatherImageStrList.add("fog"); //3 weatherImageStrList.add("fog"); //4 weatherImageStrList.add("showers"); //5 weatherImageStrList.add("t_storm"); //6 weatherImageStrList.add("rain"); //7 weatherImageStrList.add("rain"); //8 weatherImageStrList.add("rainstorm"); //9 weatherImageStrList.add("rainstorm"); //10 weatherImageStrList.add("showers"); //11 weatherImageStrList.add("rainsnow"); //12 weatherImageStrList.add("rainsnow"); //13 weatherImageStrList.add("rainsnow"); //14 weatherImageStrList.add("snow"); //15 weatherImageStrList.add("snow"); //16 weatherImageStrList.add("snow"); //17 weatherImageStrList.add("snow"); //18 weatherImageStrList.add("fog"); //19 weatherImageStrList.add("fog"); //20 weatherImageStrList.add("fog"); //21 weatherImageStrList.add("unknow"); //22 // Draw temperature SlptLinearLayout temperatureLayout = new SlptLinearLayout(); // Show or Not icon if(service.getResources().getBoolean(R.bool.temperature_icon)) { SlptPictureView temperatureIcon = new SlptPictureView(); temperatureIcon.setStringPicture( (char)Integer.parseInt("F2CB", 16) ); temperatureIcon.setTextAttr( service.getResources().getDimension(R.dimen.temperature_font_size), service.getResources().getColor(R.color.temperature_colour_slpt), ResourceManager.getTypeFace(service.getResources(), ResourceManager.Font.ICONS_FONT) ); temperatureLayout.add(temperatureIcon); } // Show temperature with units or not SlptPictureView temperatureNum = new SlptPictureView(); temperatureNum.setStringPicture( this.weather.tempString + ((service.getResources().getBoolean(R.bool.temperature_units))?this.weather.getUnits():"") ); temperatureNum.setTextAttr( service.getResources().getDimension(R.dimen.temperature_font_size), service.getResources().getColor(R.color.temperature_colour_slpt), font ); temperatureLayout.add(temperatureNum); // Position based on screen on temperatureLayout.alignX = 2; temperatureLayout.alignY = 0; int tmp_left = (int) service.getResources().getDimension(R.dimen.temperature_left); if(!service.getResources().getBoolean(R.bool.temperature_left_align)) { // If text is centered, set rectangle temperatureLayout.setRect( (int) (2 * tmp_left + 640), (int) (service.getResources().getDimension(R.dimen.temperature_font_size)) ); tmp_left = -320; } temperatureLayout.setStart( tmp_left, (int) (service.getResources().getDimension(R.dimen.temperature_top)-((float)service.getResources().getInteger(R.integer.font_ratio)/100)*service.getResources().getDimension(R.dimen.temperature_font_size)) ); if(!service.getResources().getBoolean(R.bool.temperature)){temperatureLayout.show=false;} // Draw weather icon SlptPictureView weatherLayout = new SlptPictureView(); weatherLayout.setImagePicture( SimpleFile.readFileFromAssets(service, String.format("slpt_weather/clock_skin_weather_%s.png", weatherImageStrList.get(this.weather.weatherType))) ); weatherLayout.setStart( (int) service.getResources().getDimension(R.dimen.weather_img_left)-5, (int) service.getResources().getDimension(R.dimen.weather_img_top)-4 ); if(!service.getResources().getBoolean(R.bool.weather_image)){weatherLayout.show=false;} return Arrays.asList(new SlptViewComponent[]{temperatureLayout, weatherLayout}); }