初接触Delphi BorderIcons := BorderIcons-[biMaximize];

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了初接触Delphi BorderIcons := BorderIcons-[biMaximize];相关的知识,希望对你有一定的参考价值。

BorderIcons := BorderIcons-[biMaximize];
赋值后面"-"是表示什么?怎么用的?

参考技术A - 表示标题栏按钮中,去掉 最大化 这个按钮. 参考技术B 减指不包含本回答被提问者采纳

SmartImageView初接触

最近一直在学习从远程服务器获取图片,开始时都是手写这些处理,后来接触到了smartImageview这个插件。github获取地址:https://github.com/loopj/android-smart-image-view

官方原版插件说明

Overview

        SmartImageView is a drop-in replacement for Android’s standard ImageView which additionally allows images to be loaded from URLs or the user’s contact address book. Images are cached to memory and to disk for super fast loading.


Features

    • Drop-in replacement for ImageView

    • Load images from a URL

    • Load images from the phone’s contact address book

    • Asynchronous loading of images, loading happens outside the UI thread

    • Images are cached to memory and to disk for super fast loading

    • SmartImage class is easily extendable to load from other sources


其中用到的就是:setImageUrl()方法,该方法有好几个重载方法,用到了这个

setImageUrl(String url,int fallbackResource)

这个方法的参数解析如下:url当然是远程图片的地址,第二个参数是当获取远程图片失败时,显示的图片,是一个int类型的res下的图片的一个id


        在使用时,直接在布局文件里使用SmartImageView就行,这个类继承自ImageView

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
   xmlns:android="http://schemas.android.com/apk/res/android"

   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:orientation="vertical">
   
   <com.yuanlp.smartimageview.loopj.android.image.SmartImageView
       android:id="@+id/siv"
       android:layout_width="match_parent"
       android:layout_height="wrap_content"/>

</LinearLayout>

在MainActivity 中

com.yuanlp.smartimageviewandroid.support.v7.app.AppCompatActivityandroid.os.Bundlecom.yuanlp.smartimageview.loopj.android.image.SmartImageViewMainActivity AppCompatActivity {

    (Bundle savedInstanceState) {
        .onCreate(savedInstanceState)setContentView(R.layout.)SmartImageView siv=(SmartImageView) findViewById(R.id.)siv.setImageUrl(R.drawable.)}
}



本文出自 “YuanGuShi” 博客,请务必保留此出处http://cm0425.blog.51cto.com/10819451/1941115

以上是关于初接触Delphi BorderIcons := BorderIcons-[biMaximize];的主要内容,如果未能解决你的问题,请参考以下文章

delphi 怎么控制窗口大小

学习官方示例 - TForm.BorderIcons

(转)Delphi2009初体验 - 语言篇 - 智能指针(Smart Pointer)的实现

初接触HTML

HTML初接触

SmartImageView初接触