您的位置:首页 > 其它

3.3在手机屏幕中实现相框效果

2014-03-17 20:01 274 查看
java代码

package mars.xiangbu;

import android.app.Activity;

import android.os.Bundle;

import android.view.View;

import android.widget.Button;

import android.widget.ImageView;

public class Xiangbu2Activity extends Activity {

/** Called when the activity is first created. */

private ImageView mImageView01;

private ImageView mImageView02;

private Button mButton01;

private Button mButton02;

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

/*获取 对象*/

mImageView01=(ImageView)findViewById(R.id.myImageView1);

mImageView02=(ImageView)findViewById(R.id.myImageView2);

mButton01=(Button)findViewById(R.id.myButton1);

mButton02=(Button)findViewById(R.id.myButton2);

/*设置imageview背景图*/

System.out.println("fuck1");

mImageView01.setImageDrawable(getResources().getDrawable(R.drawable.right));

mImageView02.setImageDrawable(getResources().getDrawable(R.drawable.icon));

System.out.println("fuck");

mButton01.setOnClickListener(new Button.OnClickListener(){

public void onClick(View v) {

// TODO Auto-generated method stub

mImageView01.setImageDrawable(getResources().getDrawable(R.drawable.right));

}

});

mButton02.setOnClickListener(new Button.OnClickListener(){

public void onClick(View v) {

// TODO Auto-generated method stub

mImageView01.setImageDrawable(getResources().getDrawable(R.drawable.left));

}

});

}

}

布局文件

<?xml version="1.0" encoding="utf-8"?>

<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

>

<ImageView

android:id="@+id/myImageView1"

android:layout_width="320px"

android:layout_height="280px"

android:layout_x="0px"

android:layout_y="36px"

/>

<ImageView

android:id="@+id/myImageView2"

android:layout_width="104px"

android:layout_height="157px"

android:layout_x="101px"

android:layout_y="119px"

/>

<Button

android:id="@+id/myButton1"

android:layout_width="105px"

android:layout_height="66px"

android:text="pic1"

android:layout_x="9px"

android:layout_y="356px"

/>

<Button

android:id="@+id/myButton2"

android:layout_width="105px"

android:layout_height="66px"

android:text="pic2"

android:layout_x="179px"

android:layout_y="356px"

/>

</AbsoluteLayout>

当初很奇怪的事:当我把png格式转换为jep格式的图片的时候就能够运行的起来了
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: