码迷,mamicode.com
首页 > 移动开发 > 详细

Android布局PreferenceActivity——插入layout文件

时间:2014-06-11 21:45:21      阅读:298      评论:0      收藏:0      [点我收藏+]

标签:android   style   class   blog   code   java   

有两种方式:

1.布局文件activity_mian.xml需要添加一个ListView控件,且id为list,不然不能运行,应该是由于PreferenceActivity是一个List。

bubuko.com,布布扣
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/hello" />

    <ListView
        android:id="@android:id/list"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:drawSelectorOnTop="false" />

</LinearLayout>
bubuko.com,布布扣

2..直接在activity中在Activity中的onCreate添加setContentView(R.layout.activity_main);

然后就可以使用findViewById去获取自定义布局下的控件.

 

另一种方式:

1.在xml文件中preferencescreen的布局中添加

bubuko.com,布布扣
<Preference android:layout="@layout/activity_main" android:key="youmi_ad"/>  
bubuko.com,布布扣

 

2.activity_mian.xml和前面相同

 

 

3. findPreference("main");

Android布局PreferenceActivity——插入layout文件,布布扣,bubuko.com

Android布局PreferenceActivity——插入layout文件

标签:android   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/zust-zbt/p/3772512.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!