Commit 877d09a4 authored by 林生雨's avatar 林生雨

commit

parent cea13b06
......@@ -5,9 +5,7 @@
<option name="TOOL_WINDOW_CONFIGURED_FILTER" value="Show only selected application" />
</component>
<component name="ChangeListManager">
<list default="true" id="5be6bbb5-7d6e-4540-a24f-d2b3bf78b3ba" name="Default Changelist" comment="">
<change beforePath="$PROJECT_DIR$/android/src/main/java/com/example/gengmei_flutter_plugin/GengmeiFlutterPlugin.kt" beforeDir="false" afterPath="$PROJECT_DIR$/android/src/main/java/com/example/gengmei_flutter_plugin/GengmeiFlutterPlugin.kt" afterDir="false" />
</list>
<list default="true" id="5be6bbb5-7d6e-4540-a24f-d2b3bf78b3ba" name="Default Changelist" comment="" />
<ignored path="$PROJECT_DIR$/.dart_tool/" />
<ignored path="$PROJECT_DIR$/.idea/" />
<ignored path="$PROJECT_DIR$/.pub/" />
......@@ -298,7 +296,6 @@
</component>
<component name="ToolWindowManager">
<frame x="673" y="-861" width="1440" height="811" extended-state="0" />
<editor active="true" />
<layout>
<window_info content_ui="combo" id="Project" order="0" visible="true" weight="0.1509299" />
<window_info id="Captures" order="1" side_tool="true" />
......
......@@ -277,14 +277,10 @@ class ImageRespository {
realPath, MediaStore.Images.Thumbnails.MINI_KIND, 300, 300)
} else {
val png = File("${fileDir}/${getFileName(realPath)!!}.png")
val jpg = File("${fileDir}/${getFileName(realPath)!!}.jpg")
val jpeg = File("${fileDir}/${getFileName(realPath)!!}.jpeg")
// val jpg = File("${fileDir}/${getFileName(realPath)!!}.jpg")
// val jpeg = File("${fileDir}/${getFileName(realPath)!!}.jpeg")
if (png.exists()) {
it["path"] = png.absolutePath
} else if (jpg.exists()) {
it["path"] = jpg.absolutePath
} else if (jpeg.exists()) {
it["path"] = jpeg.absolutePath
} else {
// val get = Luban.with(context).setTargetDir(
// fileDir
......
......@@ -14,10 +14,10 @@ class ScanImagePlugn {
for (var item in v) {
ScanImageItem scanImageItem = new ScanImageItem();
scanImageItem.path = item["path"] ?? "";
scanImageItem.size = item["size"] ?? "";
scanImageItem.size = item["size"] ?? 0;
scanImageItem.realPath = item["realPath"] ?? "";
scanImageItem.isVideo = item["isVideo"] == "T" ? true : false;
scanImageItem.during = item["during"] ?? "";
scanImageItem.during = item["during"] ?? "0";
tempList.add(scanImageItem);
}
newMap.putIfAbsent(k, () => tempList);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment