我正在做一个Android应用,我想在点击“旅行和假期”按钮时在单独的屏幕上显示旅行联系号码列表。这是代码:
AppActivity.java
package com.example.android;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.widget.Button;
import android.view.View;
import android.view.View.OnClickListener;
public class AppActivity extends Activity {
Button button;
Context context = this;
private final CharSequence[] TRAVELS ={"Nirmala travels","RR Tours and Travels","Surabhii Travels"};
String numbertodial;
String phonenumberNT ="08242497051";
String phonenumberRR ="08244280999";
String phonenumberST ="08242212111";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
button = (Button) findViewById(R.id.button);
button.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
Dialog dialog = null;
AlertDialog.Builder builder = null;
builder = new AlertDialog.Builder(context);
String travels = getString(R.string.app_name);
builder.setTitle(travels);
builder.setSingleChoiceItems(TRAVELS, 3,
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int item) {
CharSequence s = (TRAVELS[item]);
if (s.equals("Nirmala travels")){numbertodial =phonenumberNT; }
if (s.equals("RR Tours and Travels")){numbertodial=phonenumberRR; }
if (s.equals("Surabhii Travels")){numbertodial=phonenumberST ;}
Intent callIntent = new Intent(Intent.ACTION_DIAL);
callIntent.setData(Uri.parse("tel:"+numbertodial ));
startActivity(callIntent);
dialog.dismiss();
}});
dialog = builder.create();
dialog.show();
return;
}
});
}
}
main.xml中
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge" />
<Button
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Travels and Holidays" />
</LinearLayout>
的strings.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Travels and Holidays Details</string>
</resources>
的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="10" />
<uses-permission android:name="android.permission.CALL_PHONE" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:label="@string/app_name"
android:name=".AppActivity" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
单击“旅行和假期”按钮时,它会在同一屏幕中显示3个旅行名称。选择任何1时,它会直接拨打该号码。
但我想要的是:当我点击第一个屏幕中的“旅行和假期”按钮时,我希望旅行名称和联系电话号码显示在另一个屏幕上。点击任何旅行时,它应该重定向到该号码的呼叫选项。
我哪里错了?请帮忙。提前致谢
答案 0 :(得分:1)
您必须创建另一个活动,然后重定向到该位置 把你的名字和名字放在那里。
Intent i=new Intent(yourcontext,yourActivity.class);
i.putExtra("no","yourno");
i.putExtra("name","yourname");
startActivity(i);
并使用
了解您的活动String no=getIntent().getStringExtra("no");
String name=getIntent().getStringExtra("no");
了解更多信息您会看到link
答案 1 :(得分:0)
创建单独的活动/片段以显示&#34; 旅行和假期&#34; 详细信息。将此活动/片段称为&#34; 旅行和假期&#34;按钮点击,通过&#34; 旅行和假期&#34;使用Intent putExtra()详细说明Details活动/片段的值。 如果您创建了Activity,请确保在 AndroidManifest.xml
中声明活动