当前位置:  编程技术>移动开发
本页文章导读:
    ▪运用getIdentifier()获取资源Id        使用getIdentifier()获取资源Id 使用getIdentifier()获取资源Id int i= getResources().getIdentifier("icon", "drawable", getPackageName()) ; if(i>0) {Log.i("aa","aa");} else {Log.i("vbv","aa");} 或者 int resID = getResourc.........
    ▪ Activity 其间的通信        Activity 之间的通信 在学习Activity之间的通信之前,需要先学习下Activity之间的跳转 启动另一个Activity   Activity.startActivity()方法可以根据传入的参数启动另外一个 Activity:   Intent intent =new Intent.........
    ▪ 怎么弹出mac里面的光盘       如何弹出mac里面的光盘 一般是按alt(option) + 弹出键  ,但是有时候谈不出来,那么按esc + 弹出键盘一起按的时候可以弹出 ......

[1]运用getIdentifier()获取资源Id
    来源: 互联网  发布时间: 2014-02-18
使用getIdentifier()获取资源Id
使用getIdentifier()获取资源Id
int i=  getResources().getIdentifier("icon", "drawable", getPackageName()) ;
if(i>0)      
  {Log.i("aa","aa");}
else      
  {Log.i("vbv","aa");}

或者
int resID = getResources().getIdentifier("org.loveandroid.androidtest:drawable/gallery_photo_1",null,null);
 
int resID = getResources().getIdentifier("org.anddev.android.testproject:drawable/bug", null, null); 
// or 
int resID = getResources().getIdentifier("bug", "drawable", "org.anddev.android.testproject");
 
//第一个参数:full_package:type/filename_without_ending是这种格式 然后其他的可以为null


int idFlag = getResources().getIdentifier(getPackageName() + ":drawable/flag", null, null);     
// 或是     
int idFlag = getResources().getIdentifier("flag", "drawable", getPackageName());    



var Drawable[] dw = new Drawable[10];     
    
for (int i = 1; i <= 10; i++) {     
  int id = getResources().getIdentifier("flag" + i,  "drawable", getPackageName());     
  dw[i-1] = getResources().getDrawable(id); 
}  


//用反射法 可以得到 所有的资源
private void      
  _DumpAllResourceIDs(Class<?> classType)      
    throws IllegalArgumentException {     
  Field[] fIDs = classType.getFields();     
             
  try {     
    for (int i = 0; i < fIDs.length; i++) {     
      Field fld = fIDs[i];     
      int nID = fld.getInt(null);     
      Log.d("dbg",     
        classType.getSimpleName() + " " +      
        i + ": " +      
        fld.getName() + "=" +     
        nID);     
    }     
  } catch (Exception e) {     
    throw new IllegalArgumentException();     
  }     
}   


import java.lang.reflect.Field;     
...     
  _DumpAllResourceIDs(R.layout.class);     
  _DumpAllResourceIDs(R.drawable.class);   


//结果
R$layout 0: main=2130903040    
R$layout 1: small_spinner_dropdown_item=2130903041    
R$drawable 0: icon=2130837504  


有时候我们需要动态的取得一个一个控件的id,然后进行操作,经过在网上查找,找到了一下方法

getResources().getIdentifier("textView01", "id", "cn.xxx.xxx");

第一个参数为ID名,第二个为资源属性是ID或者是Drawable,第三个为包名。

做项目过程中遇到一个问题,从数据库里读取图片名称,然后调用图片。直接用R.drawable.?无法调用。查了好多地方最后找到了个方法,分享给大家,希望有帮助。
主要由两种方法,个人建议第二种。
1. 不把图片放在res/drawable下,而是存放在src某个package中(如:com.drawable.resource),这种情况下的调用方法为:
String path = "com/drawable/resource/imageName.png";
InputStream is = getClassLoader().getResourceAsStream(path);
Drawable.createFromStream(is, "src");

2. 如果还是希望直接使用res/drawable中的图片,就需要通过下面的方法了:
假设创建工程的时候,填写的package名字为:com.test.image
int resID = getResources().getIdentifier("imageName", "drawable", "com.test.image");
Drawable image = getResources().getDrawable(resID);

    
[2] Activity 其间的通信
    来源: 互联网  发布时间: 2014-02-18
Activity 之间的通信

在学习Activity之间的通信之前,需要先学习下Activity之间的跳转

启动另一个Activity

  Activity.startActivity()方法可以根据传入的参数启动另外一个 Activity:

 

Intent intent =new Intent(CurrentActivity.this,OtherActivity.class); 
startActivity(intent); 
 

 

OtherActivity需要在 AndroidManifest.xml 中定义

 

<activity
            android:label="@string/app_name"
            android:name=".TestActivity" >
            <intent-filter >
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name=".Activity02" android:label="@string/android01"/>
 

 

Activity之间通信

在 Android 中,不同的 Activity 实例可能运行在一个进程中,也可能运行在不同的进程中。因此我们需要一种特别的机制帮助我们在 Activity 之间传递消息。Android 中通过 Intent 对象来表示一条消息,一个 Intent 对象不仅包含有这个消息的目的地,还可以包含消息的内容,这好比一封 Email,其中不仅应该包含收件地址,还可以包含具体的内容。对于一个 Intent 对象,消息“目的地”是必须的,而内容则是可选项。

在上面的实例中通过 Activity. startActivity(intent)启动另外一个 Activity 的时候,我们在 Intent 类的构造器中指定了“收件人地址”。

如果我们想要给“收件人”Activity 说点什么的话,那么可以通过下面这封“e-mail”来将我们消息传递出去:

Intent intent =new Intent(CurrentActivity.this,OtherActivity.class); 
            // 创建一个带“收件人地址”的 email 
 intent.putExtra("boolean_key", true);  //创建邮件内容
 intent.putExtra("string_key", "string_value");  //创建邮件内容
 startActivity(intent);  // 启动新的 Activity 

那么“收件人”该如何收信呢?在 OtherActivity类的 onCreate()或者其它任何地方使用下面的代码就可以打开这封“e-mail”阅读其中的信息:

 

Intent intent=getIntent();  // 收取 email 
intent.getBooleanExtra("boolean_key",false);  // 读取内容
intent.getStringExtra("string_key"); 

 

 

一个完整的Android程序范例

 

HelloActivity

 

import android.app.Activity;     
import android.content.Intent;     
import android.os.Bundle;     
import android.view.View;     
import android.view.View.OnClickListener;     
import android.widget.Button;     
import android.widget.TextView;     
    
public class HelloActivity extends Activity {     
    /** Called when the activity is first created. */    
    @Override    
    public void onCreate(Bundle savedInstanceState) {     
        super.onCreate(savedInstanceState);     
        setContentView(R.layout.main);     
        TextView myTextView=(TextView)findViewById(R.id.myTextView);     
        Button myButton = (Button)findViewById(R.id.myButton);     
        myTextView.setText("welcome to myAndroid");     
        myButton.setText("my Button");     
        myButton.setOnClickListener(new OnClickListener(){     
    
            @Override    
            public void onClick(View arg0) {     
                Intent intent=new Intent();     
                intent.putExtra("myname", "这是从HelloActivity传过来的值");     
                intent.setClass(HelloActivity.this, Activity01.class);     
                HelloActivity.this.startActivity(intent);            
            }                
         });     
     }        
 }  

 

 

Activity02:

 

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.widget.TextView;

public class Activity02 extends Activity
{
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState)
    {   
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main2);
        Intent intent = getIntent();// 收取 email
        String myname=intent.getStringExtra("myname");  
        TextView textView2 = (TextView)findViewById(R.id.textView2);
        textView2.setText(myname);     
    }
}

 

 

main:

 

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

    <TextView
        android:id="@+id/textview1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
         />


    <Button
        android:id="@+id/button1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Button" />

</LinearLayout>
 

main2:

 

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

    <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
         />

</LinearLayout>

 

最后不要忘记在AndroidMainfest.xml中声明Activity02


    
[3] 怎么弹出mac里面的光盘
    来源: 互联网  发布时间: 2014-02-18
如何弹出mac里面的光盘
一般是按alt(option) + 弹出键  ,但是有时候谈不出来,


那么按esc + 弹出键盘一起按的时候可以弹出

    
最新技术文章:
▪Android开发之登录验证实例教程
▪Android开发之注册登录方法示例
▪Android获取手机SIM卡运营商信息的方法
▪Android实现将已发送的短信写入短信数据库的...
▪Android发送短信功能代码
▪Android根据电话号码获得联系人头像实例代码
▪Android中GPS定位的用法实例
▪Android实现退出时关闭所有Activity的方法
▪Android实现文件的分割和组装
▪Android录音应用实例教程
▪Android双击返回键退出程序的实现方法
▪Android实现侦听电池状态显示、电量及充电动...
▪Android获取当前已连接的wifi信号强度的方法
▪Android实现动态显示或隐藏密码输入框的内容
▪根据USER-AGENT判断手机类型并跳转到相应的app...
▪Android Touch事件分发过程详解
▪Android中实现为TextView添加多个可点击的文本
▪Android程序设计之AIDL实例详解
▪Android显式启动与隐式启动Activity的区别介绍
▪Android按钮单击事件的四种常用写法总结
linux iis7站长之家
▪Android实现Back功能代码片段总结
▪Android实用的代码片段 常用代码总结
▪Android实现弹出键盘的方法
▪Android中通过view方式获取当前Activity的屏幕截...
▪Android提高之自定义Menu(TabMenu)实现方法
▪Android提高之多方向抽屉实现方法
▪Android提高之MediaPlayer播放网络音频的实现方法...
▪Android提高之MediaPlayer播放网络视频的实现方法...
▪Android提高之手游转电视游戏的模拟操控
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3