我正在设计一个通过按钮/图像按钮具有不同类型功能的应用程序。最后,列表可能会增加。我想放一个自定义主页按钮,当我在差异活动中时,它始终保持在屏幕上。或者如果您对如何将此主页按钮编码到屏幕下方的此布局有任何想法。请帮忙。
问问题
685 次
4 回答
1
您是否考虑过专门为此目的设计的操作栏? http://developer.android.com/guide/topics/ui/actionbar.html
于 2012-05-23T09:35:46.793 回答
1
虽然底部的主页按钮可以使用图像视图/按钮轻松实现,但推荐使用操作栏。您不仅可以与主页活动链接,还可以与您选择的任何其他活动链接。参考此以获得更深的洞察力。
http://developer.android.com/guide/topics/ui/actionbar.html
http://developer.android.com/reference/android/app/ActionBar.html
于 2012-05-23T09:31:10.263 回答
0
您可以在 xml 布局中放置任何按钮/图像按钮/图像,并在该组件上设置单击侦听器。您还可以使用选项菜单并在应用程序的所有屏幕上提供多个选项。
于 2012-05-23T09:16:27.473 回答
0
使用顶部的 ScrollView 和滚动视图下方的图像按钮进行布局。
例子:
<!-- language: lang-xml -->
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Your Content Here"
/>
</ScrollView>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher"
/>
</LinearLayout>
</LinearLayout>
它看起来像这样:
于 2012-05-23T09:51:16.617 回答