- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我的彩信应用程序需要有关此文件的帮助。 getActivity()
导致构建错误。
错误: 找不到符号:方法 getActivity()
到目前为止,我已经尝试了很多方法来使这项工作正常进行,例如 extends PreferenceFragment
- 然后 getActivity()
就可以了,但是这个解决方案破坏了许多其他东西。
有谁知道我为什么会收到此错误?
我的代码:
package com.android.mms.themes;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.URISyntaxException;
import android.app.Activity;
import android.app.ActionBar;
import android.app.Fragment;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.res.Configuration;
import android.content.res.Resources;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.drawable.Drawable;
import android.graphics.Rect;
import android.net.Uri;
import android.os.Bundle;
import android.os.SystemProperties;
import android.preference.CheckBoxPreference;
import android.preference.EditTextPreference;
import android.preference.ListPreference;
import android.preference.Preference;
import android.preference.PreferenceActivity;
import android.preference.PreferenceFragment;
import android.preference.PreferenceGroup;
import android.preference.PreferenceManager;
import android.preference.Preference.OnPreferenceChangeListener;
import android.preference.PreferenceScreen;
import android.provider.MediaStore;
import android.text.Spannable;
import android.util.Log;
import android.view.Display;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.View;
import android.view.Window;
import com.android.mms.R;
import com.android.mms.ui.ColorPickerPreference;
public class ThemesMessageList extends PreferenceActivity implements
Preference.OnPreferenceChangeListener {
// Menu entries
private static final int THEMES_RESTORE_DEFAULTS = 1;
// Layout Style
public static final String PREF_TEXT_CONV_LAYOUT = "pref_text_conv_layout";
// Msg background
public static final String PREF_MESSAGE_BG = "pref_message_bg";
private static final String CUSTOM_IMAGE = "message_list_image.jpg";
private static final int REQUEST_PICK_WALLPAPER = 201;
private static final int SELECT_WALLPAPER = 5;
// Bubble types
public static final String PREF_BUBBLE_TYPE = "pref_bubble_type";
public static final String PREF_BUBBLE_FILL_PARENT = "pref_bubble_fill_parent";
// Checkbox preferences
public static final String PREF_USE_CONTACT = "pref_use_contact";
public static final String PREF_SHOW_AVATAR = "pref_show_avatar";
// Colorpicker preferences send
public static final String PREF_SENT_TEXTCOLOR = "pref_sent_textcolor";
public static final String PREF_SENT_CONTACT_COLOR = "pref_sent_contact_color";
public static final String PREF_SENT_DATE_COLOR = "pref_sent_date_color";
public static final String PREF_SENT_TEXT_BG = "pref_sent_text_bg";
public static final String PREF_SENT_SMILEY = "pref_sent_smiley";
// Colorpicker preferences received
public static final String PREF_RECV_TEXTCOLOR = "pref_recv_textcolor";
public static final String PREF_RECV_CONTACT_COLOR = "pref_recv_contact_color";
public static final String PREF_RECV_DATE_COLOR = "pref_recv_date_color";
public static final String PREF_RECV_TEXT_BG = "pref_recv_text_bg";
public static final String PREF_RECV_SMILEY = "pref_recv_smiley";
// message background
ColorPickerPreference mMessageBackground;
// send
ColorPickerPreference mSentTextColor;
ColorPickerPreference mSentDateColor;
ColorPickerPreference mSentContactColor;
ColorPickerPreference mSentTextBgColor;
ColorPickerPreference mSentSmiley;
// received
ColorPickerPreference mRecvTextColor;
ColorPickerPreference mRecvContactColor;
ColorPickerPreference mRecvDateColor;
ColorPickerPreference mRecvTextBgColor;
ColorPickerPreference mRecvSmiley;
private CheckBoxPreference mUseContact;
private CheckBoxPreference mShowAvatar;
private CheckBoxPreference mBubbleFillParent;
private ListPreference mTextLayout;
private ListPreference mBubbleType;
private Preference mCustomImage;
private SharedPreferences sp;
protected Context mContext;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mContext = getActivity();
loadThemePrefs();
ActionBar actionBar = getActionBar();
actionBar.setDisplayHomeAsUpEnabled(true);
}
public void loadThemePrefs() {
// Load the preferences from an XML resource
addPreferencesFromResource(R.xml.preferences_themes_msglist);
PreferenceScreen prefSet = getPreferenceScreen();
sp = PreferenceManager.getDefaultSharedPreferences(this);
mUseContact = (CheckBoxPreference) prefSet.findPreference(PREF_USE_CONTACT);
mShowAvatar = (CheckBoxPreference) prefSet.findPreference(PREF_SHOW_AVATAR);
mBubbleFillParent = (CheckBoxPreference) prefSet.findPreference(PREF_BUBBLE_FILL_PARENT);
mTextLayout = (ListPreference) findPreference(PREF_TEXT_CONV_LAYOUT);
mTextLayout.setOnPreferenceChangeListener(this);
mTextLayout.setSummary(mTextLayout.getEntry());
mBubbleType = (ListPreference) findPreference(PREF_BUBBLE_TYPE);
mBubbleType.setOnPreferenceChangeListener(this);
mBubbleType.setSummary(mBubbleType.getEntry());
mCustomImage = findPreference("pref_custom_image");
mMessageBackground = (ColorPickerPreference) findPreference(PREF_MESSAGE_BG);
mMessageBackground.setOnPreferenceChangeListener(this);
mSentTextColor = (ColorPickerPreference) findPreference(PREF_SENT_TEXTCOLOR);
mSentTextColor.setOnPreferenceChangeListener(this);
mSentContactColor = (ColorPickerPreference) findPreference(PREF_SENT_TEXTCOLOR);
mSentContactColor.setOnPreferenceChangeListener(this);
mSentDateColor = (ColorPickerPreference) findPreference(PREF_SENT_TEXTCOLOR);
mSentDateColor.setOnPreferenceChangeListener(this);
mSentTextBgColor = (ColorPickerPreference) findPreference(PREF_SENT_TEXTCOLOR);
mSentTextBgColor.setOnPreferenceChangeListener(this);
mSentSmiley = (ColorPickerPreference) findPreference(PREF_SENT_SMILEY);
mSentSmiley.setOnPreferenceChangeListener(this);
mRecvTextColor = (ColorPickerPreference) findPreference(PREF_RECV_TEXTCOLOR);
mRecvTextColor.setOnPreferenceChangeListener(this);
mRecvContactColor = (ColorPickerPreference) findPreference(PREF_RECV_TEXTCOLOR);
mRecvContactColor.setOnPreferenceChangeListener(this);
mRecvDateColor = (ColorPickerPreference) findPreference(PREF_RECV_TEXTCOLOR);
mRecvDateColor.setOnPreferenceChangeListener(this);
mRecvTextBgColor = (ColorPickerPreference) findPreference(PREF_RECV_TEXT_BG);
mRecvTextBgColor.setOnPreferenceChangeListener(this);
mRecvSmiley = (ColorPickerPreference) findPreference(PREF_RECV_SMILEY);
mRecvSmiley.setOnPreferenceChangeListener(this);
}
@Override
public boolean onPreferenceChange(Preference preference, Object newValue) {
boolean result = false;
if (preference == mMessageBackground) {
String hex = ColorPickerPreference.convertToARGB(Integer.valueOf(String
.valueOf(newValue)));
mMessageBackground.setSummary(hex);
} else if (preference == mSentTextColor) {
String hex = ColorPickerPreference.convertToARGB(Integer.valueOf(String
.valueOf(newValue)));
mSentTextColor.setSummary(hex);
} else if (preference == mSentContactColor) {
String hex = ColorPickerPreference.convertToARGB(Integer.valueOf(String
.valueOf(newValue)));
mSentContactColor.setSummary(hex);
} else if (preference == mSentDateColor) {
String hex = ColorPickerPreference.convertToARGB(Integer.valueOf(String
.valueOf(newValue)));
mSentDateColor.setSummary(hex);
} else if (preference == mSentTextBgColor) {
String hex = ColorPickerPreference.convertToARGB(Integer.valueOf(String
.valueOf(newValue)));
mSentTextBgColor.setSummary(hex);
} else if (preference == mSentSmiley) {
String hex = ColorPickerPreference.convertToARGB(Integer.valueOf(String
.valueOf(newValue)));
mSentSmiley.setSummary(hex);
} else if (preference == mRecvTextColor) {
String hex = ColorPickerPreference.convertToARGB(Integer.valueOf(String
.valueOf(newValue)));
mRecvTextColor.setSummary(hex);
} else if (preference == mRecvContactColor) {
String hex = ColorPickerPreference.convertToARGB(Integer.valueOf(String
.valueOf(newValue)));
mRecvContactColor.setSummary(hex);
} else if (preference == mRecvDateColor) {
String hex = ColorPickerPreference.convertToARGB(Integer.valueOf(String
.valueOf(newValue)));
mRecvDateColor.setSummary(hex);
} else if (preference == mRecvTextBgColor) {
String hex = ColorPickerPreference.convertToARGB(Integer.valueOf(String
.valueOf(newValue)));
mRecvTextBgColor.setSummary(hex);
} else if (preference == mRecvSmiley) {
String hex = ColorPickerPreference.convertToARGB(Integer.valueOf(String
.valueOf(newValue)));
mRecvSmiley.setSummary(hex);
} else if (preference == mTextLayout) {
int index = mTextLayout.findIndexOfValue((String) newValue);
mTextLayout.setSummary(mTextLayout.getEntries()[index]);
return true;
} else if (preference == mBubbleType) {
int index = mBubbleType.findIndexOfValue((String) newValue);
mBubbleType.setSummary(mBubbleType.getEntries()[index]);
return true;
}
return result;
}
@Override
public boolean onPreferenceTreeClick(PreferenceScreen preferenceScreen, Preference preference) {
boolean value;
if (preference == mCustomImage) {
Display display = getActivity().getWindowManager().getDefaultDisplay();
int width = display.getWidth();
int height = display.getHeight();
Rect rect = new Rect();
Window window = getActivity().getWindow();
window.getDecorView().getWindowVisibleDisplayFrame(rect);
int statusBarHeight = rect.top;
int contentViewTop = window.findViewById(Window.ID_ANDROID_CONTENT).getTop();
int titleBarHeight = contentViewTop - statusBarHeight;
Intent intent = new Intent(Intent.ACTION_GET_CONTENT, null);
intent.setType("image/*");
intent.putExtra("crop", "true");
boolean isPortrait = getResources()
.getConfiguration().orientation
== Configuration.ORIENTATION_PORTRAIT;
intent.putExtra("aspectX", isPortrait ? width : height - titleBarHeight);
intent.putExtra("aspectY", isPortrait ? height - titleBarHeight : width);
intent.putExtra("outputX", width);
intent.putExtra("outputY", height);
intent.putExtra("scale", true);
intent.putExtra("scaleUpIfNeeded", true);
intent.putExtra(MediaStore.EXTRA_OUTPUT, getCustomImageExternalUri());
intent.putExtra("outputFormat", Bitmap.CompressFormat.PNG.toString());
startActivityForResult(intent, REQUEST_PICK_WALLPAPER);
return true;
} else if (preference == mUseContact) {
value = mUseContact.isChecked();
} else if (preference == mShowAvatar) {
value = mShowAvatar.isChecked();
} else if (preference == mBubbleFillParent) {
value = mShowAvatar.isChecked();
}
return super.onPreferenceTreeClick(preferenceScreen, preference);
}
private void restoreThemeMessageListDefaultPreferences() {
PreferenceManager.getDefaultSharedPreferences(this).edit().clear().apply();
setPreferenceScreen(null);
loadThemePrefs();
}
public boolean onCreateOptionsMenu(Menu menu) {
super.onCreateOptionsMenu(menu);
menu.clear();
menu.add(R.menu.themes_message_list);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case THEMES_RESTORE_DEFAULTS:
restoreThemeMessageListDefaultPreferences();
return true;
case R.id.custom_image_delete:
deleteCustomImage();
return true;
case android.R.id.home:
// The user clicked on the Messaging icon in the action bar. Take them back from
// wherever they came from
finish();
return true;
}
return false;
}
private void deleteCustomImage() {
mContext.deleteFile(CUSTOM_IMAGE);
}
private Uri getCustomImageExternalUri() {
File dir = mContext.getExternalCacheDir();
File wallpaper = new File(dir, CUSTOM_IMAGE);
return Uri.fromFile(wallpaper);
}
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (resultCode == Activity.RESULT_OK) {
if (requestCode == REQUEST_PICK_WALLPAPER) {
FileOutputStream wallpaperStream = null;
try {
wallpaperStream = mContext.openFileOutput(CUSTOM_IMAGE,
Context.MODE_WORLD_READABLE);
} catch (FileNotFoundException e) {
return; // NOOOOO
}
Uri selectedImageUri = getCustomImageExternalUri();
Bitmap bitmap = BitmapFactory.decodeFile(selectedImageUri.getPath());
bitmap.compress(Bitmap.CompressFormat.PNG, 100, wallpaperStream);
}
}
}
public void copy(File src, File dst) throws IOException {
InputStream in = new FileInputStream(src);
FileOutputStream out = new FileOutputStream(dst);
// Transfer bytes from in to out
byte[] buf = new byte[1024];
int len;
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}
in.close();
out.close();
}
}
最佳答案
getActivity()
不存在于 Activity
类中,因此要获取 Activity 的 Context
,只需使用 this
改为:
mContext = this;
因为 Activity 是 Context 的子类(子类)
https://developer.android.com/reference/android/app/Activity
关于android - getActivity() 找不到符号符号 : method getActivity(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12407229/
给定一个字符串,例如 s="##$$$#",我如何找到索引之前的“#”符号数等于“”数的索引$"符号在索引之后? 示例:如果 s="##$$$#",则输出将为 2。 解释:在索引 2 之前我们有 2
在本教程中,您将借助示例了解 JavaScript 符号。 JavaScript 符号 JavaScript ES6 引入了一种新的原始数据类型,称为 Symbol(符号)。符号是不可变的(不能更改)
在“函数编程的工艺”一书中,符号 '>.>' 将函数连接在一起,与 '.' 的方向相反。但是当我使用 ghci 实现它时,它显示了超出范围的错误 '>.>'。为什么?它是不再使用的旧符号吗? 最佳答案
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我需要从向量中删除 \"。这是我的数据: data <- c("\"https://click.linksynergy.com/link?id=RUxZriH*PWc&offerid=323058.1
我在 Nginx 配置中使用正则表达式来捕获文件 URL,但如果文件 URL 包含 # 符号,正则表达式模式将不会捕获它。 这里是nginx的配置部分。 location ~ ^/p/(?[\w\-=
如何使 & 符号在此图表的第一组条形/列下正确显示: http://jsfiddle.net/VxbrK/2/ 应该是“Apples & Oranges”而不是“Apples & Oranges”。
**在verilog中是什么意思? 我为测试台提供了以下逻辑 localparam NUM_INPUT_BITS = 1; localparam NUM_OUTPUT_BITS
我有一个使用正则表达式来验证电子邮件地址的方法。 public String searchFormail(String searchWord) { Pattern pattern = Patt
我想将一个字符串拆分为数字部分和文本/符号部分我当前的代码不包含负数或小数,并且表现得很奇怪,在输出的末尾添加了一个空列表元素 import re mystring = 'AD%5(6ag 0.33-
我有一些代码需要从数组中选择一个随机字符串,但它一直返回单个字母或数字。如何解决这个问题? var name = ["Yayek", "Vozarut", "Gezex",
我刚开始使用 Python,我在考虑应该使用哪种表示法。我读过 PEP 8关于 Python 符号的指南,我同意那里的大多数内容,除了函数名称(我更喜欢混合大小写风格)。 在 C++ 中,我使用匈牙利
在用 C# 编写代码时,我错误地在 if 语句中的变量前添加了一个符号(而不是感叹号)。 bool b = false; if (@b) { } 我很惊讶它编译成功,没有任何错误。 我想知道:上面的代
本文实例为大家分享了特殊字符替换电话号码中某一部分的方法,ios利用-号替换电话号码中间四位,供大家参考,具体内容如下 1、效果图 2、代码 rootviewcontroll
当我使用“x”和“z”作为符号时,这段代码没有问题: from sympy import * x, z = symbols('x z') y = -6*x**2 + 2*x*z**0.5 + 50*x
我需要从文本中删除标点符号: data <- "Type the command AT&W enter. in order to save the new protocol on modem;"
我有几个数字是 numeric 类。下面的例子。 df = c(12974,12412,124124,124124,34543,4576547,32235) 现在我想在每个数字前添加 '$' 符号而不
我有一个 highcharts 图例,其中符号以不同的大小显示,因为它们在实际图表中的大小不同。不幸的是,当数据点的大小增加时,它们也会在图例中增加。无论数据点大小如何,我都希望图例符号保持相同的大小
我需要使用包含平均值+-SD的标题。到目前为止,我只能得到以下信息: "Mean +- SD or N (%)" [1] "Mean +- SD or N (%)" 如何直接使用“+-”符号?您知道一
使用 XSLT 和 XPath 1.0,我有一个要转义的字符串以用于 URL,例如: one word & another 因此,描述元素的 text() 应该进行 URL 转义。 我该怎么做
我是一名优秀的程序员,十分优秀!