gpt4 book ai didi

java - 如何将工具栏添加到 Android Activity ?

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:52:54 26 4
gpt4 key购买 nike

Android 的官方 Twitter 客户端有一个漂亮的工具栏,当你点击一条消息时,你可以转发、回复等。我怎样才能重新创建一个这样的工具栏?

最佳答案

对于 LinearLayout 方法,代码很简单,只需添加一些权重并根据您的需要进行调整。这让您大致了解了该方法:

<EditText android:text="Example Layout" 
android:layout_width="match_parent"
android:id="@+id/editText"
android:layout_height="wrap_content"
android:layout_weight="0.95"></EditText>

<LinearLayout
android:layout_width="fill_parent"
android:orientation="horizontal"
android:weightSum="1.0"
android:padding="1px"
android:layout_height="wrap_content"
android:layout_weight="0.05">

<ImageButton android:id="@+id/testButton1"
android:layout_weight="0.2"
android:background="@drawable/btn"
android:layout_height="wrap_content"
android:layout_width="wrap_content"/>

<ImageButton android:id="@+id/testButton2"
android:layout_weight="0.2"
android:background="@drawable/btn"
android:layout_height="wrap_content"
android:layout_width="wrap_content" />

<ImageButton android:id="@+id/testButton3"
android:layout_weight="0.2"
android:background="@drawable/btn"
android:layout_height="wrap_content"
android:layout_width="wrap_content" />

<ImageButton android:id="@+id/testButton4"
android:layout_weight="0.2"
android:background="@drawable/btn"
android:layout_height="wrap_content"
android:layout_width="wrap_content" />

<ImageButton android:id="@+id/testButton5"
android:layout_weight="0.2"
android:background="@drawable/btn"
android:layout_height="wrap_content"
android:layout_width="wrap_content" />

</LinearLayout>

结果是这样的:http://i.stack.imgur.com/bShgb.png

您可能也对 ActionBar 感到满意,只需查看 API 要求:http://developer.android.com/guide/topics/ui/actionbar.html

关于java - 如何将工具栏添加到 Android Activity ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5785221/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com