Android漂亮的Help提示框

来源:技术人生 责任编辑:栏目编辑 发表时间:2013-07-01 19:33 点击:

文章分类:移动开发
Java代码 
import android.app.AlertDialog; 
import android.content.Context; 
import android.view.View; 
 
import com.iwidsets.task.manager.R; 
 
public class HelpDialog extends AlertDialog { 
    public HelpDialog(Context context) { 
        super(context); 
        final View view = getLayoutInflater().inflate(R.layout.help_dialog, 
                null); 
        setButton(context.getText(R.string.close), (OnClickListener) null); 
        setIcon(R.drawable.icon); 
        setTitle("AndTask version:" + R.string.version); 
        setView(view); 
    } 
 
 
help_dialog.xml
 
Xml代码 
<?xml version="1.0" encoding="utf-8"?> 
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" android:layout_height="wrap_content"> 
    <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
        android:layout_width="fill_parent" android:layout_height="fill_parent"> 
 
        <TextView android:layout_height="fill_parent" 
            android:layout_width="fill_parent" android:text="@string/help_dialog_text" 
            android:padding="6dip" /> 
    </ScrollView> 
</FrameLayout>  
 
help_dialog_text 文本
 
Xml代码 
<string name="help_dialog_text"> 
    <i>Author: fonter.yang</i> 
    \n 
    <i> 
        <a href="http://www.iwidsets.comhttp://www.iwidsets.com">http://www.iwidsets.com</a> 
    </i> 
    \n 
    \n 
    <i>AndTask - Android Task Manager</i> 
    \n 
    It is an easy-to use task management software,it allows you to switch on or off running programs/apps/services. 
    \n 
    \n 
    <b>Feature</b> 
    \n 
    1) Switch and Stop Tasks/Processes/Apps/Services 
    \n 
    2) Shows Memory Info and Apps Info 
    \n 
    3) Uninstall Apps 
</string> 
 
显示
 
Java代码 
new HelpDialog(this).show();  
 

    相关新闻>>

      发表评论
      请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
      用户名: 验证码:点击我更换图片
      最新评论 更多>>

      推荐热点

      • Android 完全退出程序
      • 原创:Android应用开发-Andorid歌词秀,含源码
      • android 屏幕保护
      • Android手机软件汉化教程---第四课 dex文件汉化
      • 众多Android 开源项目推荐,给力工作给力学习
      • Android Audio代码分析4
      • Android得到已安装的应用程序信息!
      • Android开发者指南(29) —— USB Host and Accessory
      • Android成长的幕后推手:工程师鲁宾
      网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
      Copyright © 2008-2015 计算机技术学习交流网. 版权所有

      豫ICP备11007008号-1