如何知道通知中默认样式的字体系列?

时间:2016-12-06 05:07:37

标签: android notifications android-custom-view font-size android-typeface

我为通知创建自定义视图,并使用TextView代替Action

问题是:我希望TextView以默认样式显示(如默认通知中所示),但TextView以不同的样式显示。

enter image description here

所以我需要确切地知道默认样式的 font-size,font-family 。如果我知道这些值,我可以将它们设置为TextView

的样式

有人能帮助我吗?

1 个答案:

答案 0 :(得分:0)

使用date start: <input name="min" id="min" type="text"> date end: <input name="max" id="max" type="text"> $.fn.dataTableExt.afnFiltering.push( function( oSettings, aData, iDataIndex ) { var today = new Date(); var dd = today.getDate(); var mm = today.getMonth() + 1; var yyyy = today.getFullYear(); if (dd<10) dd = '0'+dd; if (mm<10) mm = '0'+mm; today = dd+'/'+mm+'/'+yyyy; if ($('#min').val() != '' || $('#max').val() != '') { var iMin_temp = $('#min').val(); if (iMin_temp == '') { iMin_temp = '01/01/1980'; } var iMax_temp = $('#max').val(); if (iMax_temp == '') { iMax_temp = today; } var arr_min = iMin_temp.split("/"); var arr_max = iMax_temp.split("/"); var arr_date = aData[2].split("/"); var iMin = new Date(arr_min[2], arr_min[0], arr_min[1], 0, 0, 0, 0) var iMax = new Date(arr_max[2], arr_max[0], arr_max[1], 0, 0, 0, 0) var iDate = new Date(arr_date[2], arr_date[0], arr_date[1], 0, 0, 0, 0) if ( iMin == "" && iMax == "" ) { return true; } else if ( iMin == "" && iDate < iMax ) { return true; } else if ( iMin <= iDate && "" == iMax ) { return true; } else if ( iMin <= iDate && iDate <= iMax ) { return true; } return false; } } ); $(document).ready(function(){ var handleDataTableButtons = function(){ if($('#datatable').length){ var oTable = $('#datatable').dataTable({ dom: 'Bfrtp', buttons: [ { extend: "excel", className: "btn-sm" }, { extend: "print", className: "btn-sm" }, ], bLengthChange: false, bJQueryUI: true, responsive: false, stateSave: true }); } }; TableManageButtons = function(){ "use strict"; return{ init: function(){ handleDataTableButtons(); } }; }(); TableManageButtons.init(); $('#min, #max').keyup( function() { oTable.draw(); } ); $('#min, #max').change( function() { oTable.draw(); } ); $('#min, #max').datepicker({ showOn: 'button', dateFormat: 'dd/mm/yy', buttonImage: 'images/calendar.png', buttonImageOnly: false }); }); 获取文字分享,并使用 1sp 2sp 减少android:paddingLeft="8dp"

基本上,使用的字体大小如下:

微:12sp

小:14sp

中:18sp

大:22sp