我们如何在我们的应用程序中显示此UI

时间:2011-02-21 10:35:04

标签: android android-layout

enter image description here

我们如何在我们的应用程序中显示此拨号器以发起呼叫

3 个答案:

答案 0 :(得分:3)

我想知道如果我必须对此进行定制的外观,那么这么艰难。

TabActivity,其TabHost高于帧内容。

使用背景编辑文本。剪切图像并将其作为EditText的背景。根据需要更改文本字体

剪切每一个图像,以任何方式放置按钮或设计图像。控制他们的点击。

附加EditText内容。在Dialer Button上启动呼叫

   startActivity(new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + myEditText.getText())));

添加权限

 < uses-permission android:name=”android.permission.CALL_PHONE”/>

答案 1 :(得分:3)

你可以使用默认的Intent,如下面所示,

startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("tel:"
                        + "269-972-8451")));

然后Donot忘记在android表现文件中添加以下权限。

< uses-permission android:name=”android.permission.CALL_PHONE”/>

答案 2 :(得分:1)

您可以浏览Google在Google Code上使用的实际Android布局代码。 选项卡式布局位于dialer_activity.xml,实际的拨号程序布局位于dialpad.xml