Updated triangle build files

This commit is contained in:
saschawillems 2018-05-10 17:22:01 +02:00
parent 46795c4b6b
commit fad4f25676
5 changed files with 17 additions and 42 deletions

View file

@ -3,7 +3,7 @@
package="de.saschawillems.vulkanTriangle">
<application
android:label="Vulkan Triangle"
android:label="Vulkan triangle"
android:icon="@drawable/icon"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
<activity android:name="de.saschawillems.vulkanSample.VulkanActivity"

View file

@ -37,7 +37,7 @@ public class VulkanActivity extends NativeActivity {
this.runOnUiThread(new Runnable() {
public void run() {
AlertDialog.Builder builder = new AlertDialog.Builder(activity, AlertDialog.THEME_HOLO_DARK);
AlertDialog.Builder builder = new AlertDialog.Builder(activity, android.R.style.Theme_Material_Dialog_Alert);
builder.setTitle(applicationName);
builder.setMessage(message);
builder.setPositiveButton("Close", new DialogInterface.OnClickListener() {