- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个按钮调用此函数以将 View 添加到我的主布局:
private void createWrkHist() {
View addBtn = findViewById(R.id.addWrkHist);
RelativeLayout.LayoutParams params = (RelativeLayout.LayoutParams) addBtn.getLayoutParams();
int aboveID = params.getRule(BELOW);
LayoutInflater inflator = (LayoutInflater) getApplicationContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v = inflator.inflate(R.layout.work_history_table, null);
ViewGroup mainView = (ViewGroup) findViewById(R.id.mainForm);
RelativeLayout.LayoutParams insertParams = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT);
insertParams.addRule(BELOW, aboveID);
v.setLayoutParams(insertParams);
mainView.addView(v);
params.addRule(BELOW, R.id.wrkHist);
addBtn.setLayoutParams(params);
}
正在添加布局,因为我使用了一些代码来尝试关注添加的 View 上的 EditText
并且它起作用了。但是,添加的 View 中的所有 TextViews
都是白色的。如何将要添加的 View 的样式/主题设置为默认值?这是我要添加的布局的 XML:
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/wrkHist"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TableRow>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight=".5"
android:text="Position:"
android:textAppearance="@style/Base.TextAppearance.AppCompat.Small" />
<EditText
android:id="@+id/wrkPosition"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="5dp"
android:layout_weight="15" />
</TableRow>
<TableRow>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight=".5"
android:text="Company:"
android:textAppearance="@style/Base.TextAppearance.AppCompat.Small" />
<EditText
android:id="@+id/wrkCompany"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="5dp"
android:layout_weight="15" />
</TableRow>
<TableRow>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight=".5"
android:text="Start Date:"
android:textAlignment="textEnd"
android:textAppearance="@style/Base.TextAppearance.AppCompat.Small" />
<LinearLayout android:layout_weight="15">
<EditText
android:id="@+id/wrkStartDate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="5dp"
android:layout_weight="7"
android:inputType="date" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight=".5"
android:text="End Date:"
android:textAlignment="textEnd"
android:textAppearance="@style/Base.TextAppearance.AppCompat.Small" />
<EditText
android:id="@+id/wrkEndDate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="5dp"
android:layout_weight="7"
android:inputType="date" />
</LinearLayout>
</TableRow>
<TableRow>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight=".5"
android:text="Duties:"
android:textAlignment="textEnd"
android:textAppearance="@style/Base.TextAppearance.AppCompat.Small" />
<EditText
android:id="@+id/wrkDuties"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="5dp"
android:layout_weight="15"
android:lines="5" />
</TableRow>
</TableLayout>
最佳答案
不要使用应用程序的上下文来创建 inflater,因为它会尝试使用应用程序的主题。
改为使用 Activity 的上下文,或者使用容器的上下文,它也会为您提供 Activity 的上下文。
private void createWrkHist() {
View addBtn = findViewById(R.id.addWrkHist);
RelativeLayout.LayoutParams params = (RelativeLayout.LayoutParams) addBtn.getLayoutParams();
int aboveID = params.getRule(BELOW);
ViewGroup mainView = (ViewGroup) findViewById(R.id.mainForm);
LayoutInflater inflator = LayoutInflater.from(mainView.getContext());
View v = inflator.inflate(R.layout.work_history_table, mainView, true);
RelativeLayout.LayoutParams insertParams = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT);
insertParams.addRule(BELOW, aboveID);
v.setLayoutParams(insertParams);
mainView.addView(v);
params.addRule(BELOW, R.id.wrkHist);
addBtn.setLayoutParams(params);
}
关于Android addView 将 TextView textColor 设置为白色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40476562/
如果我的问题看起来很新手,我很抱歉,textColor 和 android:textColor 有什么区别?我不明白在哪里使用哪个感谢您的帮助 最佳答案 textColor 是 AppCompat 库
我一直想知道这个问题。 构建 XML 时 Android布局,我们可以定义一个TextView使用 RGB 十六进制代码或来自 color.xml 的颜色值的文本颜色文件。 android:textC
Android searchview 有默认的 queryhint textcolor 和 text color 。我们如何使用 AndroidX 在 Android Searchview 中更改 e
我只是想将我的文本文本字段设置为与详细文本标签颜色相同的颜色,这似乎是正确的方法,在这里看到了一些提供此答案的内容,但我收到了错误,有什么想法吗? txtPassword.textColor = ce
我遇到的问题是我无法在以下 javascript 表单中设置两种不同的文本颜色(通过 css 类)。标准类是灰色(灰色文本颜色),但是一旦有人点击“在此处输入您的邮件”,要输入的电子邮件颜色文本应该是
如何将用户输入的颜色传递给 conio.h 中的 textcolor() 函数? textcolor(BLUE); cprintf("Hello"); 工作正常,但是 char c[20]; gets
我是安卓新手。在这上面花了 3 天之后,我无法弄清楚。 android:textColor= 在 TextView 上,但它不会改变颜色。我可以更改所有其他值,但不能更改 textColor。 最佳答
我的应用程序中有一个 Edittext。我在 XML 中以下列方式将其默认颜色设置为黑色: android:textColor="@android:color/black" 布局:
我只是想使用这段代码更改我的回收 View 中的文本颜色 ↓↓↓ itemView.resultTV.textColor = if (result >= 0) R.color.green else R
如何在禁用控件时更改文本的颜色。我想在 C# winforms 中禁用控件时设置不同的颜色。 最佳答案 编辑:我在评论中犯了与 Cody 相同的错误,因此更正了我的答案。 要看是哪个控件。 例如,如果
在flutter和我的应用程序中,我尝试不使用FlatButton来更改一些ThemeData文本颜色,因为在应用程序的某些部分中,我希望按钮具有白色或红色文本, 我如何正常设置此文本颜色? 例如:
对于我的 uipickerview,我有: - (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row fo
我有这样的布局。这里我将 textColor 设置为红色。 当我在模拟器上运行它时,一切都按预期工作。但是,当我在设备上运行时,textColor 是白色的。它曾经在设备上工作。 我用模拟器做了很多代
我在使用标准 android Switch 组件时遇到了一个奇怪的问题。 我已经分配了我的自定义跟踪器和拇指可绘制对象 - 一切看起来和工作正常,除了 textColor 属性的颜色始终是深色(可能是
我编写了一个依赖资源中定义的颜色的应用程序。有些是直接在布局 XML 文件中设置的,有些是在代码中设置的。示例: res/values/styles.xml 中的颜色定义: #33B5E5 布局:
我的应用程序中有几个按钮,我想为所有按钮应用一种样式。 以下是我放在 values 文件夹中的 styles.xml 文件。 bold #282780
我一直在研究在用 C 编写的 DOS 程序中使用颜色。有人告诉我 conio.h 具有 textcolor() 函数,但是当我在我的代码中使用它时,编译器/链接器抛出错误提示我有一个未定义的函数引用。
我正在做一些教程,我尝试尝试使用 textColor。使用每个 Widget 中的属性、布局 xml 或样式属性,这可以很好地工作。但我想知道是否可以定义一个全局 textColor,据我所知是不可能
我正在尝试将通过代码创建的 ColorStateList 应用为 TextView 的 TextColor。问题是,如果我使用在 xml 中定义的 ColorStateList,它会起作用,但当我通过
我设法在我的代码中使用了一个 spinner 并且想通过那个 spinner 改变 MainActivity 文件中某个文本的 textColor,但是他位于另一个类文件 - Einstellunge
我是一名优秀的程序员,十分优秀!