3 个不稳定版本
0.2.1 | 2023年2月17日 |
---|---|
0.2.0 | 2023年2月9日 |
0.1.0 | 2023年2月8日 |
10 in #intent
9KB
162 行代码(不包括注释)
android-intent
use android_activity::AndroidApp;
use android_intent::{with_current_env, Action, Extra, Intent};
#[no_mangle]
fn android_main(_android_app: AndroidApp) {
with_current_env(|env| {
Intent::new(env, Action::Send)
.with_type("text/plain")
.with_extra(Extra::Text, "Hello World!")
.into_chooser()
.start_activity()
.unwrap()
});
}
依赖
~1.4–2.8MB
~46K SLoC