티스토리 뷰
Stack Overflow에 자주 검색, 등록되는 문제들과 제가 개발 중 찾아 본 문제들 중에서 나중에도 찾아 볼 것 같은 문제들을 정리하고 있습니다.
Stack Overflow에서 가장 먼저 확인하게 되는 가장 높은 점수를 받은 Solution과 현 시점에 도움이 될 수 있는 가장 최근에 업데이트(최소 점수 확보)된 Solution을 각각 정리하였습니다.
아래 word cloud를 통해 이번 포스팅의 주요 키워드를 미리 확인하세요.
How to create a DialogFragment without title?
제목 없이 DialogFragment를 만드는 방법은 무엇입니까?
문제 내용
I'm creating a DialogFragment to show some help messages regarding my app. Everything works fine besides one thing: There is a black stripe at the top of the window that shows the DialogFragment, that I presume is reserved for the title, something I don't want to use.
내 앱에 대한 도움말 메시지를 표시하기 위해 DialogFragment를 만들고 있습니다. 한 가지를 제외하고는 모든 것이 잘 작동합니다: 창 상단에 DialogFragment를 표시하는 검은색 줄무늬가 있습니다. 이 줄무늬는 내가 사용하고 싶지 않은 제목을 위해 예약된 것으로 추정됩니다.
This is specially painful since my custom DialogFragment uses a white background, so the change is way too notorious to be left aside.
내 사용자 지정 DialogFragment는 흰색 배경을 사용하기 때문에 이것은 특히 고통스럽습니다. 그래서 변경 사항은 너무 악명이 높아서 무시할 수 없습니다.
Let me show you this in a more graphical manner:
이것을 좀 더 그래픽으로 보여드리겠습니다:
Now the XML code for my DialogFragment is as follows:
이제 내 DialogFragment의 XML 코드는 다음과 같습니다:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:id="@+id/holding"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/dialog_fragment_bg"
>
<!-- Usamos un LinearLayout para que la imagen y el texto esten bien alineados -->
<LinearLayout
android:id="@+id/confirmationToast"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<TextView android:id="@+id/confirmationToastText"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:text="@string/help_dialog_fragment"
android:textColor="#AE0000"
android:gravity="center_vertical"
/>
</LinearLayout>
<LinearLayout
android:id="@+id/confirmationButtonLL"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_horizontal"
>
<Button android:id="@+id/confirmationDialogButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_marginBottom="60dp"
android:background="@drawable/ok_button">
</Button>
</LinearLayout>
</LinearLayout>
</ScrollView>
And the code of the class that implements the DialogFragment:
그리고 DialogFragment를 구현하는 클래스의 코드:
public class HelpDialog extends DialogFragment {
public HelpDialog() {
// Empty constructor required for DialogFragment
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
//Inflate the XML view for the help dialog fragment
View view = inflater.inflate(R.layout.help_dialog_fragment, container);
TextView text = (TextView)view.findViewById(R.id.confirmationToastText);
text.setText(Html.fromHtml(getString(R.string.help_dialog_fragment)));
//get the OK button and add a Listener
((Button) view.findViewById(R.id.confirmationDialogButton)).setOnClickListener(new OnClickListener() {
public void onClick(View v) {
// When button is clicked, call up to owning activity.
HelpDialog.this.dismiss();
}
});
return view;
}
}
And the creation process in the main Activity:
그리고 메인 액티비티의 생성 프로세스:
/**
* Shows the HelpDialog Fragment
*/
private void showHelpDialog() {
android.support.v4.app.FragmentManager fm = getSupportFragmentManager();
HelpDialog helpDialog = new HelpDialog();
helpDialog.show(fm, "fragment_help");
}
I really don't know if this answer, related with a Dialog, fits here also Android: How to create a Dialog without a title?
대화 상자와 관련된 이 대답이 여기 안드로이드에도 맞는지 정말 모르겠다: 제목 없이 대화상자를 만드는 방법은 무엇입니까?
How can I get rid of this title area?
이 제목 영역을 제거하려면 어떻게 해야 합니까?
높은 점수를 받은 Solution
Just add this line of code in your HelpDialog.onCreateView(...)
HelpDialog.onCreateView(...)에서 이 코드 행을 추가하십시오
getDialog().getWindow().requestFeature(Window.FEATURE_NO_TITLE);
This way you're explicitly asking to get a window without title :)
이렇게 하면 제목이 없는 윈도우를 얻으라고 명시적으로 요청하는 것입니다 :)
EDIT
편집하다
As @DataGraham
and @Blundell
pointed out on the comments below, it's safer to add the request for a title-less window in the onCreateDialog()
method instead of onCreateView()
. This way you can prevent ennoying NPE when you're not using your fragment as a Dialog
:
@DataGraham과 @Blundell이 아래 주석에서 지적했듯이, 제목 없는 창에 대한 요청을 onCreateView() 대신 onCreateDialog() 메서드에 추가하는 것이 더 안전합니다. 이렇게 하면 프래그먼트를 대화 상자로 사용하지 않을 때 성가신 NPE를 방지할 수 있습니다.
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
Dialog dialog = super.onCreateDialog(savedInstanceState);
// request a window without the title
dialog.getWindow().requestFeature(Window.FEATURE_NO_TITLE);
return dialog;
}
가장 최근 달린 Solution
Try easy way
쉬운 방법을 시도해보세요
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setStyle(STYLE_NO_TITLE, 0);
}
출처 : https://stackoverflow.com/questions/15277460/how-to-create-a-dialogfragment-without-title
'개발 > 안드로이드' 카테고리의 다른 글
안드로이드에서 전체 히스토리 스택을 지우고 새로운 액티비티를 시작하는 방법 (0) | 2023.01.14 |
---|---|
Android에서 WebView와 loadData (0) | 2023.01.14 |
슬라이드 업/다운 애니메이션으로 View 보이기 및 숨기기 (0) | 2023.01.13 |
안드로이드 갤러리에서 이미지만 선택하기 (0) | 2023.01.13 |
Recyclerview가 onCreateViewHolder를 호출하지 않을 때 확인 해 볼것들.. (0) | 2023.01.13 |