- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试包装 ActionBar 导航微调器的文本内容(我正在使用 ActionBar Sherlock)。似乎我的微调器采用了下拉列表中包含的项目的宽度。
如何使微调器中的选定项目根据其宽度“包裹”?在 GMaps 操作栏微调器中可以找到一个示例。
最佳答案
更新:
在这里下载我的示例项目:Spinner width test (Dropbox folder)(它包含此答案中提供的两种解决方案)。
由于字符的字距调整(字母间距)因文本而异,因此微调器的宽度也改变了我之前发布的答案的宽度(下)
因此,不要对标题进行子字符串化,只需像这样设置 TextView 的像素宽度:
textView.setWidth(200);
文本现在将被截断并以“..”结尾。
微调器的宽度保持不变。
您可以为下拉列表和微调器设置不同的宽度
您仍然需要自定义 SpinnerAdapter,但您不需要自定义
SpinnerItem 类,给适配器一个 String[] 数组就可以了。
spinner.setAdapter(new TruncatedSpinnerAdapter(stringArray));//String[]
在 TruncatedSpinnerAdapter 中:
public class TruncatedSpinnerAdapter implements SpinnerAdapter {
String[] spinnerItem;
public TruncatedSpinnerAdapter(String[] spinnerItem) {
this.spinnerItem = spinnerItem;
}
// ...more required interface callbacks here...
/**
* Returns the View that is shown when a spinner item is selected.
*/
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View view = getLayoutInflater().inflate(
android.R.layout.simple_spinner_item, null);
TextView textView = (TextView) view.findViewById(android.R.id.text1);
textView.setText(spinnerItem[position]);
//Set the width of the TextView in pixel.
//the text will now get truncated and ending with ".."
textView.setWidth(200);
return textView;
}
更新前的答案:
您可以通过创建自定义 SpinnerAdapter 来包装文本,您可以在其中控制在微调器 View 和微调器下拉 View 中显示的文本的长度。
/**
* A SpinnerItemAdapter to handle SpinnerItem Objects,
* displays the ArrayList of SpinnerItem Objects.
*/
public class SpinnerItemAdapter implements SpinnerAdapter{
/**
* The internal data, ArrayList of SpinnerItem Objects.
*/
SparseArray<SpinnerItem> spinnerItem;
public SpinnerItemAdapter(SparseArray<SpinnerItem> spinnerItem){
this.spinnerItem = spinnerItem;
}
/**
* Returns the Size
*/
@Override
public int getCount() {
return spinnerItem.size();
}
/**
* Returns a SpinnerItem Object at the specified position.
*/
@Override
public Object getItem(int position) {
return spinnerItem.valueAt(position);
}
// ...more required interface callbacks here...
/**
* Views displayed when the Spinner is clicked, the drop
* down list of spinner items.
*/
@Override
public View getDropDownView(int position, View convertView,
ViewGroup parent) {
View view=getLayoutInflater().inflate(android.R.layout.simple_spinner_dropdown_item, null);
TextView v=(TextView)view.findViewById(android.R.id.text1);
v.setText(spinnerItem.valueAt(position).getDropDownTitle());
return v;
}
/**
* Returns the View that is shown when a spinner item is selected.
*/
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View view=getLayoutInflater().inflate(android.R.layout.simple_spinner_item, null);
TextView v=(TextView)view.findViewById(android.R.id.text1);
v.setText(spinnerItem.valueAt(position).getShortTitle());
return v;
}
}
使用自定义 SpinnerItem 类填充适配器,该类可以保存并返回微调器 View 的缩短标题。
class SpinnerItem {
// SpinnerItem fields, including variable of type SpinnerItem
public String title = "";
// sets the width of the spinnerItem
public int titleLength = 10;//default value
public int titleDropDownLength = 20;
public long id;
// SpinnerItem methods()
/**
* Title with max characters displayed, set by titleLength;
*
* @return title of the spinnerItem.
*/
public CharSequence getShortTitle() {
if (title.length() == 0)
return "?";//
else if (title.length() > 0 && title.length() <= titleLength) {
return title;
} else {
String shortTile = title.substring(0, titleLength).trim() + "..";
return shortTile;
}
}
public CharSequence getDropDownTitle() {
if (title.length() == 0)
return "?";//
else if (title.length() > 0 && title.length() <= titleDropDownLength) {
return title;
} else {
String shortTile = title.substring(0, titleDropDownLength).trim() + "..";
return shortTile;
}
}
}
使用 SpinnerItem 类,您可以在创建 SpinnerItem 对象时通过设置最大标题长度来控制微调项 View 中显示的标题长度。
//Create an ArrayList for the Adapter with SpinnerItems
SparseArray<SpinnerItem> spinnerItems = new SparseArray<SpinnerItem>();
//Some dummy Cheese titles for the spinner items
String[] sCheeseStrings = {
"Abbaye de Belloc", "Abbaye du Mont des Cats", "Abertam", "Abondance", "Ackawi",
"Acorn", "Adelost", "Affidelice au Chablis", "Afuega'l Pitu", "Airag", "Airedale"};
for (int i = 0; i < sCheeseStrings.length; i++) {
SpinnerItem spinnerItem= new SpinnerItem();
spinnerItem.title=sCheeseStrings[i];
spinnerItem.id=i;
spinnerItem.titleLength=MAX_TITLE_LENGTH;
spinnerItem.titleDropDownLength=MAX_DROP_DOWN_TITLE_LENGTH;
spinnerItems.append(i, spinnerItem);
}
spinnerAdapter = new SpinnerItemAdapter(spinnerItems);
然后将spinnerAdapter添加到Spinner中
spinner.setAdapter(spinnerAdapter);
ActionBar:menu.xml 示例中的 Spinner
// For API below 11 use ActionBar Sherlock with Android Support Library
// getSupportMenuInflater().inflate(R.menu.activity_menu, menu);
// For API above 11
getMenuInflater().inflate(R.menu.activity_menu, menu);
spinner_menu = (Spinner) menu.findItem(R.id.menu_spinner).getActionView();
spinner_menu.setAdapter(spinnerAdapter);
关于android - 如何在 ActionBarSherlock 导航微调器中包装文本内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12569635/
表架构 DROP TABLE bla; CREATE TABLE bla (id INTEGER, city INTEGER, year_ INTEGER, month_ INTEGER, val I
我需要拆分字符串/或从具有以下结构的字符串中获取更容易的子字符串。 字符串将来自 window.location.pathname 或 window.location.href,看起来像 text/n
每当将对象添加到数组中时,我都会尝试更新 TextView ,并在 TextView 中显示该文本,如下所示: "object 1" "object 2" 问题是,每次将新对象添加到数组时,它都会覆盖
我目前正在寻找使用 Java 读取网站可见文本并将其存储为纯文本字符串的方法。 换句话说,我想转换成这样: Hello stupid World进入“ Hello World ” 或者类似的东西 Un
我正在尝试以文本和 HTML 格式发送电子邮件,但无法正确发送正确的 header 。特别是,我想设置 Content-Type header ,但我找不到如何为 html 和文本部分单独设置它。 这
我尝试了上面的代码,但我无法绑定(bind)文本,我怎样才能将资源内部文本 bloc
我刚刚完成了 Space Shooter 教程,由于没有 GUIText 对象,所以我创建了 UI.Text 对象并进行了相应的编码。它在统一播放器中有效,但在构建 Web 应用程序后无效。我花了一段
我有这个代码: - (IBAction)setButtonPressed:(id)sender { NSUserDefaults *sharedDefaults = [[NSUserDefau
抱歉标题含糊不清,但我想不出我想在标题中做什么。无论如何,对于图像上的文本,我使用了 JLabel 文本并将其添加到图标中。 JLabel icon = new JLabel(new Imag
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能是on-topi
我在将 Twitter 嵌入到我从 HTML 5 转换的 wordpress 运行网站时遇到问题。 我遇到的问题是推文不是我的自定义字体... 这是我无法使用任何 css 定位的 HTML 代码,我正
我正在尝试找到解决由于使用以下形式的代码而导致的冗余字符串连接问题的最佳方法: logger.debug("Entering loop, arg is: " + arg) // @1 在大多数情况下,
我写了这个测试 @Test public void removeRequestTextFromRouteError() throws Exception { String input = "F
我目前正在创建一个正则表达式来拆分所有匹配以下格式的字符串:&[文本],并且需要获取文本。字符串可能类似于:something &[text] &[text] everything &[text] 等
有没有办法将标题文本从一个词变形为另一个词,同时保留两个词中使用的字母?我看过的许多 css 文本动画大多是视觉的,很少有旋转整个单词的。 我想要做的是从一个词过渡,例如“BEACH”到“CHANGE
总结matplotlib绘图如何设置坐标轴刻度大小和刻度。 上代码: ?
我在容器 (1) 中创建了容器 (2)。你能帮忙如何向容器(1)添加文本吗?下面是我的代码 return Scaffold( body: Padding( padding: c
我似乎找不到任何人或任何人这样做过。我试图限制我们使用的图像数量,并想创建一个带有渐变作为其“颜色”的文本,并在其周围设置渐变轮廓/描边 到目前为止,我还没有看到任何将两者结合在一起的东西。 我可以自
我正在为视频游戏暗黑破坏神 2 使用 discord.py 构建一个不和谐机器人。其中一项功能要求机器人从暗黑破坏神 2 屏幕截图中提取项目的名称和属性。我目前正在为此使用 pytesseract,但
我很难弄清楚如何旋转 strip.text theme 中的属性来自 ggplot2 .我使用的是 R 版本 3.4.2 和 ggplot2 版本 2.2.1。 以下是 MWE 的数据。 > dput
我是一名优秀的程序员,十分优秀!