gpt4 book ai didi

java - 动态添加 TextInputLayout 抛出异常

转载 作者:行者123 更新时间:2023-11-29 04:48:38 24 4
gpt4 key购买 nike

我一直在尝试动态添加 TextInputLayout。每当单击 RadioButton 时,TextInputLayout 将添加到 LinearLayout 下。

但在这之后,我得到了一个异常(exception)——

java.lang.IllegalArgumentException: You need to use a Theme.AppCompat theme (or descendant) with the design library.

虽然应用没有崩溃,但是错误点以下的代码没有被执行。

我也搜索了整个 StackOverflow 和其他网站,寻找解决方案,但无论那里提到什么,看起来我已经完成了。

这是我到目前为止尝试过的——

主要 Activity :

@Override
TextInputLayout textInputLayout3;

protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);

//some code here

ActionBar.LayoutParams layoutParams = new ActionBar.LayoutParams(ActionBar.LayoutParams.MATCH_PARENT, ActionBar.LayoutParams.WRAP_CONTENT);

try{
textInputLayout3 = new TextInputLayout(getApplicationContext());
textInputLayout3.setLayoutParams(layoutParams);
editText3 = new EditText(getApplicationContext());
editText3.setLayoutParams(layoutParams);
editText3.setHint("Search by Rating:");

textInputLayout3.addView(editText3);

radio3 = (RadioButton)findViewById(R.id.radio3);

Layout3 = (LinearLayout) findViewById(R.id.ll3);

radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {

if(checkedId == radio1.getId()) {
//again some code here
}

if(checkedId == radio2.getId()) {
//again some code here
}

if(checkedId == radio3.getId()) {
Layout3.addView(textInputLayout3);
}
}
});
}
catch(Exception e)
{
e.printStackTrace();
}
}

应用程序(应用程序)build.gradle:

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.android.support:recyclerview-v7:23.1.1'
}

list XML:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="saubhattacharya.learningappone.com">

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

<application
android:allowBackup="true"
android:icon="@drawable/learningapponeicon"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

样式 XML:

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>

<style name="AppTheme.NoActionBar" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>

<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />

<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />

</resources>

看起来一切就绪,但我仍然面临这个奇怪的问题。

谁能帮我找出问题所在?提前致谢!

最佳答案

不要使用您的应用上下文来创建样式 View ,因为样式不适用于此上下文。

new TextInputLayout(getApplicationContext());

你应该使用你的 Activity 上下文

new TextInputLayout(this);

关于java - 动态添加 TextInputLayout 抛出异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36292766/

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