我需要从第二行string开始'\r'直到下一个'\r'字符.
这是我的字符串中的一个考试
string str = "@b\r210.190\r\000.000\r\n";
Run Code Online (Sandbox Code Playgroud)
我需要取值210.190但内部没有 '\r'字符.
我试图找到如何在图像按钮中设置 GIF 图像并将其设置为仅播放一次。
SetContentView(Resource.Layout.activity_main);
var ib_main_home = FindViewById<ImageButton>(Resource.Id.ds);
Glide.With(this).AsGif()
.Load(Resource.Mipmap.giphy)
.Into(ib_main_home);
Run Code Online (Sandbox Code Playgroud)