在Android中,AppBarLayout是一個垂直的線性布局,用于包含其他布局和視圖。要在AppBarLayout中添加子視圖,您可以按照以下步驟操作:
dependencies {
implementation 'com.google.android.material:material:1.4.0'
}
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/app_bar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<TextView
android:id="@+id/text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello, World!"
android:layout_marginStart="16dp"
android:textSize="18sp" />
<ImageView
android:id="@+id/image_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_example"
android:layout_marginStart="16dp"
android:contentDescription="@string/example_image" />
</com.google.android.material.appbar.AppBarLayout>
在這個例子中,我們首先創建了一個AppBarLayout,然后添加了兩個子視圖:一個TextView和一個ImageView。我們使用android:layout_marginStart
屬性為子視圖添加了一些間距,并使用android:textSize
和android:src
屬性設置了文本和圖像的大小和來源。
import androidx.appcompat.widget.Toolbar;
// ...
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
AppBarLayout appBarLayout = findViewById(R.id.app_bar_layout);
// 創建一個新的TextView
TextView textView = new TextView(this);
textView.setText("Hello, World!");
textView.setLayoutParams(new AppBarLayout.LayoutParams(
AppBarLayout.LayoutParams.WRAP_CONTENT,
AppBarLayout.LayoutParams.WRAP_CONTENT));
textView.setMarginStart(16);
textView.setTextSize(TypedValue.COMPLEX_UNIT_SP, 18);
// 創建一個新的ImageView
ImageView imageView = new ImageView(this);
imageView.setImageResource(R.drawable.ic_example);
imageView.setLayoutParams(new AppBarLayout.LayoutParams(
AppBarLayout.LayoutParams.WRAP_CONTENT,
AppBarLayout.LayoutParams.WRAP_CONTENT));
imageView.setMarginStart(16);
imageView.setContentDescription(getString(R.string.example_image));
// 將子視圖添加到AppBarLayout
appBarLayout.addView(textView);
appBarLayout.addView(imageView);
}
這段代碼首先通過ID查找AppBarLayout,然后創建一個新的TextView和ImageView,并設置它們的屬性。最后,將這兩個子視圖添加到AppBarLayout中。