我使用此课程(罗马努里克提供的source) 但我不能这样的内容布局(我想要一个Edittext字段)。
public class AddActivity extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
SystemBarTintManager tintManager = new SystemBarTintManager(this);
tintManager.setStatusBarTintEnabled(true);
tintManager.setStatusBarTintResource(R.color.black);
// Inflate a "Done/Discard" custom action bar view.
LayoutInflater inflater = (LayoutInflater) getActionBar().getThemedContext()
.getSystemService(LAYOUT_INFLATER_SERVICE);
final View customActionBarView = inflater.inflate(
R.layout.actionbar_custom_view_done_discard, null);
customActionBarView.findViewById(R.id.actionbar_done).setOnClickListener(
new View.OnClickListener() {
@Override
public void onClick(View v) {
finish();
}
});
customActionBarView.findViewById(R.id.actionbar_discard).setOnClickListener(
new View.OnClickListener() {
@Override
public void onClick(View v) {
// "Discard"
finish(); // TODO: don't just finish()!
}
});
// Show the custom action bar view and hide the normal Home icon and title.
final ActionBar actionBar = getActionBar();
actionBar.setDisplayOptions(
ActionBar.DISPLAY_SHOW_CUSTOM,
ActionBar.DISPLAY_SHOW_CUSTOM | ActionBar.DISPLAY_SHOW_HOME
| ActionBar.DISPLAY_SHOW_TITLE);
actionBar.setCustomView(customActionBarView, new ActionBar.LayoutParams(
ViewGroup.LayoutParams.MATCH_PARENT,
ViewGroup.LayoutParams.MATCH_PARENT));
}
这是我想设置的布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:id="@+id/add_layout"
>
<EditText
android:id="@+id/title_input"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top"
android:layout_marginTop="21dp"
android:ems="10"
android:hint="@string/add_hint_title"
android:inputType="text" >
<requestFocus />
</EditText>
<EditText
android:id="@+id/info_input"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top"
android:layout_marginTop="21dp"
android:ems="10"
android:hint="@string/add_hint_info"
android:inputType="textMultiLine" />
如果我然后尝试使用setContentView(R.layout.add_layout)
,则会将布局设置为操作栏。有谁知道如何在此活动中正确设置布局?
答案 0 :(得分:0)
您可以在致电setContentView(...)
后直接致电super.onCreate(...)
:
super.onCreate(savedInstanceState);
setContentView(R.layout.add_layout);
或者你可以试试这个:
inflater = (LayoutInflater) this.getSystemService(LAYOUT_INFLATER_SERVICE);
View v = inflater.inflate(R.layout.add_layout, null);
setContentView(v);