0

enter image description here如何獲取對話框片段或窗口的背景顏色?

紅色文字出來了一點點。它是這樣說的:

需要獲取對話框的背景顏色,以便我可以將「more info」textview的背景設置爲相同的顏色。需要以編程方式執行此操作,因爲對話框的顏色因API級別而異。

Java代碼:

public class CityDetailDialog extends DialogFragment { 

    private SharedPreferences sharedPreferences; 
    private City mCity; 
    private LinearLayout mCityContainerLayout; 
    private ImageView mImageFlag; 
    private TextView mTextCity; 
    private ImageView mImageCity; 
    private ImageButton mButtonGoogleMaps; 
    private ImageButton mButtonWikipedia; 
    private TextView mMoreInfoTextView; 

    public CityDetailDialog() { 
    } 

    @Nullable 
    @Override 
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, 
          @Nullable Bundle savedInstanceState) { 
     sharedPreferences = getActivity().getSharedPreferences("settings", Context.MODE_PRIVATE); 
     return inflater.inflate(R.layout.dialog_city_detail, container, false); 
    } 

    @Override 
    public void onViewCreated(View view, @Nullable Bundle savedInstanceState) { 
     super.onViewCreated(view, savedInstanceState); 
     mCity = (City) getArguments().getSerializable("city"); 
     mCityContainerLayout = (LinearLayout) view.findViewById(R.id.container_city_dialog); 
     mImageFlag = (ImageView) view.findViewById(R.id.flag_image); 
     mTextCity = (TextView) view.findViewById(R.id.city_name); 
     mImageCity = (ImageView) view.findViewById(R.id.city_image); 
     mButtonGoogleMaps = (ImageButton) view.findViewById(R.id.button_google_maps); 
     mButtonWikipedia = (ImageButton) view.findViewById(R.id.button_wikipedia); 
     mMoreInfoTextView = (TextView) view.findViewById(R.id.more_info_label); 

     mImageFlag.setImageResource(ResourceByNameRetriever.getDrawableResourceByName(mCity. 
       getCountryName(), getActivity())); 
     mTextCity.setText(ResourceByNameRetriever.getStringResourceByName(mCity.getCityName(), 
       getActivity())); 
     Picasso.with(getActivity()).load(mCity.getImageUrl()).into(mImageCity); 

     mButtonGoogleMaps.setOnClickListener(new View.OnClickListener() { 
      @Override 
      public void onClick(View v) { 
       Intent mapsIntent = new Intent(Intent.ACTION_VIEW); 
       mapsIntent.setData(Uri.parse("geo:" + mCity.getCoordinates())); 
       Intent chooser = Intent.createChooser(mapsIntent, getString(R.string.launch_maps)); 
       startActivity(chooser); 
      } 
     }); 

     mButtonWikipedia.setOnClickListener(new View.OnClickListener() { 
      @Override 
      public void onClick(View v) { 
       Intent wikiIntent = new Intent(Intent.ACTION_VIEW); 
       wikiIntent.setData(Uri.parse(mCity.getWikiUrl())); 
       Intent chooser = Intent.createChooser(wikiIntent, getString(R.string.launch_browser)); 
       startActivity(chooser); 
      } 
     }); 
    } 

}

+0

請分享您編寫的用於實現對話框的java代碼。 –

+0

@KavachChandra added – Nico

+0

所以我試着用各種方法運行應用程序,例如mMoreInfoTextView.bringToFront(),並將背景顏色設置爲textView,但無法達到您在右側圖片中顯示的效果。 TexView總是以它下面的元素爲背景,即當我穿過它的線時,即使當我將視圖放到前面時,該線仍然可見。我能想到的唯一解決方案是修改相關的xml佈局。如果您認爲它也可以提供解決方案,請分享該代碼。 –

回答

1

基於以下需要更改進行以達到預期的效果在XML文件中的代碼在GitHub上:

<LinearLayout 
     android:id="@+id/container_buttons" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:baselineAligned="false" 
     android:orientation="horizontal" 
     android:layout_below="@+id/relativeLayout"> 

. 
. 
. 
</LinearLayout> 
<RelativeLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:orientation="horizontal" 
     android:id="@+id/relativeLayout"> 

     <View 
      android:id="@+id/horizontal_divider1" 
      android:layout_width="wrap_content" 
      android:layout_height="2dp" 
      android:layout_centerInParent="true" 
      android:background="@color/gray" 
      android:layout_toLeftOf="@+id/more_info_label" 
      android:layout_toStartOf="@+id/more_info_label"/> 


     <TextView 
      android:id="@+id/more_info_label" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_centerHorizontal="true" 
      android:padding="5dp" 
      android:text="@string/more_info" 
      android:textSize="18dp" /> 

     <View 
      android:id="@+id/horizontal_divider2" 
      android:layout_width="wrap_content" 
      android:layout_height="2dp" 
      android:layout_centerInParent="true" 
      android:background="@color/gray" 
      android:layout_toRightOf="@+id/more_info_label" 
      android:layout_toEndOf="@+id/more_info_label"/> 

    </RelativeLayout>