gpt4 book ai didi

android - 对齐选定的微调项

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:07:35 24 4
gpt4 key购买 nike

我正在尝试微调微调器中所选项目的位置。 不是下拉列表项,因为我已经在我的适配器中有一个自定义 View ,但特别是选定的项目。

如您在屏幕截图中所见,“Any”是当前选中的项目。但它在容器内的对齐方式很奇怪,因为它必须容纳下拉列表中最长的字符串,即“Dark Purple Burnt Sienna”(或其他)。我想将所选文本右对齐,以便“任何”位于下拉指示器旁边,而不是在中间。

我试图对我的自定义微调项 View 进行调整,但它对所选项目没有任何影响。

我也曾尝试在 Spinner 本身上设置重力和文本对齐方式,但没有任何效果。

这是图片和 xml:

enter image description here

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/default_black"
android:layout_centerVertical="true"
android:text="Color" />

<Spinner
android:id="@+id/spn_color"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"/>

</RelativeLayout>

编辑:这是我的适配器:

public class ColorsAdapter<T> implements SpinnerAdapter {
ArrayList<String> mColors;
ArrayList<Integer> mValues;
Context mContext;

public ColorsAdapter(ArrayList<String> colors, ArrayList<Integer> values,
Context context) {
mContext = context;
mColors = colors;
mValues = values;
}

@Override
public int getCount() {
return mColors.size();
}

@Override
public Object getItem(int position) {
return mColors.get(position);
}

@Override
public long getItemId(int position) {
return position;
}

@Override
public int getItemViewType(int position) {
return R.layout.list_item_color;
}


@Override
public View getView(int position, View convertView, ViewGroup parent) {
TextView v = new TextView(mContext);
v.setText(mColors.get(position));
return v;
}

@Override
public View getDropDownView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(
Context.LAYOUT_INFLATER_SERVICE );
View row = inflater.inflate(getItemViewType(position), parent, false);
TextView tvName = (TextView)row.findViewById(R.id.tv_name);
tvName.setText(mColors.get(position));
row.setTag(mValues.get(position));
return row;
}


@Override
public int getViewTypeCount() {
return 1;
}

@Override
public boolean hasStableIds() {
return false;
}

@Override
public boolean isEmpty() {
return false;
}

}

这是列表项的 XML:

<TextView
android:id="@+id/tv_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:gravity="right"/>

最佳答案

您可以在 getView(int position, View convertView, ViewGroup parent) 方法中调整所选项目的设置。如果你只是想设置重力和文本对齐方式,你应该将它设置到方法中的 TextView

@Override
public View getView(int position, View convertView, ViewGroup parent) {
TextView v = new TextView(mContext);
v.setText(mColors.get(position));
v.setGravity(Gravity.END); // OR v.setGravity(Gravity.RIGHT);
return v;
}

或者,如果您想进行进一步的定制,您可以简单地扩展自定义布局:

@Override
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(
Context.LAYOUT_INFLATER_SERVICE);
View row = null;
if (inflater != null) {
row = inflater.inflate(R.layout.list_item_view_color, parent, false);
TextView textView = row.findViewById(R.id.textview);
textView .setText(mColors.get(position));
}
return row;
}

list_item_view_color.xml 是所选值的布局文件。
(注意:如果您想使用 autoSizeTextType 等选项,您可以在 xml 文件中为 AppCompatTextView 使用带有 app 前缀的选项)

关于android - 对齐选定的微调项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46977679/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com