我的布局如下:
我想在我的textedit中设置一个可绘制对象,如下所示:
问题出在我进入EditText并尝试设置android:drawableEnd="@drawable/money"
时,发生这种情况:
如何调整此可绘制对象?
答案 0 :(得分:0)
尝试这种方式
function my_content_filter($content){
//only add text before WordPress posts
if(is_single() && is_main_query()){
//reply all occurances of the old URL with the new URL
$content = str_replace([OLD_LINK], [NEW_LINK],$content);
}
return $content;
}
add_filter( 'the_content', 'my_content_filter' );
输出