package com.samsung.android.activity;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileNotFoundException;
import android.app.Activity;
import android.content.ContentResolver;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.net.Uri;
import android.os.Bundle;
import android.os.Environment;
import android.provider.MediaStore;
import android.view.Gravity;
import android.view.KeyEvent;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.Window;
import android.widget.Button;
import android.widget.ImageButton;
import android.widget.ImageView;
import android.widget.PopupWindow;
public class ImagePageActivity extends Activity implements OnClickListener {
private ImageButton addbtn;
private ImageButton back_btn;
private PopupWindow popupWindow;
private Button openPhoto, camera, close;
private ImageView imageView;
private int REQUEST_CAMERA = 1;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.photopage);
LayoutInflater inflater = LayoutInflater.from(this);
View layout = inflater.inflate(R.layout.popupmenu, null);
popupWindow = new PopupWindow(layout, 200, 200);
addbtn = (ImageButton) findViewById(R.id.photopage_addphoto_btn);
addbtn.setOnClickListener(this);
back_btn = (ImageButton) findViewById(R.id.photopage_backmain_btn);
back_btn.setOnClickListener(this);
close = (Button) layout.findViewById(R.id.closepop);
close.setOnClickListener(this);
camera = (Button) layout.findViewById(R.id.camera);
camera.setOnClickListener(this);
openPhoto = (Button) layout.findViewById(R.id.openPhoto);
openPhoto.setOnClickListener(this);
imageView = (ImageView)findViewById(R.id.imageView1);
}
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
switch (v.getId()) {
case R.id.closepop:
popupWindow.dismiss();
popupWindow.setFocusable(false);
break;
case R.id.photopage_addphoto_btn:
popupWindow.showAtLocation(
findViewById(R.id.photopage_addphoto_btn), Gravity.BOTTOM,
0, 30);
popupWindow.setFocusable(true);
popupWindow.update();
break;
case R.id.photopage_backmain_btn:
ImagePageActivity.this.finish();
break;
case R.id.openPhoto:
Intent intent = new Intent();
/* 开启Pictures画面Type设定为image */
intent.setType("image/*");
/* 使用Intent.ACTION_GET_CONTENT这个Action */
intent.setAction(Intent.ACTION_GET_CONTENT);
/* 取得相片后返回本画面 */
startActivityForResult(intent, 1);
REQUEST_CAMERA =0;
break;
case R.id.camera:
Intent getImageByCamera = new Intent(
"android.media.action.IMAGE_CAPTURE");
startActivityForResult(getImageByCamera,REQUEST_CAMERA);
REQUEST_CAMERA =1;
break;
default:
break;
}
}
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
// TODO Auto-generated method stub
if(keyCode == KeyEvent.KEYCODE_BACK){
startActivity(new Intent(ImagePageActivity.this,OrderMsgActivity.class));
ImagePageActivity.this.finish();
}
return super.onKeyDown(keyCode, event);
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (REQUEST_CAMERA == 0) {
Uri uri = data.getData();
// Log.e("uri", uri.toString());
ContentResolver cr = this.getContentResolver();
try {
Bitmap bitmap = BitmapFactory.decodeStream(cr.openInputStream(uri));
/* 将Bitmap设定到ImageView */
imageView.setImageBitmap(bitmap);
} catch (FileNotFoundException e) {
// Log.e("Exception", e.getMessage(),e);
}
}else if (REQUEST_CAMERA == 1){
Bitmap myBitmap = null;
try
{
super.onActivityResult(requestCode, resultCode, data);
Bundle extras = data.getExtras();
myBitmap = (Bitmap) extras.get("data");
ByteArrayOutputStream baos = new ByteArrayOutputStream();
myBitmap.compress(Bitmap.CompressFormat.JPEG, 100, baos);
byte[] mContent = baos.toByteArray();
} catch ( Exception e )
{
e.printStackTrace();
}
// 把得到的图片绑定在控件上显示
imageView.setImageBitmap(myBitmap);//把拍摄的照片转成圆角显示在预览控件
}
super.onActivityResult(requestCode, resultCode, data);
}
}
转载:
1、Dreamweaver CS5.5下载:
http://www.oyksoft.com/soft/13591.html
2、Dreamweaver CS5.5序列号:
http://www.teaxia.com/archives/249
3、Android Dreamweaver CS5.5+PhoneGap移动开发环境配置:
http://www.pilihou.com/archives/403
一:不同的layout
Android手机屏幕大小不一,有480x320, 640x360, 800x480.怎样才能让App自动适应不同的屏幕呢?
其实很简单,只需要在res目录下创建不同的layout文件夹,比如layout-640x360,layout-800x480,所有的layout 文件在编译之后都会写入R.java里,而系统会根据屏幕的大小自己选择合适的layout进行使用。
二:hdpi、mdpi、 ldpi
在之前的版本中,只有一个drawable,而2.1版本中有drawable-mdpi、drawable-ldpi、 drawable-hdpi三个,这三个主要是为了支持多分辨率。
drawable- hdpi、drawable- mdpi、drawable-ldpi的区别:
(1)drawable-hdpi里面存放高分辨率的图片,如WVGA (480x800),FWVGA (480x854)
(2)drawable-mdpi里面存放中等分辨率的图片,如HVGA (320x480)
(3)drawable-ldpi里面存放低分辨率的图片,如QVGA (240x320)
系统会根据机器的分辨率来分别到这几个文件夹里面去找对应的图片。
更正:应该是对应不同 density 的图片
在开发程序时为了兼容不同平台不同屏幕,建议各自文件夹根据需 求均存放不同版本图片。
[i]备注:三者的解析度不一样,就像你把电脑的分辨率调低,图片会变大一样,反之分 辨率高,图片缩小。
[/i]
屏幕方向:
横屏竖屏自动切换:
可以在res目录下建立layout-port-800x600和layout-land两个目录,里面分别放置竖屏和横屏两种布局文件,这样在手机屏幕 方向变化的时候系统会自动调用相应的布局文件,避免一种布局文件无法满足两种屏幕显示的问题。
不同分辨率横屏竖屏自动 切换:
以800x600为例
可以在res目录下建立layout-port-800x600和layout-land- 800x600两个目录
不切换:
以下步骤是网上流传的,不过我自己之前是通过图形化界面实现这个配置,算是 殊途同归,有空我会把图片贴上来。
还要说明一点:每个activity都有这个属性screenOrientation,每个 activity都需要设置,可以设置为竖屏(portrait),也可以设置为无重力感应(nosensor)。
要让程序界面保持一 个方向,不随手机方向转动而变化的处理办法:
在AndroidManifest.xml里面配置一下就可以了。加入这一 行android:screenOrientation="landscape"。
例如(landscape是横向,portrait是纵 向):
Java代码:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ray.linkit"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".Main"
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".GamePlay"
android:screenOrientation="portrait"></activity>
<activity android:name=".OptionView"
android:screenOrientation="portrait"></activity>
</application>
<uses-sdk android:minSdkVersion="3" />
</manifest>
另外,android 中每次屏幕的切换动会重启Activity,所以应该在Activity销毁前保存当前活动的状态,在Activity再次Create的时候载入配置, 那样,进行中的游戏就不会自动重启了!
有的程序适合从竖屏切换到横屏,或者反过来,这个时候怎么办呢?可以在配置Activity的地 方进行如下的配置android:screenOrientation="portrait"。这样就可以保证是竖屏总是竖屏了,或者landscape 横向。
而有的程序是适合横竖屏切换的。如何处理呢?首先要在配置Activity的时候进行如下的配 置:android:configChanges="keyboardHidden|orientation",另外需要重写Activity的 onConfigurationChanged方法。实现方式如下,不需要做太多的内容:
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
if (this.getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE) {
// land do nothing is ok
} else if (this.getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) {
// port do nothing is ok
}
}
写 一个支持多分辨的程序,基于1.6开发的,建立了三个资源文件夹drawable-hdpi drawable-mdpi drawable-ldpi,里面分别存放72*72 48*48 36*36的icon图标文件。当我在G1(1.5的系统)上测试时,图标应该自适应为48*48才对啊,但实际显示的是36*36。怎么才能让其自适应 48*48的icon图标呢
解决办法 drawable-hdpi drawable-mdpi drawable-ldpi改成drawable-480X320 drawable-800X480的多分辨支持的文件夹