程序化工具栏

时间:2018-02-02 16:24:47

标签: java android

在我的Android任务中,我们必须使用Java而不是设计视图创建一个简单的App。我想在工具栏中添加图标和文字。我可以使用设计视图使其工作但我无法使用Java工作。

如果我的想法是正确的,请告诉我。例如,要向工具栏添加按钮,我创建了一个

android.widget.Button button = new android.widget.Button()

然后将button添加到Toolbar

我的onCreate()功能如下:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);

    relative_layout = new RelativeLayout(this);
    relative_layout.setBackgroundColor(Color.WHITE);
    Toolbar tool_bar = new Toolbar(this);
    tool_bar.setTitle("Hello");
    tool_bar.setBackgroundColor(Color.RED);  // actual one I read from R.color.xyz
    tool_bar.setTitleTextColor(Color.WHITE);
    tool_bar.setId(1);

    // tool_bar.setNavigationIcon(R.drawable.ic_launcher_foreground);

    tool_bar.setPopupTheme(R.style.Theme_AppCompat_Dialog);
    this.setVisible(true);
    this.setSupportActionBar(tool_bar);

    RelativeLayout.LayoutParams toolbar_layout = new RelativeLayout.LayoutParams(
            RelativeLayout.LayoutParams.MATCH_PARENT,
            RelativeLayout.LayoutParams.WRAP_CONTENT);
    toolbar_layout.addRule(RelativeLayout.ALIGN_PARENT_TOP);
    toolbar_layout.addRule(RelativeLayout.CENTER_HORIZONTAL);

    Button button = new Button(this);
    button.setBackgroundColor(Color.GREEN);
    button.setText("Button");
    button.setId(2);

    RelativeLayout.LayoutParams button_layout = new RelativeLayout.LayoutParams(
            RelativeLayout.LayoutParams.WRAP_CONTENT,
            RelativeLayout.LayoutParams.WRAP_CONTENT);
    button_layout.addRule(RelativeLayout.CENTER_HORIZONTAL);
    button_layout.addRule(RelativeLayout.ALIGN_PARENT_RIGHT);
    // button_layout.setMargins(400, 0, 0, 0);

    tool_bar.addView(button, button_layout);

    relative_layout.addView(tool_bar, toolbar_layout);
    this.setContentView(relative_layout);

}

1)我想确认这是正确的做法吗?

2)我无法将按钮移动到屏幕右侧,如图所示,虽然我使用了

RelativeLayout.ALIGN_PARENT_RIGHT

我们如何将对齐设置为右边?

enter image description here

2 个答案:

答案 0 :(得分:1)

工具栏只是一个ViewGroup。因此,就像以编程方式向任何ViewGroup添加视图一样,对工具栏执行相同的处理。

Button bt = new Button(this);
bt.setText("Button");
LinearLayout.LayoutParams params = new 
LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT, 
LayoutParams.FILL_PARENT);
params.gravity = Gravity.RIGHT;
button.setLayoutParams(params);
toolbar.addView(bt);

乐意提供帮助:)

答案 1 :(得分:1)

添加此代码后,您的工具栏将如下所示:

enter image description here

使用此代码来创建工具栏活动文件代码:

  <android.support.v7.widget.Toolbar
    android:id="@+id/toolbarAdjustScan"
    android:layout_width="match_parent"
    android:layout_height="56dp"
    android:background="@color/colorPrimary"
    android:elevation="6dp"
    android:minHeight="56dp"
    android:theme="@style/ThemeOverlay.AppCompat.Dark">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <TextView
            android:id="@+id/titleToolbar"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginLeft="15dp"
            android:ellipsize="end"
            android:layout_weight="1"
            android:maxLines="1"
            android:textColor="@color/white"
            android:textSize="18dp" />

          <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="right"
            android:padding="10dp"
            android:id="@+id/searchAdjustBtn"
            android:layout_marginLeft="15dp"
            android:ellipsize="end"
            android:maxLines="1"
            android:text="SEARCH   "
            android:textColor="@color/white"
            android:textSize="13dp" />
    </LinearLayout>

</android.support.v7.widget.Toolbar>

Activity.java代码:

Toolbar toolbarTop;

setToolbar()

中拨打onCreate()
 private void setToolbar() {
    toolbarTop = (Toolbar) findViewById(R.id.toolbarAdjustScan);
    setSupportActionBar(toolbarTop);
    TextView search = (TextView)toolbarTop.findViewById(R.id.searchAdjustBtn);
    TextView titleToolbar = (TextView)toolbarTop.findViewById(R.id.titleToolbar);
    titleToolbar.setText("TakeInventory");
    getSupportActionBar().setDisplayHomeAsUpEnabled(true);

    getSupportActionBar().setElevation(0);

    search.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Intent intent = new Intent(getApplicationContext(), TakeInventoryResult.class);
           // Bundle args = new Bundle();
           //  args.putSerializable("ARRAYLIST",(Serializable)inList);
           // intent.putExtra("BUNDLE",args);
            startActivity(intent);
            finish();
        }
    });

}