gpt4 book ai didi

java - 使用 getDrawable 配置 TabHost

转载 作者:太空宇宙 更新时间:2023-11-04 13:48:49 31 4
gpt4 key购买 nike

MainActivity 中调用 getDrawable() 时遇到问题,我已经完成了 activity_main.xml,但它显示此警告“类型资源中的方法 getDrawable(int) 已弃用”。

有人可以帮助我吗?

MainActivity.java:

public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

Resources res= getResources();
TabHost tabs = (TabHost) findViewById(android.R.id.tabhost);
tabs.setup();
TabHost.TabSpec spec = tabs.newTabSpec("pestana 1");
spec.setContent(R.id.tab1);
spec.setIndicator("1",res.getDrawable(android.R.drawable.bottom_bar));
tabs.addTab(spec);

tabs.setup();
TabHost.TabSpec spec1 =tabs.newTabSpec("pestana 2");
spec1.setContent(R.id.tab2);
spec.setIndicator("2",res.getDrawable(android.R.drawable.btn_minus));
tabs.addTab(spec1);

tabs.setup();
TabHost.TabSpec spec2 =tabs.newTabSpec("pestana 3");
spec2.setContent(R.id.tab3);
spec.setIndicator("3",res.getDrawable(android.R.drawable.btn_radio));
tabs.addTab(spec2);
}
}

activity_main.xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.tabhost1.MainActivity">

<TabHost
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="100dp"></TabWidget>

<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<LinearLayout
android:id="@+id/tab1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">

<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="pestana 1"></TextView>
</LinearLayout>

<LinearLayout
android:id="@+id/tab2"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">

<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Pesana 2"></TextView>
</LinearLayout>

<LinearLayout
android:id="@+id/tab3"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">

<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Pesana 3"></TextView>
</LinearLayout>
</FrameLayout>
</LinearLayout>
</TabHost>

最佳答案

Can anyone help me?

调用getDrawable()没有任何问题。对于约 99% 的 Android 设备,这是您唯一的选择。

在 Android 5.1 中,他们添加了 a second getDrawable() method, one that takes a theme as a second parameter 。然后,他们将 getDrawable() 的单参数版本标记为已弃用。

如果您的 minSdkVersion 为 22,请使用 getDrawable() 的两参数版本。

如果您的 minSdkVersion 小于 22,请继续使用单参数版本的 getDrawable(),并接受弃用通知。

关于java - 使用 getDrawable 配置 TabHost,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30535965/

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