我已经用我自己的布局创建了自定义标题栏。我希望在与水平中心对齐的标题栏中显示文本(= 与默认标题栏相同)。但这对我不起作用,我的文本仍然对齐到 fitlebar 的顶部,而不是中心。你能给我一些建议吗?
我正在使用这段代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="@drawable/top_back">
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:id="@+id/title"
android:layout_gravity="center_vertical"
android:paddingLeft="15dip"
/>
</LinearLayout>