0

这是我想在 ActionBar 中显示的布局:

<?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="wrap_content"
    android:orientation="horizontal" >

    <EditText
        android:id="@+id/etSearch"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1.0"
        android:singleLine="true" />

    <ImageButton
        android:id="@+id/btnSearch"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="0"
        android:src="@drawable/ic_magnifying_glass" />

</LinearLayout>

下面是设置 ActionBar 的代码:

@Override
public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.content_frame);
        View customNav = LayoutInflater.from(this).inflate(R.layout.custom_action_bar, null);
        getSupportActionBar().setCustomView(customNav);
        getSupportActionBar().setDisplayShowCustomEnabled(true);
        getSupportActionBar().setDisplayShowTitleEnabled(false);
}

我希望 TextView 填充 ActionBar。但是,它看起来像这样:

在此处输入图像描述

有什么提示吗?

4

1 回答 1

0

您尝试过吗:在 EditText 中:android:weight=80

在 ImageButton 中:android:weight=20

无论如何,RelativeLayout 在 ActionBarSherlock 中不起作用?更好

于 2013-02-14T17:00:27.323 回答