大约有 960 项符合查询结果(耗时:0.0131秒) [XML]
Determine when a ViewPager changes pages
...
Kotlin Users,
viewPager.addOnPageChangeListener(object : ViewPager.OnPageChangeListener {
override fun onPageScrollStateChanged(state: Int) {
}
override fun onPageScrolled(position: Int,...
MFC学习总结 (90个技巧) dlg 上建立View - C/C++ - 清泛网 - 专注C++内核技术
... pSubMenu->RemoveMenu(1,MF_BYPOSITION);
[page]VC++中的3D按钮的编程[/page]26. VC++中的3D按钮的编程
运 行AppWizard生成一个基于对话框的test工程,在对话框中加入一个CButton控件。在CButton控件的General属性页将控件的 ID改为IDC_3DTEXTBTN,Capti...
How do I parse command line arguments in Java?
...utocompletion, subcommands, and more. Written in Java, usable from Groovy, Kotlin, Scala, etc.
Features:
Annotation based: declarative, avoids duplication and expresses programmer intent
Convenient: parse user input and run your business logic with one line of code
Strongly typed everything - c...
How to detect shake event with android?
...
ported to Kotlin: gist.github.com/panchicore/7d3780a5bbe38de16a5f786e8ecff954
– panchicore
Jan 16 at 16:28
add...
Vertical (rotated) label in Android
...());
getLayout().draw(canvas);
canvas.restore();
}
}
EDIT
Kotlin version:
import android.content.Context
import android.graphics.Canvas
import android.text.BoringLayout
import android.text.Layout
import android.text.TextUtils.TruncateAt
import android.util.AttributeSet
import andro...
Animate the transition between fragments
...nt, f, FRAG_TAG) // FRAG_TAG is the tag for your fragment
.commit();
Kotlin version:
f = MyFragment().apply {
enterTransition = Slide(Gravity.END)
exitTransition = Slide(Gravity.START)
}
fragmentManager
.beginTransaction()
.replace(R.id.content, f, FRAG_TAG) // FRAG_TAG is the...
Using the “animated circle” in an ImageView while loading stuff
...
For the ones developing in Kotlin, there is a sweet method provided by the Anko library that makes the process of displaying a ProgressDialog a breeze!
Based on that link:
val dialog = progressDialog(message = "Please wait a bit…", title = "Fetchin...
Initialising mock objects - MockIto
...
In Kotlin, the rule looks like this: @get:Rule val mockitoRule: MockitoRule = MockitoJUnit.rule()
– Cristan
Mar 14 '18 at 11:51
...
How to pass an ArrayList to a varargs method parameter?
...
Though it is marked as resolved here my KOTLIN RESOLUTION
fun log(properties: Map<String, Any>) {
val propertyPairsList = properties.map { Pair(it.key, it.value) }
val bundle = bundleOf(*propertyPairsList.toTypedArray())
}
bundleOf has vararg paramet...
disable the swipe gesture that opens the navigation drawer in android
...ing, even via using the hamburger menu.
The following class works for me (Kotlin):
class MyDrawerLayout(ctx: Context) : DrawerLayout(ctx) {
var isSwipeOpenEnabled: Boolean = true
override fun onInterceptTouchEvent(ev: MotionEvent): Boolean {
if (!isSwipeOpenEnabled && !isDrawerV...
