xiantu.java
public class xiantu extends Activity
{
/*声明对象变量*/
private ImageView mImageView;
private Button mButton;
private TextView mTextView;
private String fileName="/data/data/irdc.ex04_22/ex04_22_2.png";
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
/* 载入main.xml Layout */
setContentView(R.layout.main);
/* 取得Button对象,并添加onClickListener */
mButton = (Button)findViewById(R.id.mButton);
mButton.setOnClickListener(new Button.OnClickListener()
{
public void onClick(View v)
{
/* 取得对象 */
mImageView = (ImageView)findViewById(R.id.mImageView);
mTextView=(TextView)findViewById(R.id.mTextView);
/* 检查文件是否存在 */
File f=new File(fileName);
if(f.exists())
{
/* 产生Bitmap对象,并放入mImageView中 */
Bitmap bm = BitmapFactory.decodeFile(fileName);
mImageView.setImageBitmap(bm);
mTextView.setText(fileName);
}
else
{
mTextView.setText("此文件不存在");
}
}
});
}
}
main.xml
<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout
android:id="@+id/layout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/white"
xmlns:android="http://schemas.android.com/apk/res/android"
>
<TextView
android:id="@+id/mTextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/str_text"
android:layout_x="30px"
android:layout_y="30px"
android:textColor="@drawable/blue"
>
</TextView>
<ImageView
android:id="@+id/mImageView"
android:layout_width="250px"
android:layout_height="188px"
android:src="@drawable/example060"
android:layout_x="30px"
android:layout_y="62px"
>
</ImageView>
<Button
android:id="@+id/mButton"
android:layout_width="155px"
android:layout_height="wrap_content"
android:text="@string/str_button"
android:textSize="18sp"
android:layout_x="80px"
android:layout_y="302px"
>
</Button>
</AbsoluteLayout>
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/37568.html