基于带有文字的图片" Dice"
如何删除蓝色背景颜色的文本骰子?
我在Android中的新手和即时通讯使用API 25
谢谢!
<?xml version="1.0" encoding="utf-8"?>
<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_result"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
tools:context="com.jfdimarzio.dice.ResultActivity">
</TableLayout>
答案 0 :(得分:0)
您可以从清单文件中更改它。
你有android:label="@string/app_name"
和android:theme="@style/Theme.AppCompat.NoActionBar"
改变两者你会得到结果。
答案 1 :(得分:0)
第1步:在style.xml中为NoActionBar活动创建新样式
<style name="AppTheme.NoActionBar" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="windowActionBar">true</item>
<item name="windowNoTitle">true</item>
</style>
第2步:在Manifest.xml的Activity中应用此功能
android:theme="@style/AppTheme.NoActionBar"
第3步:从AppCompatActivity扩展您的活动
public class ResultActivity extends AppCompatActivity