我想在我的Android應用中使用我在iOS應用中使用的操作欄:帶文字的Android自定義後退按鈕
不幸的是,我不知道如何製作只有文本的後退按鈕以及如何在中間移動標題。這將用於整個應用程序,而不僅僅是一個佈局。
任何人都可以幫助我嗎?
我想在我的Android應用中使用我在iOS應用中使用的操作欄:帶文字的Android自定義後退按鈕
不幸的是,我不知道如何製作只有文本的後退按鈕以及如何在中間移動標題。這將用於整個應用程序,而不僅僅是一個佈局。
任何人都可以幫助我嗎?
我已發現一種簡單的解決方案。
你剛纔創建一個自定義的佈局動作條custom_action_bar_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="@color/colorPrimary">
<TextView
android:id="@+id/title_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:textAllCaps="true"
android:text="name"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#fff"
android:textStyle="bold" />
<TextView
android:id="@+id/back_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_centerVertical="true"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="#fff"
android:text="Back"/>
</RelativeLayout>
,然後在ExampleActivity
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_edit_date);
ActionBar mActionBar = getSupportActionBar();
mActionBar.setDisplayShowHomeEnabled(false);
mActionBar.setDisplayShowTitleEnabled(false);
LayoutInflater mInflater = LayoutInflater.from(this);
View mCustomView = mInflater.inflate(R.layout.custom_action_bar_layout, null);
TextView title = (TextView) mCustomView.findViewById(R.id.title_text);
title.setText("Title");
TextView backButton = (TextView) mCustomView.findViewById(R.id.back_button);
backButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
finish();
}
});
mActionBar.setCustomView(mCustomView);
mActionBar.setDisplayShowCustomEnabled(true);
}
您可以創建一個custom_toolbar.xml
佈局&設計你想要達到的目標,
看到我的模式
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.AppBarLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorAccent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center">
<TextView
android:id="@+id/txt_back"
style="@style/TextStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawablePadding="0dp"
android:gravity="center_vertical"
android:text="Back" />
<TextView
android:id="@+id/txt_name"
style="@style/TextStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginRight="10dp"
android:layout_toLeftOf="@+id/txt_value"
android:layout_toRightOf="@+id/txt_back"
android:gravity="center"
android:text="Name" />
<TextView
android:id="@+id/txt_value"
style="@style/TextStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="10dp"
android:gravity="end"
android:text="test" />
</RelativeLayout>
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
現在你可以在你的example_activity.xml
<include
android:id="@+id/toolbar"
layout="@layout/custom_toolbar"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
包括此佈局&看看期望的輸出
好的非常感謝你,但那我該如何觸發點擊按鈕或設置標題? @mukesh_lokare –
嘿,你可以創造一個佈局及包括它在您的活動中,如果您需要它,請訪問並下載我的示例演示,您將獲得https://github.com/mukeshlokare/SampleAndroidApp –