话不多说,直接切入正题
一、Android中消除preference拖拉时黑色背景方法:
首先建立一个l
代码如下:
待机时间
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<ListView android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"好听的欧美歌曲
android:layout_marginLeft="3dip"
android:divider="@drawable/divider"
android:cacheColorHint="#00000000"
/>
</LinearLayout>
注释:android:divider="@drawable/divider"
android:cacheColorHint=horas"#00000000"
重点是这两句话:第一句是设置preferece之间的分割线;
第二句就是消除preference拖拽时产生的黑色背景啦!(“#00000000”就是将其设为透明,你也可以把它设为其他颜色)
二、代码中调用方法:
随便写个PreActivity.java
affectation
t.Context;bamboo forest
import android.preference.PreferenceActivity;
import android.preference.PreferenceScreen;
public class PreActivity extends PreferenceActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
Create(savedInstanceState);
addPreferencesFromResource(R.layout.test);
tContentView(R.layout.preference_list); //将test布局中的内容添加到该list中,(补充:你也可以在preference_list中添加其他一些控键)
}
}
贴一个l出来:
<?xml version="1.0" encoding="utf-8"?>
行尸走肉第四季12<英语在线阅读PreferenceScreen xmlns:android="/apk/res/android">
<CheckBoxPreference
android:key="test_box"
android:title="Test Box"
android:summary="summary"
广告学考研 android:persistent="fal" />
<Preference
android:key="test"
android:title="Test"
walt disney android:persistent="fal" />
</提前录取PreferenceScreen>
到这里就ok了!背景就消除了
三、若想调整preference控键中字体颜色的:
请看这个地址:
topic.csdn/u/20100722/10/8156df5c-a4b1-4ad1-a135-9b8721164570.html
按照他的步骤来就可以了,这个也是学他的,在此,感谢这位兄弟!。