Android布局——Preference自定义layout的方法
时间:2022-05-27 04:13:13
导语:PreferenceActivity是一个方便设置管理的界面,但是对于界面显示来说比较单调,所以自定义布局就很有必要了。本文举例说明在Preference中自定义layout的方法。笔者是为了在设置中插入@有米v4广告条才研究了一晚上的。
正文:首先PreferenceScreen是一个xml文件于res/xml目录下,不属于layout文件。要插入layout,有两种方法。
1.使用Preference的android:@layout属性
1)xml文件中preference的添加
<Preference android:layout="@layout/youmi_ad" android:key="youmi_ad"/>
2)layout.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<!-- 有米广告 -->
<akai.settings.YoumiAd
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:gravity="center_horizontal"
/>
</LinearLayout>
3)由于v4版本的广告条需要自己定义layout载体,所以这里重载了一个LinearLayout,自定义布局也是如此。
在YoumiAd.java中处理布局文件,其他布局类似,不再叙述。
public class YoumiAd extends LinearLayout{
public YoumiAd(Context context) {
super(context);
init(context);
}
public YoumiAd(Context context, AttributeSet attrs) {
super(context, attrs);
init(context);
}
private void init(Context context) {
//init youmi ad
AdView adView = new AdView(context, AdSize.SIZE_320x50);
this.addView(adView);
adView.setAdListener(new AdViewLinstener() {
@Override
public void onSwitchedAd(AdView arg0) {
Log.i("Youmi", "广告条切换");
}
@Override
public void onReceivedAd(AdView arg0) {
Log.i("Youmi", "请求广告成功");
}
@Override
public void onFailedToReceivedAd(AdView arg0) {
Log.i("Youmi", "请求广告失败");
}
});
}
}
2.将layout添加到Activity中 setContentView(R.layout.youmi_ad)以自定义内容
1)xml文件中preference的添加
<Preference android:layout="@layout/youmi_ad" android:key="youmi_ad"/>
2)layout.xml,需要添加一个ListView控件,且id为list,不然不能运行,应该是由于PreferenceActivity是一个List的原因吧。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:drawSelectorOnTop="false"
android:layout_weight="1"
/>
<!-- 有米广告 -->
<LinearLayout
android:id="@+id/adLayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:gravity="center_horizontal"
/>
</LinearLayout>
3)在Activity中的onCreate添加setContentView(R.layout.youmi_ad);然后就可以使用findViewById去获取自定义布局下的控件了。
标签:布局,Preference,layout
0
投稿
猜你喜欢
Android仿360桌面手机卫士悬浮窗效果
2021-06-16 10:06:37
jvm运行原理以及类加载器实例详解
2023-10-23 18:39:03
详解JAVA里面获取map的key和value的方法
2023-04-27 03:11:50
Java Online Exam在线考试系统的实现
2022-01-30 13:49:35
Android应用中加入微信分享简单方法
2022-06-05 00:17:27
Java中自动装箱、拆箱引起的耗时详解
2023-01-11 11:42:42
纯Java代码实现流星划过天空
2022-06-01 12:12:35
C# TabControl控件中TabPage选项卡切换时的触发事件问题
2022-10-30 08:11:13
C#实现快速排序算法
2023-03-20 08:41:51
C#中静态方法和实例化方法的区别、使用
2023-08-25 20:49:33
java 获取对象中为null的字段实例代码
2023-08-28 06:32:53
MybatisPlus使用@TableId主键id自增长无效的解决
2023-01-30 15:59:41
一文带你全面了解Java Hashtable
2021-09-19 01:39:39
Android编程开发之TextView控件用法(2种方法)
2023-09-19 02:24:02
Android Spinner 下拉菜单的使用
2023-10-25 10:59:53
Flutter 使用fluro的转场动画进行页面切换
2023-06-17 11:49:26
Mybatis plus中的like查询问题
2022-03-18 09:14:30
java实现日历(某年的日历,某月的日历)用户完全自定义
2023-04-17 15:14:29
Java SSM实现前后端协议联调详解上篇
2023-09-16 20:42:22
AndroidManifest.xml <uses-feature>和<uses-permisstion>分析及比较
2023-11-05 12:17:12