今天又学了一个同样比较简单的,加上以前的,举例如下:
方法一:
界面定义:
<Preference android:title="汉化" android:summary="点击访问大侠阿木博客">
<intent android:action="android.intent.action.VIEW" android:data="@string/myblog" />
</Preference>
string.xml添加
<string name="myblog" formatted="false">http://daxiaamu.com</string>
方法二:
<Preference android:title="汉化" android:summary="点击访问大侠阿木博客">
<intent android:action="android.intent.action.VIEW" android:data="http://daxiaamu.com" />
</Preference>
这俩方法唯一的区别就是,方法一用了formatted="false"属性,具体用法可以百度。两个方法都适用于PreferenceScreen控件,自己备忘用的,就不解释了。
2014-03-24
没有标签