簡體   English   中英

在適配器微調器android中更改顏色textview

[英]Change color textview in adapter spinner android

  reports = (Spinner)findViewById(R.id.spinner_report);
  reportType = getIntent().getStringExtra("report");

   private void setTypeReport(){
    ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(this,
            R.array.type_report, R.layout.item_spinner_p);

    adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
    reports.setAdapter(adapter);

    int pos= adapter.getPosition(reportType);
    type_report= getResources().getStringArray(R.array.type_report);

    String valueAtIndex = type_report[pos];
    for(int i = pos; i > 0; i--){
        type_report[i] = type_report[i-1];
    }
    type_report[0] = valueAtIndex;
    //now set this array to second Spinner
    ArrayAdapter spinnerBArrayAdapter = new ArrayAdapter(this,
            android.R.layout.simple_spinner_dropdown_item,
            type_report);
    reports.setAdapter(spinnerBArrayAdapter);
    newreport = reports.getSelectedItem().toString();
}
               main.xml
               <?xml version="1.0" encoding="utf-8"?>
               <RelativeLayout
               xmlns:android="http://schemas.android.com/apk/res/android"
               android:layout_width="match_parent"
               android:background="#eee"
               android:descendantFocusability="beforeDescendants"
               android:focusableInTouchMode="true"
               android:layout_height="match_parent">

                 <Spinner
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:id="@+id/spinner_report"
                    android:background="@drawable/round_box"
                    android:visibility="gone"
                    android:layout_marginBottom="5dp">
                </Spinner>
               </RelattiveLayout>


     item_spinner_p.xml 

     <TextView xmlns:android="http://schemas.android.com/apk/res/android"
       android:id="@android:id/text1"
       android:layout_width="match_parent"
        android:layout_height="wrap_content"
       android:textColor="@color/black"
       android:textSize="17sp"
       android:paddingTop="10dp"
       android:paddingBottom="10dp"
       android:paddingLeft="7dp"
       android:paddingRight="7dp"/>



      string.xml
<string-array name="type_report">
    <item>Male</item>
    <item>Female</item>

</string-array>

item_spinner_p.xml中的默認顏色為黑色...無論是男性還是女性,它都會顯示黑色。問題是,我想在reportType =男性(來自上一個活動)時做,它會將顏色更改為紅色,如果reportType =女性(來自之前的活動),它將顏色變為藍色。

我想在string.xml中使用方式設置顏色..為男性設置顏色紅色..但我不知道設置它的正確方法..

您必須創建自定義微調器適配器。 請看這個頁面: http//mrbool.com/how-to-customize-spinner-in-android/28286

但是如果你想要簡單的解決方案,你可以為男性和女性創建兩個單獨的布局,如下所示:

對於男性:item_males

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
   android:id="@android:id/text1"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:textColor="@android:color/red"
   android:textSize="17sp"
   android:paddingTop="10dp"
   android:paddingBottom="10dp"
   android:paddingLeft="7dp"
   android:paddingRight="7dp"/>

對於女性:item_females

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
   android:id="@android:id/text1"
   android:layout_width="match_parent"
    android:layout_height="wrap_content"
   android:textColor="@android:color/blue"
   android:textSize="17sp"
   android:paddingTop="10dp"
   android:paddingBottom="10dp"
   android:paddingLeft="7dp"
   android:paddingRight="7dp"/>

文本顏色分別設置為紅色和藍色,分別為男性和女性。 然后在設置適配器時應用檢查,如下所示:

ArrayAdapter<CharSequence> adapter;
if(reportType.equals("Males")){
adapter = ArrayAdapter.createFromResource(this,R.array.type_report, R.layout.item_males);}
else{
adapter = ArrayAdapter.createFromResource(this,R.array.type_report, R.layout.item_females);}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM