我试图获取消息并且以下代码行有效:
TextView dialogMessage = (TextView)dialogObject.findViewById(android.R.id.message);
但是当我尝试使用以下行获取标题时,它会返回null
TextView dialogTitle = (TextView)dialogObject.findViewById(android.R.id.tittle);
答案 0 :(得分:25)
我检查了AlertDialog
的代码。在内部,他们使用R.id.alertTitle
来初始化AlertDialog
标题TextView
。您可以使用getIdentifier
来检索它:
int titleId = getResources().getIdentifier( "alertTitle", "id", "android" );
if (titleId > 0) {
TextView dialogTitle = (TextView) dialogObject.findViewById(titleId);
if (dialogTitle != null) {
}
}
答案 1 :(得分:2)
我知道问题涉及AlertDialog,但是如果您是通过Google搜索来到这里并寻找DialogFragment
的答案,则:
getDialog().findViewById(android.R.id.title))
答案 2 :(得分:0)
我知道这是一个老帖子,但我使用了接受的答案并添加了对我有用的其他内容。您可以使用下面的代码使对话框标题多行(默认1行)。我还读出了预设标题,因为我稍后使用ContentLoaders
异步添加了txtint titleId = getResources().getIdentifier( "alertTitle", "id", "android" );
if (titleId > 0) {
TextView dialogTitle = (TextView) getDialog().findViewById(titleId);
if (dialogTitle != null) {
dialogTitle.setMaxLines(4);
dialogTitle.setSingleLine(false);
String txt = dialogTitle.getText().toString();
String txt1 = txt + ":\n\n" + "next line txt";
dialogTitle.setText(txt1);
}
}
答案 3 :(得分:0)
您可以自己实现它。创建您自己的扩展android.app.AlertDialog.Builder的类。然后使用setTitle()方法创建一个变量来存储您的值。
import android.content.Context;
import android.support.annotation.StringRes;
public class AlertDialog extends android.app.AlertDialog.Builder {
private Context context;
private String title;
public AlertDialog(Context context) {
super(context);
this.context = context;
}
public AlertDialog(Context context, int themeResId) {
super(context, themeResId);
this.context = context;
}
/**
* Set title using string
*/
@Override
public AlertDialog setTitle(CharSequence title) {
// set the title
this.title = title.toString();
super.setTitle(title);
return this;
}
/**
* Set title using resource string
*/
@Override
public AlertDialog setTitle(@StringRes int titleId) {
this.title = this.context.getText(titleId).toString();
super.setTitle(titleId);
return this;
}
// create public method
public String getTitle(){
return this.title;
}
}
然后使用您可以将其用作普通的AlertDialog,并带有获得标题的实现方法。然后您可以对其进行测试:
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// Crete new alert dialog
AlertDialog dialog = new AlertDialog(this);
dialog.setMessage("Type some message here :D");
dialog.setTitle(R.string.settings_title); // string resource
dialog.setTitle("Dialog1 title"); // string
dialog.show();
// Crete secondary dialog with same title
// using getTitle() method
new AlertDialog(this)
.setTitle(dialog.getTitle())
.setMessage("Copy title from first dialog.")
.show();
}
}
答案 4 :(得分:0)
为避免代码被破坏,当Google决定将来更改其对话框标题视图ID时,这是更可靠的解决方案。
我们将只返回遇到的第一个View
,其类型为TextView
。
//
// Usage: findFirstEncounteredType(getDialog().getWindow().getDecorView(), TextView.class)
//
public static View findFirstEncounteredType(View view, Class<? extends View> klass) {
if (klass.isInstance(view)) {
return view;
} else {
if (!(view instanceof ViewGroup)) {
return null;
}
}
ViewGroup viewGroup = (ViewGroup)view;
for (int i=0, ei=viewGroup.getChildCount(); i<ei; i++) {
View child = viewGroup.getChildAt(i);
View result = findFirstEncounteredType(child, klass);
if (result != null) {
return result;
}
}
return null;
}