我要开发一个 android 应用程序,它的 Activity 之一是:
好吧,我找到了一个代码,可以帮助我完成第二个和第三个任务 但我尝试了它并在我的手机上对其进行了测试,它可以正常工作,但它没有检索到任何东西,只是黑色界面!!!
也许是我不理解这段代码的某些部分的问题,
我在每条我无法理解的陈述上方写下了我的评论,请在代码中回答我的评论并帮助我理解我所缺少的 希望早日得到您的答复。请说清楚。
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.text.MessageFormat;
import android.app.Activity;
import android.content.ContentResolver;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.net.Uri;
import android.os.Bundle;
import android.telephony.SmsMessage;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.ListView;
import android.widget.TextView;
import android.app.Activity;
import android.os.Bundle;
public class MMSReceiverActivity extends Activity {
private final Uri CONTENT_URI_PART = Uri.parse("content://mms/part");
private static final String MSG_ID_STR = "mid=%1$s"; // I don't understand it
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// Start Copying Code
// I don't know how can I retrieve mms id
long msg_id = this.getIntent().getLongExtra("msg_id", 0);
// What's different between ViewGroup and ListView
ViewGroup listview = (ViewGroup) findViewById(R.id.mmsdetaillist);
// What's different between "content://mms/part" and "content://mms/"
Cursor cursor = getContentResolver().query(CONTENT_URI_PART, null,
String.format(MSG_ID_STR, msg_id), null, null);
if (cursor.moveToFirst()) {
do {
// Why he puts partID
String partId = cursor.getString(cursor.getColumnIndex("_id"));
String type = cursor.getString(cursor.getColumnIndex("ct"));
if ("text/plain".equals(type)) {
String data = cursor.getString(cursor
.getColumnIndex("_data"));
String body;
// What's the different between if it's null or not all of
// them will return (text)
if (data != null) {
// implementation of this method below
body = getMmsText(partId);
} else {
body = cursor.getString(cursor.getColumnIndex("text"));
}
// Why he declared it like this i mean why it didn't declare
// like this findViewById (R.) etc
TextView t = new TextView(this);
t.setText(body);
listview.addView(t);
// Why here else ?? it should be only if because if MMS
// contains Text + img : so it'll ignore the (else = img)
// part !
} else if ("image/jpeg".equals(type)
|| "image/bmp".equals(type) || "image/gif".equals(type)
|| "image/jpg".equals(type) || "image/png".equals(type)) {
Bitmap bitmap = getMmsImage(partId);
ImageView iv = new ImageView(this);
iv.setImageBitmap(bitmap);
listview.addView(iv);
}
} while (cursor.moveToNext());
}
cursor.close();
}
public String getMmsText(String id) {
Uri partURI = Uri.parse("content://mms/part/" + id);
InputStream is = null;
StringBuilder sb = new StringBuilder();
try {
is = getContentResolver().openInputStream(partURI);
if (is != null) {
InputStreamReader isr = new InputStreamReader(is, "UTF-8");
BufferedReader reader = new BufferedReader(isr);
String temp = reader.readLine();
while (temp != null) {
sb.append(temp);
temp = reader.readLine();
}
}
} catch (IOException e) {
} finally {
if (is != null) {
try {
is.close();
} catch (IOException e) {
}
}
}
return sb.toString();
}
public Bitmap getMmsImage(String _id) {
Uri partURI = Uri.parse("content://mms/part/" + _id);
InputStream is = null;
Bitmap bitmap = null;
try {
is = getContentResolver().openInputStream(partURI);
bitmap = BitmapFactory.decodeStream(is);
} catch (IOException e) {
} finally {
if (is != null) {
try {
is.close();
} catch (IOException e) {
}
}
}
return bitmap;
}
}
注意:每次我搜索发送或接收彩信时我都会得到这个链接,但直到现在我还没有得到它
我应该使用 repo 和 Git 吗? 什么是 repo 和 Git? 我为什么要在 MMS 中使用?
我应该在发送和接收彩信时使用它吗?如果是,为什么? 我可以使用这段代码吗
content://mms-sms/conversations
而不是 repo 和 git?
最佳答案
您的大部分问题都与作业中的 MMS 部分无关。其中大部分是标准的 Java 和/或 Android,您在执行此类任务之前需要了解这些内容。
除此之外,不直接支持 SMS 和 MMS,而且大多是无文档的,因此很难使用。
我一直在研究短信和彩信,发现这些链接非常有用:
How to Read MMS Data in Android?
http://groups.google.com/group/android-developers/browse_thread/thread/d0c15ec17c12af0e?fwc=1&pli=1
既然我已经开始了,我不妨回答一些您提出的更简单的问题:
“ViewGroup 和 ListView”
ViewGroup 是大多数 View 的父类(super class),可以包含其他 View (LinearLayout、RelativeLayout ...),其中 ListView 是“创建可滚动项目列表的 ViewGorup”。
“他为什么这样声明我的意思是为什么它没有这样声明 findViewById (R.) 等”
当您有一个 xml 布局文件并想在该布局中引用一个 View 时,使用 findViewById。在这种情况下,他在运行时创建了一个 TextView(而不是在 xml 文件中定义它)并将其添加到 ListView。
关于java - 在 Android 应用程序中接收彩信,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10087972/
我需要在客户计算机上运行Ruby应用程序。通常需要几天才能完成(复制大备份文件)。问题是如果启用sleep,它会中断应用程序。否则,计算机将持续运行数周,直到我下次访问为止。有什么方法可以防止执行期间休眠并让Windows在执行后休眠吗?欢迎任何疯狂的想法;-) 最佳答案 Here建议使用SetThreadExecutionStateWinAPI函数,使应用程序能够通知系统它正在使用中,从而防止系统在应用程序运行时进入休眠状态或关闭显示。像这样的东西:require'Win32API'ES_AWAYMODE_REQUIRED=0x0
对于具有离线功能的智能手机应用程序,我正在为Xml文件创建单向文本同步。我希望我的服务器将增量/差异(例如GNU差异补丁)发送到目标设备。这是计划:Time=0Server:hasversion_1ofXmlfile(~800kiB)Client:hasversion_1ofXmlfile(~800kiB)Time=1Server:hasversion_1andversion_2ofXmlfile(each~800kiB)computesdeltaoftheseversions(=patch)(~10kiB)sendspatchtoClient(~10kiBtransferred)Cl
Rackup通过Rack的默认处理程序成功运行任何Rack应用程序。例如:classRackAppdefcall(environment)['200',{'Content-Type'=>'text/html'},["Helloworld"]]endendrunRackApp.new但是当最后一行更改为使用Rack的内置CGI处理程序时,rackup给出“NoMethodErrorat/undefinedmethod`call'fornil:NilClass”:Rack::Handler::CGI.runRackApp.newRack的其他内置处理程序也提出了同样的反对意见。例如Rack
我想用ruby编写一个小的命令行实用程序并将其作为gem分发。我知道安装后,Guard、Sass和Thor等某些gem可以从命令行自行运行。为了让gem像二进制文件一样可用,我需要在我的gemspec中指定什么。 最佳答案 Gem::Specification.newdo|s|...s.executable='name_of_executable'...endhttp://docs.rubygems.org/read/chapter/20 关于ruby-在Ruby中编写命令行实用程序
我构建了两个需要相互通信和发送文件的Rails应用程序。例如,一个Rails应用程序会发送请求以查看其他应用程序数据库中的表。然后另一个应用程序将呈现该表的json并将其发回。我还希望一个应用程序将存储在其公共(public)目录中的文本文件发送到另一个应用程序的公共(public)目录。我从来没有做过这样的事情,所以我什至不知道从哪里开始。任何帮助,将不胜感激。谢谢! 最佳答案 无论Rails是什么,几乎所有Web应用程序都有您的要求,大多数现代Web应用程序都需要相互通信。但是有一个小小的理解需要你坚持下去,网站不应直接访问彼此
我尝试运行2.x应用程序。我使用rvm并为此应用程序设置其他版本的ruby:$rvmuseree-1.8.7-head我尝试运行服务器,然后出现很多错误:$script/serverNOTE:Gem.source_indexisdeprecated,useSpecification.Itwillberemovedonorafter2011-11-01.Gem.source_indexcalledfrom/Users/serg/rails_projects_terminal/work_proj/spohelp/config/../vendor/rails/railties/lib/r
刚入门rails,开始慢慢理解。有人可以解释或给我一些关于在application_controller中编码的好处或时间和原因的想法吗?有哪些用例。您如何为Rails应用程序使用应用程序Controller?我不想在那里放太多代码,因为据我了解,每个请求都会调用此Controller。这是真的? 最佳答案 ApplicationController实际上是您应用程序中的每个其他Controller都将从中继承的类(尽管这不是强制性的)。我同意不要用太多代码弄乱它并保持干净整洁的态度,尽管在某些情况下ApplicationContr
我真的很习惯使用Ruby编写以下代码:my_hash={}my_hash['test']=1Java中对应的数据结构是什么? 最佳答案 HashMapmap=newHashMap();map.put("test",1);我假设? 关于java-等价于Java中的RubyHash,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.com/questions/22737685/
我是一个Rails初学者,但我想从我的RailsView(html.haml文件)中查看Ruby变量的内容。我试图在ruby中打印出变量(认为它会在终端中出现),但没有得到任何结果。有什么建议吗?我知道Rails调试器,但更喜欢使用inspect来打印我的变量。 最佳答案 您可以在View中使用puts方法将信息输出到服务器控制台。您应该能够在View中的任何位置使用Haml执行以下操作:-puts@my_variable.inspect 关于ruby-on-rails-如何在我的R
我正在处理旧代码的一部分。beforedoallow_any_instance_of(SportRateManager).toreceive(:create).and_return(true)endRubocop错误如下:Avoidstubbingusing'allow_any_instance_of'我读到了RuboCop::RSpec:AnyInstance我试着像下面那样改变它。由此beforedoallow_any_instance_of(SportRateManager).toreceive(:create).and_return(true)end对此:let(:sport_