所以我想在水平滚动视图上方的屏幕顶部显示一行文本。 基本上,文本的顶行将显示您所处的调整,并在其下方将显示水平滚动条,在我将在稍后添加图像的下方,我尝试了一些不同的东西,但所有这些似乎都在推动离开屏幕的水平滚动条。有关如何做到这一点的任何建议? 这是迄今为止的代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/black">
<HorizontalScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scrollbars="none"
android:layout_gravity="center" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="@color/near_black">
<Button
android:id="@+id/e_button"
android:text="@string/E"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginRight="10sp"
android:background="@null"
android:textSize="50sp"
android:textStyle="bold"
android:textColor="@color/white">
</Button>
这继续使用几个按钮,我关闭了所有东西。 那么有关如何实现这一目标的任何建议?
答案 0 :(得分:1)
使 root LinearLayout
使用垂直方向:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/black">
然后在Textview
之上添加HorizontalScrollView
应该可以。