textview 相关问题

Android小部件,向用户显示文本,并可选择允许他们编辑文本。 TextView是一个完整的文本编辑器,但基本类配置为不允许编辑

如何在 TextView 中将可绘制图像居中?

我使用 Markwon 库来显示带有图像的 Markdown 文本。当图像与文本在同一行时,它被放置在文本下方。如何使图像居中? 现在: 预计: 我已经尝试过

回答 1 投票 0

Android SpannableString 设置部分文本后面的背景

我想创建与此图片类似的东西: 我成功地使用 SpannableStringBuilder 创建了除橙色圆角矩形之外的所有内容。我可以设置那个co的背景...

回答 4 投票 0

在Android中以编程方式从drawable创建textview背景

我必须在Android TextView上以编程方式设置背景 我使用下面的代码。它不起作用,而且还给了我 nullpointerexception 错误。 best_deals = (TextView) findViewById(R...

回答 3 投票 0

我无法在手机上显示文本视图,但我在 android studio 上获得了文本预览

这是我的第一个应用程序代码...... 在此输入图像描述 我在 andriod 预览中只看到“Hello” 当我运行代码时,我的手机显示它已成功连接,但没有

回答 1 投票 0

Android 自动文本大小会导致不同的尺寸

我有一个应用程序,其中包含一个显示伊斯兰教神的名字的屏幕。 它将它们显示在网格视图中。我使用 autoSizeTextType 属性来适应不同的屏幕尺寸。然而,它显示...

回答 1 投票 0

为什么Android在TextView上有提示而不是在EditText上?

提示是在输入任何文本之前出现在文本字段(Android XML 称为 EditText)中的文本,并在用户向字段添加任何字符时消失。一个基本的例子是

回答 1 投票 0

ClickableSpan - 添加后如何删除文本上的颜色?

我在 TextView 上使用了 ClickableSpan。添加跨度后,应用它的文本颜色也发生了变化。 检查SO问题,我看到点击后颜色改变了......

回答 2 投票 0

带有淡入淡出文本动画的TextView

我正在尝试在 Swift 中实现 Textview,例如:https://github.com/chtgupta/FadeInTextView-Android 我尝试为文本更改时的不透明度动画设置 CALayer, 但在动画之后...

回答 1 投票 0

如何让Android TextView全屏显示,顶部没有间隙,底部不丢失文字

我尝试将长文本上传到我的应用程序 任何实验都失败了,我无法删除顶部的间隙并显示所有文本而不会丢失底部的文本结尾。 我尝试将长文本上传到我的应用程序 任何实验都失败了,我无法删除顶部的间隙并显示所有文本而不丢失底部的文本结尾。 <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_marginLeft="0dp" android:layout_marginTop="0dp" android:visibility="visible" tools:context=".ui.answer.AnswerFragment" tools:visibility="visible"> <TextView android:id="@+id/text_answer" android:layout_width="fill_parent" android:layout_height="fill_parent" android:gravity="top" android:scrollbars="vertical" android:textColor="@color/white" android:textSize="20sp" android:visibility="visible" tools:text="Hello World" tools:visibility="visible" tools:ignore="MissingConstraints" /> </androidx.constraintlayout.widget.ConstraintLayout> 目前我正在滚动 textView.setText(readTextFile(answerFile)); String tst = "JAVA IS A TECHNOLOGY OF CHOICE FOR BUILDING APPLICATIONS" ... textView.setMovementMethod(new ScrollingMovementMethod()); 但尝试了很多其他变体,但差距仍然没有消失。我的选项卡导航菜单定义为 <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/container" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="#1F1F1F" android:paddingTop="?attr/actionBarSize"> <fragment android:id="@+id/nav_host_fragment_activity_main" android:name="androidx.navigation.fragment.NavHostFragment" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_marginTop="0dp" app:defaultNavHost="true" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" app:navGraph="@navigation/mobile_navigation" /> <com.google.android.material.bottomnavigation.BottomNavigationView android:id="@+id/nav_view" android:layout_width="0dp" android:layout_height="wrap_content" android:background="?android:attr/windowBackground" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:menu="@menu/bottom_nav_menu" /> </androidx.constraintlayout.widget.ConstraintLayout> 正确的解决方案是什么? 从父 ConstraintLayout 中删除 paddingTop。 将您的片段放在 BottomNavigationView 上方。 <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/container" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#1F1F1F"> <fragment android:id="@+id/nav_host_fragment_activity_main" android:name="androidx.navigation.fragment.NavHostFragment" android:layout_width="match_parent" android:layout_height="0dp" app:defaultNavHost="true" app:layout_constraintBottom_toTopOf="@id/nav_view" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" app:navGraph="@navigation/mobile_navigation" /> <com.google.android.material.bottomnavigation.BottomNavigationView android:id="@+id/nav_view" android:layout_width="0dp" android:layout_height="wrap_content" android:background="?android:attr/windowBackground" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:menu="@menu/bottom_nav_menu" /> </androidx.constraintlayout.widget.ConstraintLayout>

回答 1 投票 0

有没有办法将 TextView 的所有字母设置为大写?

我希望能够为 TextView 分配一个 xml 属性或样式,该属性或样式将生成所有大写字母的任何文本。 属性 android:inputType="textCapCharacters" 和 android:

回答 9 投票 0

当父级“ScrollView”滚动时,“ScrollView”内的“TextView”停止滚动

问题: 我正在开发一个 Android 应用程序,在其中动态添加包含 ScrollView 内 TextView 元素的自定义视图。每个 TextView 都被设计为可独立滚动,但我

回答 1 投票 0

TextView 未初始化,即使它已初始化

我对这个失去了理智。我收到错误消息“变量‘joiningDate’可能尚未初始化”。这是代码: 私有 TextView 加入日期; @覆盖 保护...

回答 1 投票 0

SwiftUI:如何将空textView的高度设置为一行

我有一个最初为空的文本视图,通过按按钮填充自定义文本。字体大小为 .dynamicTypeSize(.xxxLarge) 我想在固定的范围内显示文本视图...

回答 1 投票 0

Android TextView打字模仿-文本跳转问题

我有 TextView,其中文本缓慢出现,模仿它被输入。它效果很好,但我想摆脱每次单词换行时发生的跳跃文本。 哈...

回答 1 投票 0

Kotlin 使用 SpannableString 设置两种不同的文本样式来动态更改文本视图中的文本

我有一个文本视图,其值可以更改。例如,它是压力。它可以有不同的长度 - 即 999.1 或 1010.2 hPa。 文字如下: 我需要设置不同的文本样式...

回答 6 投票 0

如何在 TextView 对象的连续动画之间设置 Text() ?

我有一个 TextView,我想将其滑出屏幕,然后更改文本,然后滑回到视图中。 我有 xml 格式的动画.. 我有一个 TextView,我想将其滑出屏幕,然后更改文本,然后滑回到视图中。 我有 xml 格式的动画.. <?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android"> <translate android:fromXDelta="0%p" android:toXDelta="100%p" android:duration="700" /> </set> ..同样swipe_left.xml. 到目前为止,在我的 MainActivity 中我有.. TextView view = findViewById(R.id.status_text); Animation animation = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.slide_right); view.startAnimation(animation); view.setText(status_text); animation = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.slide_left); view.startAnimation(animation); 但是,第二个动画很快就取消了第一个动画。 我已经看过有关如何按顺序链接它们的教程,但我需要更改动画之间的文本。 我所做的是在第一个动画上设置 onAnimationListener,然后在 setText() 回调中定义 onAnimationEnd 和第二个动画。 Animation animationL = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.slide_right); animationL.setAnimationListener(new Animation.AnimationListener() { @Override public void onAnimationStart(Animation animation) { } @Override public void onAnimationEnd(Animation animation) { view.setText(status_text); Animation animationR = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.slide_left); view.startAnimation(animationR); } @Override public void onAnimationRepeat(Animation animation) { } }); view.startAnimation(animationL);

回答 1 投票 0

android studio - 如何通过按fragment中scrollView中的按钮来添加新的textView

有一个按钮,当按下时,ScrollView中应该出现一个新的TextView,但问题是所有类似任务的解决方案都是为Activity制定的,而我需要它用于Fragment,而哟...

回答 1 投票 0

Android自定义文本视图[关闭]

我需要文本视图,其中第一个字母大写,如照片所示。实现这一目标的最佳库或解决方案是什么?

回答 2 投票 0

如何在 Android 中为 TextView 启用标准复制粘贴?

我想为 TextView 启用标准复制粘贴(与 EditText 相同)。我该怎么做? 我尝试使用不可编辑的 EditText 但效果不佳(有时它变得可编辑或......

回答 12 投票 0

当宽度设置为“match_parent”时,无法使 TextView 中的文本居中

我对 Android SDK 比较陌生,并且正在我的 Activity UI 上使用 TextView 和其他组件。当我将宽度设置为wrap_content并使用layout_gravity时,我可以将

回答 3 投票 0

© www.soinside.com 2019 - 2024. All rights reserved.