이 명령을 사용하여 AlertDialog 제목의 색상을 변경했습니다.
alert.setTitle( Html.fromHtml("<font color='#FF7F27'>Set IP Address</font>"));
하지만 제목 아래에 나타나는 선의 색상을 변경하고 싶습니다. 어떻게 할 수 있습니까?
참고 : 사용자 지정 레이아웃을 사용하고 싶지 않습니다.
이 명령을 사용하여 AlertDialog 제목의 색상을 변경했습니다.
alert.setTitle( Html.fromHtml("<font color='#FF7F27'>Set IP Address</font>"));
하지만 제목 아래에 나타나는 선의 색상을 변경하고 싶습니다. 어떻게 할 수 있습니까?
참고 : 사용자 지정 레이아웃을 사용하고 싶지 않습니다.
답변:
안타깝게도 이것은 특별히 간단한 작업이 아닙니다. 여기 내 대답에서ListSeparator
Android에서 사용하는 상위 스타일을 확인하고 새 이미지를 만들고 원본을 기반으로 새 스타일을 만들어 a 의 색상을 조정하는 방법을 자세히 설명합니다 . 불행히도 ListSeparator
의 스타일 과 달리 AlertDialog
테마는 내부적이므로 상위 스타일로 참조 할 수 없습니다. 그 작은 파란색 선을 쉽게 바꿀 수있는 방법은 없습니다! 따라서 사용자 지정 대화 상자를 만들어야합니다.
그게 당신의 차가 아니라면 ... 포기하지 마세요! 이 작업을 쉽게 할 수있는 방법이 없다는 사실에 매우 당황하여 신속하게 사용자 정의 된 holo 스타일 대화 상자를 만들기 위해 github에 작은 프로젝트를 설정했습니다 (전화가 Holo 스타일을 지원한다고 가정). 여기에서 프로젝트를 찾을 수 있습니다 : https://github.com/danoz73/QustomDialog
지루한 파란색에서 흥미 진진한 주황색으로 쉽게 전환 할 수 있어야합니다!
이 프로젝트는 기본적으로 사용자 지정 대화 상자 작성기를 사용하는 예제이며 예제에서는 원래 질문에서 제공 한 IP 주소 예제를 충족하는 것처럼 보이는 사용자 지정보기를 만들었습니다.
와 QustomDialog
, 제목이나 분할을위한 원하는 다른 색으로 기본 대화 상자 (제목, 메시지)를 생성하기 위해, 다음과 같은 코드를 사용 :
private String HALLOWEEN_ORANGE = "#FF7F27";
QustomDialogBuilder qustomDialogBuilder = new QustomDialogBuilder(v.getContext()).
setTitle("Set IP Address").
setTitleColor(HALLOWEEN_ORANGE).
setDividerColor(HALLOWEEN_ORANGE).
setMessage("You are now entering the 10th dimension.");
qustomDialogBuilder.show();
사용자 지정 레이아웃을 추가하려면 (예 : 작은 IP 주소 EditText
추가) 다음을 추가합니다.
setCustomView(R.layout.example_ip_address_layout, v.getContext())
설계 한 레이아웃을 사용하여 빌더에 추가합니다 (IP 예제는 github에서 찾을 수 있음). 이게 도움이 되길 바란다. Joseph Earl과 그의 답변에 감사드립니다 .
setItems
사용자 지정 대화 상자에서 사용하여 단일 항목 선택을 추가하고 싶습니다 . 목록을 추가하면 실제로 제목이 목록 아래로 이동합니다. 이 문제를 해결하는 방법.
구분선 색상 :
약간의 해킹이지만 저에게는 잘 작동하며 외부 라이브러리 없이도 작동합니다 (적어도 Android 4.4에서는).
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
builder.setTitle(R.string.dialog)
.setIcon(R.drawable.ic)
.setMessage(R.string.dialog_msg);
//The tricky part
Dialog d = builder.show();
int dividerId = d.getContext().getResources().getIdentifier("android:id/titleDivider", null, null);
View divider = d.findViewById(dividerId);
divider.setBackgroundColor(getResources().getColor(R.color.my_color));
alert_dialog.xml 파일 에서 더 많은 대화 상자 ID를 찾을 수 있습니다 . 예 : android:id/alertTitle
제목 색상 변경 ...
업데이트 : 제목 색상
제목 색상 변경을위한 해킹 :
int textViewId = d.getContext().getResources().getIdentifier("android:id/alertTitle", null, null);
TextView tv = (TextView) d.findViewById(textViewId);
tv.setTextColor(getResources().getColor(R.color.my_color));
android.util.AndroidRuntimeException: requestFeature() must be called before adding content
여기 에 부딪칩니다 .
DialogFragment
제목 색상이 식별되지 않는 문제 만 알고 android:id/alertTitle
있지만 올바른 색상을 찾지 못했습니다.
NullPointerException
상기setTextColor()
이것이 당신에게 유용하다는 것을 확인하십시오 ...
public void setCustomTitle (View customTitleView)
다음 링크에서 세부 정보를 얻을 수 있습니다.
CustomDialog.java
Dialog alert = new Dialog(this);
alert.requestWindowFeature(Window.FEATURE_NO_TITLE);
alert.setContentView(R.layout.title);
TextView msg = (TextView)alert.findViewById(R.id.textView1);
msg.setText("Hello Friends.\nIP address : 111.111.1.111");
alert.show();
title.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Set IP address"
android:textColor="#ff0000"
android:textAppearance="?android:attr/textAppearanceLarge" />
<ImageView
android:layout_width="fill_parent"
android:layout_height="2dp"
android:layout_marginTop="5dp"
android:background="#00ff00"
/>
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#775500"
android:textAppearance="?android:attr/textAppearanceLarge" />
제목, 아이콘 및 구분선의 색상을 설정합니다. 새로운 Android 버전으로 변경 될 수 있습니다.
public static void colorAlertDialogTitle(AlertDialog dialog, int color) {
int dividerId = dialog.getContext().getResources().getIdentifier("android:id/titleDivider", null, null);
if (dividerId != 0) {
View divider = dialog.findViewById(dividerId);
divider.setBackgroundColor(color);
}
int textViewId = dialog.getContext().getResources().getIdentifier("android:id/alertTitle", null, null);
if (textViewId != 0) {
TextView tv = (TextView) dialog.findViewById(textViewId);
tv.setTextColor(color);
}
int iconId = dialog.getContext().getResources().getIdentifier("android:id/icon", null, null);
if (iconId != 0) {
ImageView icon = (ImageView) dialog.findViewById(iconId);
icon.setColorFilter(color);
}
}
이 메서드를 호출하기 전에 dialog.show ()를 호출해야합니다.
다음으로 대화의 소스 코드를 , 나는 제목이 클래스에서 생성되는 것을 발견 MidWindow
팽창에 의해 dialog_title_holo.xml
레이아웃을. 그래서 Id mTitleView
는 title
이고 Id는 디바이더입니다 titleDivider
.
우리는 title
단순히으로 Id에 액세스 할 수 있습니다 android.R.id.title
.
이드의 액세스 titleDivider
에 의해Resources.getSystem().getIdentifier("titleDivider","id", "android");
제목 방향을 변경하고 색상을 변경하는 데 사용한 마지막 코드는 다음과 같습니다.
TextView mTitle = (TextView)findViewById(android.R.id.title);
mTitle.setGravity(Gravity.RIGHT|Gravity.CENTER_VERTICAL);
int x = Resources.getSystem().getIdentifier("titleDivider","id", "android");
View titleDivider = findViewById(x);
titleDivider.setBackgroundColor(getContext().getResources().getColor(R.color.some_color));
이를 위해 "라이브러리"를 원하지 않는 경우 다음과 같은 심하게 해킹을 사용할 수 있습니다.
((ViewGroup)((ViewGroup)getDialog().getWindow().getDecorView()).getChildAt(0)) //ie LinearLayout containing all the dialog (title, titleDivider, content)
.getChildAt(1) // ie the view titleDivider
.setBackgroundColor(getResources().getColor(R.color.yourBeautifulColor));
이것은 4.x에서 테스트되고 작동합니다. 테스트되지 않았지만 내 메모리가 좋으면 2.x 및 3.x에서 작동합니다.
onCreateView 클래스에 다음을 넣습니다.
Dialog d = getDialog();
d.setTitle(Html.fromHtml("<font color='#EC407A'>About</font>"));
int dividerId = d.getContext().getResources().getIdentifier("android:id/titleDivider", null, null);
View divider = d.findViewById(dividerId);
divider.setBackgroundColor(getResources().getColor(R.color.colorPrimary));
colorPrimary는 모든 색상을 저장하는 colors.xml 파일에 연결됩니다. 또한 d.setTitle
제목 색상을 설정하는 해키 방법을 제공합니다.
경고 대화 상자에 대한 사용자 지정 레이아웃을 만드는 경우
이렇게하면 쉽게 색을 바꿀 수 있습니다.
<LinearLayout
android:id="@+id/DialogTitleBorder"
android:layout_width="fill_parent"
android:layout_height="1dip"
android:layout_below="@id/mExitDialogDesc"
android:background="#4BBAE3" <!--change color easily -->
>
</LinearLayout>
당신이 사용하는 경우 사용자 지정 제목 레이아웃을 다음처럼 사용할 수 있습니다 alertDialog.setCustomTitle(customTitle);
예
UI 스레드에서 다음과 같은 대화 상자를 사용하십시오.
LayoutInflater inflater = LayoutInflater.from(getApplicationContext());
View customTitle = inflater.inflate(R.layout.customtitlebar, null);
AlertDialog.Builder d = new AlertDialog.Builder(this);
d.setCustomTitle(customTitle);
d.setMessage("Message");
d.setNeutralButton("OK", null);
d.show();
customtitlebar.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="#525f67">
<ImageView
android:id="@+id/icon"
android:layout_width="40dp"
android:layout_height="40dp"
android:src="@drawable/ic_launcher"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true" >
</ImageView>
<TextView
android:id="@+id/customtitlebar"
android:layout_width="match_parent"
android:layout_height="40dp"
android:textColor="#ffffff"
android:text="Title Name"
android:padding="3px"
android:textStyle="bold"
android:layout_toRightOf="@id/icon"
android:layout_alignParentTop="true"
android:gravity="center_vertical"/>
<ImageView
android:layout_width="match_parent"
android:layout_height="2dp"
android:background="#ff0000"
android:layout_below="@id/icon"><!-- This is line below the title -->
</ImageView>
</RelativeLayout>
다음은 스타일을 변경할 때 대화 상자의 상태에 대해 걱정할 필요없이 한 클래스에서 대화 상자의 스타일을 처리하는 또 다른 솔루션 (제안 된 답변 기반)입니다. 대화 상자는 이미 표시되거나 초기화 될 수 있습니다.
사용 예 :
AlertDialog.Builder builder = new AlertDialog.Builder(context);
AlertDialog dialog = builder.create(); //or builder.show()
DialogViewDecorator.decorate(dialog, android.R.color.holo_red_light); //can also set the defaut color in the class
이행:
public class DialogViewDecorator {
private static final
@ColorRes int DEFAULT_TITLE_DIVIDER_COLOR = android.R.color.holo_orange_light;
public static void decorate(Dialog dialog) {
decorate(dialog, DEFAULT_TITLE_DIVIDER_COLOR);
}
/**
* Sets the title divider color when the view is shown by setting DialogInterface.OnShowListener on the dialog.
* <p/>
* If you want to do other things onShow be sure to extend OnDecoratedDialogShownListener(call super.show(...)!)
* and call {@link #decorate(Dialog, int, OnDecoratedDialogShownListener)}.
*
* @param dialog
* @param titleDividerColor
*/
public static void decorate(Dialog dialog, final int titleDividerColor) {
decorate(dialog, titleDividerColor, new OnDecoratedDialogShownListener(titleDividerColor));
}
/**
* Method for setting a extended implementation of OnDecoratedDialogShownListener. Don't forget to call super
* or the titleDividerColor wont be applied!
*
* @param dialog
* @param titleDividerColor
* @param OnShowListener
* @param <T>
*/
public static <T extends OnDecoratedDialogShownListener> void decorate(Dialog dialog, int titleDividerColor, T OnShowListener) {
if (dialog == null || titleDividerColor <= 0) { return; }
if (dialog.isShowing()) {
setTitleDividerColor(dialog, titleDividerColor);
} else {
dialog.setOnShowListener(OnShowListener);
}
}
private static void setTitleDividerColor(DialogInterface dialogInterface, int titleDividerColor) {
try {
Dialog dialog = (Dialog) dialogInterface;
int dividerId = dialog.getContext().getResources().getIdentifier("android:id/titleDivider", null, null);
View divider = dialog.findViewById(dividerId);
if (divider != null) {
divider.setBackgroundColor(dialog.getContext().getResources().getColor(titleDividerColor));
}
} catch (Exception e) {
e.printStackTrace();
}
}
public static class OnDecoratedDialogShownListener implements DialogInterface.OnShowListener {
private int titleDividerColor;
public OnDecoratedDialogShownListener() {
this.titleDividerColor = DEFAULT_TITLE_DIVIDER_COLOR;
}
public OnDecoratedDialogShownListener(int titleDividerColor) {
this.titleDividerColor = titleDividerColor;
}
@Override
public void onShow(DialogInterface dialogInterface) {
setTitleDividerColor(dialogInterface, titleDividerColor);
}
}}
이 답변에서 계속 : https://stackoverflow.com/a/15285514/1865860 , @ daniel-smith에서 멋진 github 저장소를 포크하고 몇 가지 개선했습니다.
setItems
방법items_list
setItems
메서드 에서 비활성화 된 항목 지원listItem
터치 피드백대화 상자에서 구분선을 사용하는 대신 사용자 지정 레이아웃에서보기를 사용하고 대화 상자에서 레이아웃을 사용자 지정 레이아웃으로 설정합니다.
custom_popup.xml :
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.divago.view.TextViewMedium
android:id="@+id/txtTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:paddingBottom="10dp"
android:paddingTop="10dp"
android:text="AlertDialog"
android:textColor="@android:color/black"
android:textSize="20sp" />
<View
android:id="@+id/border"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_below="@id/txtTitle"
android:background="@color/txt_dark_grey" />
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/border"
android:scrollbars="vertical">
<com.divago.view.TextViewRegular
android:id="@+id/txtPopup"
android:layout_margin="15dp"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</ScrollView>
</RelativeLayout>
activity.java :
public void showPopUp(String title, String text) {
LayoutInflater inflater = getLayoutInflater();
View alertLayout = inflater.inflate(R.layout.custom_popup, null);
TextView txtContent = alertLayout.findViewById(R.id.txtPopup);
txtContent.setText(text);
TextView txtTitle = alertLayout.findViewById(R.id.txtTitle);
txtTitle.setText(title);
AlertDialog.Builder alert = new AlertDialog.Builder(this);
alert.setView(alertLayout);
alert.setCancelable(true);
alert.setPositiveButton("Done", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
AlertDialog dialog = alert.create();
dialog.show();
}
ForegroundColorSpan foregroundColorSpan = new ForegroundColorSpan(Color.BLACK);
String title = context.getString(R.string.agreement_popup_message);
SpannableStringBuilder ssBuilder = new SpannableStringBuilder(title);
ssBuilder.setSpan(
foregroundColorSpan,
0,
title.length(),
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE
);
AlertDialog.Builder alertDialogBuilderUserInput = new AlertDialog.Builder(context);
alertDialogBuilderUserInput.setTitle(ssBuilder)