随笔分类 -  Xamarin.Android

摘要:using System; // 指定该特性用于类,并且不可重复或被继承 [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)] public sealed class ActivityAt 阅读全文
posted @ 2024-10-15 18:56 LuoCore 阅读(13) 评论(0) 推荐(0) 编辑
摘要:第一步,输入命令adb devices,查看已连接的设备列表; 需要开启网络桥接 阅读全文
posted @ 2024-09-10 16:33 LuoCore 阅读(91) 评论(0) 推荐(0) 编辑
摘要:Window.SetSoftInputMode(SoftInput.AdjustPan); 阅读全文
posted @ 2024-07-23 11:12 LuoCore 阅读(9) 评论(0) 推荐(0) 编辑
摘要:参考文章:EditText输入内容不显示_edittext输入没有显示-CSDN博客 https://blog.csdn.net/guodashen007/article/details/108768508scrollview内嵌tablelayout布局,tablerow内嵌 EditText,E 阅读全文
posted @ 2024-07-12 11:53 LuoCore 阅读(38) 评论(0) 推荐(0) 编辑
摘要:Xamarin.Android 自定义横向ListView控件详解:HorizontalListView (qq.com) 阅读全文
posted @ 2023-11-02 17:25 LuoCore 阅读(45) 评论(0) 推荐(0) 编辑
摘要:iis支持.apk文件下载的设置方法 - 知乎 (zhihu.com) IIS服务器不能下载.apk文件的解决步骤:1、打开IIS服务管理器,找到服务器,右键-属性,打开IIS服务属性;2、单击MIME类型下的“MIME类型”按钮,打开MIME类型设置窗口;3、单击“新建”,建立新的MIME类型;4 阅读全文
posted @ 2023-08-23 16:31 LuoCore 阅读(150) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/xujingcheng123/article/details/115968567 在文件 AndroidManifest.xml 配置 <uses-permission android:name="android.permission.INTERNET" 阅读全文
posted @ 2022-07-13 16:13 LuoCore 阅读(419) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/29b349ff7f1a 第一步:XML布局文件 <?xml version="1.0" encoding="utf-8"?><androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:an 阅读全文
posted @ 2022-07-11 11:32 LuoCore 阅读(697) 评论(3) 推荐(1) 编辑
摘要:EditText ET_Billcode.EditorAction += ET_Billcode_EditorAction; //执行方法 private void ET_Billcode_EditorAction(object sender, TextView.EditorActionEventA 阅读全文
posted @ 2022-07-08 14:25 LuoCore 阅读(189) 评论(0) 推荐(0) 编辑
摘要:转载于:https://my.oschina.net/u/1024921/blog/163142 public static void SetFocus(this Spinner snr) { snr.FindFocus(); snr.FocusableInTouchMode = true; snr 阅读全文
posted @ 2022-07-08 14:24 LuoCore 阅读(147) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/weixin_45598506/article/details/107918803?spm=1001.2101.3001.6661.1&utm_medium=distribute.pc_relevant_t0.none-task-blog-2%7Edefa 阅读全文
posted @ 2022-06-27 14:38 LuoCore 阅读(307) 评论(0) 推荐(0) 编辑
摘要:https://www.coder.work/article/399382 var builder = new AlertDialog.Builder(this); View v = LayoutInflater.From(this).Inflate(Resource.Layout.componen 阅读全文
posted @ 2022-04-06 15:01 LuoCore 阅读(63) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/sinat_26562875/article/details/51447785 /// <summary> /// 通用适配器 /// </summary> /// <typeparam name="T"></typeparam> public class 阅读全文
posted @ 2022-04-06 14:59 LuoCore 阅读(41) 评论(0) 推荐(0) 编辑
摘要:原因是因为 protected override void OnStart() { base.OnStart(); btnLogin.Click += BtnLogin_Click; } 在 OnStart 中注册点击事件,每次返回时,都会调用该方法,所以会导致重复注册该事件导致的 阅读全文
posted @ 2022-04-02 16:03 LuoCore 阅读(110) 评论(0) 推荐(0) 编辑
摘要:EditText,你会发现当点击第一个EditText时,第二个EditText会有光标闪以下,或者点击第二个或者之后的EditText,第一个EditText会有光标闪一下。通过Log你会发现从第二次点击EditText起,每次点击EditText都会先触发一次失去焦点,再触发一次获取焦点。由此可 阅读全文
posted @ 2022-03-29 10:31 LuoCore 阅读(538) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qq_35504350/article/details/78189004 这个是重点 JavaList<IDictionary<string, object>> data_list = null;//一定要用javalist不能用IList JavaDic 阅读全文
posted @ 2022-03-29 09:37 LuoCore 阅读(223) 评论(0) 推荐(0) 编辑
摘要:https://mlog.club/article/5879658 解决办法: 关闭VS 删除解决方案根目录中的.vs文件夹 开始VS 阅读全文
posted @ 2022-03-28 20:16 LuoCore 阅读(61) 评论(0) 推荐(0) 编辑
摘要:this.RequestedOrientation = Android.Content.PM.ScreenOrientation.Portrait;//竖屏,禁止横屏 this.RequestedOrientation = Android.Content.PM.ScreenOrientation.N 阅读全文
posted @ 2022-03-24 12:51 LuoCore 阅读(175) 评论(0) 推荐(0) 编辑
摘要://try //{ // var httpReq = (HttpWebRequest)HttpWebRequest.Create(new Uri(replaceUrl)); // var httpRes = (HttpWebResponse)httpReq.GetResponse(); // if 阅读全文
posted @ 2017-12-26 20:20 LuoCore 阅读(687) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/zjoch/p/4458516.html 再来我们要怎么解析JSON格示呢?在.net 中,我们很孰悉的JSON.net,没错,我们依然可以在Xamarin中使用他 感谢社群伟大的贡献 下载网址: http://components.xamarin.c 阅读全文
posted @ 2017-12-26 10:22 LuoCore 阅读(231) 评论(0) 推荐(0) 编辑