gpt4 book ai didi

Android:帮助屏幕向导引导用户

转载 作者:行者123 更新时间:2023-11-29 00:09:36 25 4
gpt4 key购买 nike

首先,我在 SOgoogle 上进行了搜索,但没有找到适合我的问题的理想解决方案。而且我不要求提供代码。我想要解决问题的建议。

所以我的问题是,我必须为 2-3 个 activities 创建帮助向导,以引导用户完成 activity 屏幕。我已经创建了帮助屏幕,但如果我在不同分辨率的手机上查看它,它不适合屏幕,这意味着我显示的文本和图像是为了指导用户如何操作该应用程序。

所以需要一些建议,比如我如何创建我的屏幕。

这是我正在考虑的2个解决方案:

  1. 创建另一个具有相同布局的 Activity 。
  2. 获取 Activity 的高分辨率屏幕截图,然后通过添加文本和图像对其进行修改,并在屏幕上显示该图像。

或者,如果您有任何其他建议,我将不胜感激。

我的帮助向导屏幕布局代码之一是:

<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_weight="0"
android:background="@color/black_actionBar"
android:gravity="center_vertical|left"
android:visibility="invisible" >

<LinearLayout
android:layout_width="40dp"
android:layout_height="match_parent"
android:gravity="center" >

<com.AppName.utils.ButtonRegularFont
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_weight="0"
android:background="@drawable/back" />
</LinearLayout>

<com.AppName.utils.TextViewRegularFont
style="@style/textviews_whiteFont_header"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_weight="1"
android:ellipsize="end"
android:gravity="center"
android:lines="1"
android:text="Images" />

<com.AppName.utils.ImageViewSettings
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0"
android:src="@drawable/menu" />
</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_weight="0"
android:orientation="horizontal"
android:visibility="invisible" >

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical" >

<com.AppName.utils.ButtonRegularFont
style="@style/tabView_button_style"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:text="Hotel" />

<View
android:id="@+id/view_images_hotel"
style="@style/viewLineDisabled"
android:layout_width="match_parent" />
</LinearLayout>

<View
style="@style/tabview_divider"
android:layout_width="2dp" />

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical" >

<com.AppName.utils.ButtonRegularFont
style="@style/tabView_button_style"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:text="Rooms" />

<View
android:id="@+id/view_images_rooms"
style="@style/viewLineDisabled"
android:layout_width="match_parent" />
</LinearLayout>
</LinearLayout>

<Spinner
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_margin="5dp"
android:layout_weight="0"
android:background="@drawable/spinner_selector"
android:prompt="@string/select_room"
android:visibility="gone" />

<com.AppName.utils.ButtonRegularFont
style="@style/buttonStyle"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_margin="5dp"
android:layout_weight="0"
android:text="Add Image"
android:visibility="invisible" />

<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >

<org.askerov.dynamicgrid.DynamicGridView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="5dp"
android:layout_weight="1"
android:horizontalSpacing="1dp"
android:numColumns="3"
android:stretchMode="columnWidth"
android:verticalSpacing="1dp" />

<ImageView
android:layout_width="match_parent"
android:layout_height="100dp"
android:src="@drawable/arrow"/>

<com.AppName.utils.TextViewCircular
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textColor="@color/white"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="120dp"
android:textStyle="bold"
android:textSize="18sp"
android:text="To start dragging an image just long press on any image and then it can be editable to drag to any position."/>
</FrameLayout>

<com.AppName.utils.ButtonRegularFont
style="@style/buttonStyle_CheckedList"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_weight="0"
android:text="Submit" />

这是图片:

enter image description here

在上图中箭头与文本正确显示,但在某些手机中它不会像图像中那样显示。

最佳答案

拍摄高分辨率图像会增加您的 APK 大小,因此最好不要使用它。要制作屏幕向导,您可以使用 ShowTipsView图书馆 。因此您不必使用全屏图像来显示向导。

关于Android:帮助屏幕向导引导用户,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31239556/

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