Refactoring

pull/207/head
M66B 3 years ago
parent 4e147d440e
commit 6b34286473

@ -701,12 +701,17 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
List<Long> expanded = values.get("expanded"); List<Long> expanded = values.get("expanded");
Log.i("Capture expanded=" + (expanded == null ? null : expanded.size())); Log.i("Capture expanded=" + (expanded == null ? null : expanded.size()));
if (expanded != null && expanded.size() == 1) { if (expanded != null && expanded.size() == 1) {
int pos = adapter.getPositionForKey(expanded.get(0)); long id = expanded.get(0);
int pos = adapter.getPositionForKey(id);
Log.i("Capture pos=" + pos); Log.i("Capture pos=" + pos);
child = llm.findViewByPosition(pos); child = llm.findViewByPosition(pos);
Log.i("Capture child=" + child); Log.i("Capture child=" + child);
if (child != null) if (child != null) {
rect.set(0, 0, child.getWidth(), child.getHeight()); int w = child.getWidth();
int h = child.getHeight();
Log.i("Capture " + w + "x" + h);
rect.set(0, 0, w, h);
}
} }
} catch (Throwable ex) { } catch (Throwable ex) {
Log.e(ex); Log.e(ex);

Loading…
Cancel
Save