Android的官方Twitter客户端有一个很好的工具栏,当你点击一条消息,让你转推,回复等。我怎么能重新创建这样的工具栏?
答案 0 :(得分:5)
对于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
答案 1 :(得分:3)
我们称之为QuickAction:
在此处详细了解如何实现它:http://www.londatiga.net/it/how-to-create-quickaction-dialog-in-android/