gpt4 book ai didi

java - Android 下滑(无动画)

转载 作者:行者123 更新时间:2023-12-01 13:58:02 25 4
gpt4 key购买 nike

您好,我需要一些帮助来了解 Android 的此属性/功能...

也许我可以四处寻找错误的地方......但我几乎确定我需要使用向下滑动“属性”来查看我的 TextView 的其余部分......对吗?

但是怎么办呢?我不明白流程...

Area to affect.

public class PrintBtInvoice extends Activity
{
String constActivityName = "PrintBtInvoice";
// ------------------------------------------------------------------------

ScrollView sView = null;
TextView txtIDorder = null;
TextView txt2Print = null;
TextView txt2View = null;

Button btnBack = null;
Button btnPrint = null;

public void onCreate(Bundle savedInstanceState)
{

sView = (ScrollView) findViewById(R.id.scrollView );
txtIDorder = (TextView) findViewById(R.id.txtPBIorderId);
txt2Print = (TextView) findViewById(R.id.txtPBIinvoice2print);
txt2View = (TextView) findViewById(R.id.txtPBIinvoice2view);

btnBack = (Button) findViewById(R.id.btnPBIback);
btnPrint = (Button) findViewById(R.id.btnPBIprint);
...
}

btnPrint.setOnClickListener(new OnClickListener()
{ ... }
}

我需要做什么才能看到我的 text2Print 的其余部分?

建议更改:)

<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/scrollView"
android:layout_gravity="center_horizontal" >
<TextView
android:id="@+id/txtPBIinvoice2print"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_below="@+id/btnPBIback"
android:layout_toLeftOf="@+id/btnPBIprint"
android:text="@string/app_blank" />
</ScrollView>

最佳答案

我认为你需要将 TextView 放入 ScrollView 中。这样您就可以向下滚动文本并查看它。以下是示例 XML 布局:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">

<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/scrollView"
android:layout_gravity="center_horizontal" >

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Text"
android:id="@+id/textView" />
</ScrollView>
</LinearLayout>

关于java - Android 下滑(无动画),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19517033/

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