我在 xml 文件中有一个微调器,宽度和高度设置为 wrap_content,我将背景设置为微调器,
文本显示在中心,如果我在 dp 或 fill_parent 中设置宽度,则文本以左对齐显示,但当微调器宽度为 wrap_content 时我需要左对齐
我在 xml 文件中有一个微调器,宽度和高度设置为 wrap_content,我将背景设置为微调器,
文本显示在中心,如果我在 dp 或 fill_parent 中设置宽度,则文本以左对齐显示,但当微调器宽度为 wrap_content 时我需要左对齐
尝试这个 :
android:paddingRight="10dp"
OR
android:paddingLeft="10dp"
根据需要设置大小。这会将填充设置为微调器视图的文本。
您可以像这样使用设置您的 Spinner 视图,如:
res/layout/my_spinner_textview.xml
<?xml version="1.0" encoding="utf-8"?>
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
style="?android:attr/spinnerItemStyle"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center" />
public class HelloSpinner extends Activity
{
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Spinner spinner = (Spinner) findViewById(R.id.spinner);
ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(this, R.array.planets_array,
// android.R.layout.simple_spinner_item);
R.layout.my_spinner_textview);
// adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
adapter.setDropDownViewResource(R.layout.my_spinner_textview);
spinner.setAdapter(adapter);
spinner.setOnItemSelectedListener(new MyOnItemSelectedListener());
}
//No other modification needed.
在您的自定义文本视图中包含这四行,以使您的微调器文本左对齐。
android:singleLine="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ellipsize="marquee"