给微调器项目下拉菜单的宽度

时间:2018-10-05 05:09:50

标签: android xml android-studio

我的布局中的微调框出现问题。

问题是我的物品宽度很小,在小屏幕上很难单击它们。

检查图片是否有想法。

enter image description here

没有简单的方法将项目宽度设置为实际的下拉菜单宽度吗?

<android.support.v7.widget.AppCompatSpinner
    android:id="@+id/spellSpinner"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:layout_marginStart="10dp"
    android:layout_marginEnd="10dp"
    android:dropDownWidth="match_parent"
    android:spinnerMode="dropdown"
    android:popupBackground="#fff"
    android:background="#8A8A8A"/>

我的Java代码:

spinnerSpells = findViewById(R.id.spellSpinner);
ArrayAdapter < CharSequence > adapter = ArrayAdapter.createFromResource(spellActivity.this, R.array.dropdownCategory, android.R.layout.simple_spinner_item);
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
spinnerSpells.setAdapter(adapter);

spinnerSpells.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
  @Override
  public void onItemSelected(AdapterView << ? > adapterView, View view, int i, long l) {
    getSpellList(spinnerSpells.getSelectedItem().toString(), switchSpells.isChecked());
    // do some other stuff [...]
  }

  @Override
  public void onNothingSelected(AdapterView << ? > adapterView) {
    getSpellList(spinnerSpells.getSelectedItem().toString(), switchSpells.isChecked());
   // do some other stuff [...]
  }
});

致以最诚挚的问候 CG

P.S。我真的没有在论坛上找到有关此事的任何帖子。

5 个答案:

答案 0 :(得分:1)

说实话,他们的回答并没有真正帮助我,尽管给了我很好的提示。我找到了一种方法来自己解决问题(在标签前面也实现了图片)。

基本上,使用专用的xml文件为微调器充气是正确的选择。 我发布了我的代码:

为我的爱人创建了一个新的班级:

<commit>

相应地添加了一个xml文件:

package edmt.dev.androidgridlayout;

import android.content.Context;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.ImageView;
import android.widget.TextView;

public class xCustomSpinnerAdapater extends ArrayAdapter<String> {

    Context mContext;
    String[] spinnerNames;
    int[] spinnerImages;

    public xCustomSpinnerAdapater( Context mContext, String[] spinnerNames, int[] spinnerImages) {
        super(mContext, R.layout.x_custom_spinner, spinnerNames);
        this.mContext = mContext;
        this.spinnerNames = spinnerNames;
        this.spinnerImages = spinnerImages;
    }


    @Override
    public View getDropDownView(int position, @Nullable View convertView, @NonNull ViewGroup parent) {

            LayoutInflater inflater = (LayoutInflater)mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            View row = inflater.inflate(R.layout.x_custom_spinner,null);
            TextView tvSpinnerText = row.findViewById(R.id.tvSpinnerText);
            ImageView ivSpinnerImage = row.findViewById(R.id.ivSpinnerImage);

            tvSpinnerText.setText(spinnerNames[position]);
            ivSpinnerImage.setImageResource(spinnerImages[position]);

        return row;
    }

    @NonNull
    @Override
    public View getView(int position, @Nullable View convertView, @NonNull ViewGroup parent) {

        LayoutInflater inflater = (LayoutInflater)mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View row = inflater.inflate(R.layout.x_custom_spinner,null);
        TextView tvSpinnerText = row.findViewById(R.id.tvSpinnerText);
        ImageView ivSpinnerImage = row.findViewById(R.id.ivSpinnerImage);

        tvSpinnerText.setText(spinnerNames[position]);
        ivSpinnerImage.setImageResource(spinnerImages[position]);

        return row;
    }
}

然后,我按如下方式编辑mainActivity:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="40dp"
    android:orientation="horizontal"
    >

    <ImageView
        android:id="@+id/ivSpinnerImage"

        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="3"

        android:padding="5dp"
        android:src="@drawable/artifact"
        />
    <TextView
        android:id="@+id/tvSpinnerText"

        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="7"
        android:gravity="center"

        android:text="Accessory"
        android:textSize="18sp"

        />

</LinearLayout>

在Linearlayout中的xml文件中使用layout_width =“ match_parent”可以解决我的问题。

致以最诚挚的问候 CG

答案 1 :(得分:0)

在xml中使用属性

<?php
require_once('../wp-load.php');
$args = array(
    'post_type'      => 'product',
    'posts_per_page' => 10
);

$loop = new WP_Query( $args );

while ( $loop->have_posts() ) : $loop->the_post();
    global $product;
    echo '<br /><a href="'.get_permalink().'">' . woocommerce_get_product_thumbnail().' '.get_the_title().'</a>';
endwhile;

wp_reset_query();
?>
  

有关更多点击:   https://developer.android.com/reference/android/widget/Spinner.html#setDropDownWidth(int)

答案 2 :(得分:0)

为您的微调项使用自定义XML文件。

说出spinner_item.xml并根据需要提供自定义的文本大小和颜色

    android:dropDownWidth="fill_parent| match_parent| wrap_content"
    android:spinnerMode="dropdown"

使用此文件显示您的微调项,例如:

<?xml version="1.0" encoding="utf-8"?>

<TextView  
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" 
android:layout_height="wrap_content"
android:textSize="20sp"
android:gravity="left"  
android:textColor="#FF0000"         
android:padding="5dip"
/>

答案 3 :(得分:0)

为微调框textview创建单独的布局

R.layout.spinner_text

[\?&]([^=]+)\=([^&]+)

并按照以下步骤设置适配器

<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@android:id/text1"
    android:maxLines="1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textSize="your_size_in_dp" />

答案 4 :(得分:0)

  1. 旋转数组列表设为“ dropdownCategory.xml”

    <?xml version="1.0" encoding="utf-8"?>
    <resources>
        <string-array name="dropdownCategory">
            <item>All</item>
            <item>Black</item>
            <item>Blue</item>
            <item>Green</item>
            <item>Red</item>
        </string-array>
    </resources>
    
  2. 具有微调器的布局

    <android.support.v7.widget.AppCompatSpinner
     android:id="@+id/spellSpinner"
     android:layout_width="0dp"
     android:layout_height="match_parent"
     android:layout_weight="1"
     android:layout_marginStart="10dp"
     android:layout_marginEnd="10dp"
     android:dropDownWidth="wrap_content"
     android:spinnerMode="dropdown"
     android:popupBackground="#fff"
     android:background="#8A8A8A"/>
    
  3. 在onCreate中的activity.java类中

    Spinner spinnerSpells = findViewById(R.id.spellSpinner);
    ArrayAdapter<String> adapter = new ArrayAdapter<String>(spellActivity.this, R.array.dropdownCategory, android.R.layout.simple_spinner_item);
    adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
    spinnerSpells.setAdapter(adapter);
    
    spinnerSpells.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
    @Override
    public void onItemSelected(AdapterView<?> adapterView, View view, int i, long l) {
     // do something [...]
     }
    
    @Override
    public void onNothingSelected(AdapterView<?> adapterView) {
       // do something [...]
    });
    

希望这对您有帮助