我试图完全像下图一样。
但我现在可以得到下面的。这里我有两个问题。
1)如何使它actionbar
适用于所有活动,而不是我现在夸大的单一活动。
2)上面的图像看起来像是提升的布局栏,但我的看起来像一个普通的面板。有人可以帮我实现这些吗?代码片段表示赞赏。
我当前的输出:
我的布局代码膨胀到操作栏:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:background="@drawable/ab_customshape" >
<ImageButton
android:id="@+id/homeicon"
android:layout_width="40sp"
android:layout_height="match_parent"
android:layout_gravity="center"
android:src="@drawable/ic_launcher"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true" >
</ImageButton>
<TextView
android:id="@+id/title_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="My Title"
android:layout_centerVertical="true"
android:textColor="#ffffff"
android:textSize="20sp"
android:textStyle="bold" />
<ImageButton
android:id="@+id/rightbutton"
android:layout_width="40sp"
android:layout_height="match_parent"
android:layout_gravity="center"
android:src="@drawable/ic_launcher"
android:background="@android:color/transparent"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true"
/>
</RelativeLayout>
活动代码片段:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
initActionBar();
}
private void initActionBar() {
mActionBar = getSupportActionBar();
mActionBar.setDisplayShowHomeEnabled(false);
mActionBar.setDisplayShowTitleEnabled(false);
mInflater = LayoutInflater.from(this);
mCustomView = mInflater.inflate(R.layout.custom_actionbar, null);
mTitleTextView = (TextView) mCustomView.findViewById(R.id.title_text);
mTitleTextView.setText("My Own Title");
mActionBar.setCustomView(mCustomView);
mActionBar.setDisplayShowCustomEnabled(true);
}
@drawable/ab_customshape:
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<gradient
android:angle="-90"
android:endColor="#DD2ECCFA"
android:startColor="#DD000000"
android:type="linear" />
</shape>