您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
Spinner控件通常只能显示单行文本,无法直接实现多行文本显示。如果需要在Spinner中显示多行文本,可以通过自定义Spinner的适配器来实现。
下面是一个简单的示例代码,演示如何在Spinner中显示多行文本:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="16sp"/>
<TextView
android:id="@+id/text2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="14sp"/>
</LinearLayout>
public class CustomAdapter extends BaseAdapter {
private Context context;
private List<String> data;
public CustomAdapter(Context context, List<String> data) {
this.context = context;
this.data = data;
}
@Override
public int getCount() {
return data.size();
}
@Override
public Object getItem(int position) {
return data.get(position);
}
@Override
public long getItemId(int position) {
return position;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View view = LayoutInflater.from(context).inflate(R.layout.item_layout, parent, false);
TextView text1 = view.findViewById(R.id.text1);
TextView text2 = view.findViewById(R.id.text2);
String item = data.get(position);
String[] items = item.split("\n");
text1.setText(items[0]);
text2.setText(items[1]);
return view;
}
}
Spinner spinner = findViewById(R.id.spinner);
List<String> dataList = new ArrayList<>();
dataList.add("Item 1\nDescription 1");
dataList.add("Item 2\nDescription 2");
CustomAdapter adapter = new CustomAdapter(this, dataList);
spinner.setAdapter(adapter);
通过以上步骤,就可以实现在Spinner中显示多行文本了。在自定义的Adapter中,可以根据需要自定义布局和显示数据的方式。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。