Android常用控件之 - ImageView
程序员文章站
2024-02-05 23:33:04
...
转载请注明出处amoscxy的博客:https://mp.csdn.net/mdeditor/80144381
Android常用控件之 - ImageView
ImageView是用来在界面中展示图片的控件,图片通常放在”drawable”开头的目录下,项目创建时通常会有个空的drawable目录,不过这个目录没有指定具体的分辨率,一般不适用它来放置图片,这里我们在res目录下新建一个drawable-xhdpi目录,在这个目录中存放图片
项目结构:
最终效果:
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
- 显示效果
转载请注明出处amoscxy的博客:https://mp.csdn.net/mdeditor/80144381
推荐阅读
-
Android常用控件之 - ImageView
-
QT常用控件之QVBoxLayout,QRadioButton,QCheckBox,QMenu,QAction
-
Android常用控件之 - ViewPager
-
android开发之TabHost标签控件的图片和文字不能同时显示的解决方案
-
Android中的常用控件之进度条(ProgressBar)
-
Android控件之SlidingDrawer(滑动式抽屉)详解与实例分享
-
Android编程UI设计之GridView和ImageView的用法
-
Android开发之imageView图片按比例缩放的实现方法
-
Android布局控件之常用linearlayout布局
-
Android程序开发之动态设置ImageView的亮度