欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Android常用控件之 - ImageView

程序员文章站 2024-02-05 23:33:04
...

转载请注明出处amoscxy的博客:https://mp.csdn.net/mdeditor/80144381

Android常用控件之 - ImageView

ImageView是用来在界面中展示图片的控件,图片通常放在”drawable”开头的目录下,项目创建时通常会有个空的drawable目录,不过这个目录没有指定具体的分辨率,一般不适用它来放置图片,这里我们在res目录下新建一个drawable-xhdpi目录,在这个目录中存放图片

  • 项目结构:
    Android常用控件之 - ImageView

  • 最终效果:
    Android常用控件之 - ImageView

  • MainActivity.xml :

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

    <TextView
        android:id="@+id/text_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:textSize="24sp"
        android:textColor="#00ff00"
        android:text="This is TextView" />

    <Button
        android:id="@+id/button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Button"
        android:textAllCaps="false" />
    <ImageView
        android:id="@+id/image_view"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/img_1"
        />
</LinearLayout>

可以看到,这里使用android:src属性给ImageView指定了一张图片

  • MainActivity :
public class MainActivity extends AppCompatActivity implements View.OnClickListener {

    private EditText editText;

    private ImageView imageView;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Button button = (Button) findViewById(R.id.button);
        imageView  = (ImageView) findViewById(R.id.image_view);
        findViewById(R.id.progress_bar);
        button.setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        switch (v.getId()) {
            case R.id.button:                imageView.setImageResource(R.drawable.img_2);
                break;
            default:
                break;
        }
    }
}

还可以动态更改ImageView显示的图片,点击按钮时,调用ImageView的setImageResource()方法将显示的图片改成img_2

  • 显示效果
    Android常用控件之 - ImageView

转载请注明出处amoscxy的博客:https://mp.csdn.net/mdeditor/80144381