文章列表
public void loadData (String data, String mimeType, String encoding)
则会出现html代码中图片路径不对导致不能正常显示图片(通常是一个白色的固定大小的框,或者没有)
当把路径改为绝对路径加上file://都还无法解决
终于,在网上查资料的时候发现了这个函数,正好解决这个问题
public void loadDataWithBaseURL (String baseUrl, String data, String mimeType, String encoding,String historyUrl)
baseUrl是图片的目录, ...
[android:windowSoftInputMode="adjustPan"]
在manifest.xml文件中,找到相应的activity加入以上配置
就可以解决在listview中editText没有交点,导致键盘无法弹出来
//基础类
public class Action {
public int color;
Action() {
color=Color.BLACK;
}
Action(int color) {
this.color = color;
}
public void draw(Canvas canvas) {
}
public void move(float mx,float my){
}
}
// 点
class MyPoint extends Action {
public float ...