Additional libraries, classes and official updatesUsers contributed libraries, classes and official updates.
This forum is open for licensed users only.
Bei der "AHQuickAction3D", in der Vertikale ausrichtung, finde ich den Abstand von Element zu Element einfach zu klein, gibt es da eine möglichkeit diese Abstand zu vergrössern?
first thank you for this library.
In the "AHQuickAction3D" by the vertical Alignment, I find the distance from element to element just too small, is there a possibility to enlarge this distance?
In the "AHQuickAction3D" by the vertical Alignment, I find the distance from element to element just too small, is there a possibility to enlarge this distance?
Yes, this is possible. Since all the layouts are defined in XML files you can make changes to them.
I currently don't have access to the sources but have a look in Objects/res/layout. There should be a file called something like "ahqa_item_vertical.xml". That is the layout for the vertically aligned items. I think you can add some top and buttom padding to the layout to make the items larger.
Be aware that you make the file read only again after you edit it.
The QuickAction always show at the same place, whatever the selected item.
Is it possible to point the selected item ?
Unfortunately not.
It would be very easy if the ItemLongClick event would provide the view that causes the event but unfortunately it does not. Perhaps we can ask Erel to add this as a parameter to the ItemClick and ItemLongClick events. Should be a 5 minutes change for Erel.
Presumably this new style MENU system is called from an on-screen button. Does anyone know how this button appears in apps, or do we just make this button look as we feel fit?
i can't make this work on my existing project, when i copy the res files into my object files, it gives an error that i need to somewhat declare the resources. how can i do that?
Sub ListView1_ItemClick (Position AsInt, Value AsObject) ac1.Show(GetViewAtPos(Sender, Position)) End Sub
Sub GetViewAtPos(LV AsListView, Position AsInt) AsView Dim r AsReflector Dim v AsView r.Target = LV Dim first AsInt first = r.RunMethod("getFirstVisiblePosition") v = r.RunMethod2("getChildAt", Position - first, "java.lang.int") Return v End Sub