mirror of
https://github.com/wulkanowy/wulkanowy.git
synced 2024-11-23 12:16:13 -06:00
Add support for support libraries
This commit is contained in:
parent
b4f1a0b11c
commit
eb89007326
@ -15,7 +15,8 @@
|
||||
<activity
|
||||
android:name=".activity.started.StartedActivity"
|
||||
android:noHistory="true"
|
||||
android:theme="@style/NoActionBar">
|
||||
android:theme="@style/Theme.AppCompat.NoActionBar"
|
||||
android:configChanges="orientation|screenSize">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
||||
@ -25,11 +26,11 @@
|
||||
<activity
|
||||
android:name=".activity.main.MainActivity"
|
||||
android:label="@string/login_title"
|
||||
android:configChanges="orientation|screenSize" />
|
||||
android:configChanges="orientation|screenSize"/>
|
||||
<activity
|
||||
android:name=".activity.dashboard.DashboardActivity"
|
||||
android:label="@string/title_activity_dashboard"
|
||||
android:configChanges="orientation|screenSize" />
|
||||
android:configChanges="orientation|screenSize"/>
|
||||
</application>
|
||||
|
||||
</manifest>
|
@ -1,9 +1,9 @@
|
||||
package io.github.wulkanowy.activity.main;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.app.AlertDialog;
|
||||
import android.content.DialogInterface;
|
||||
import android.os.Bundle;
|
||||
import android.support.v7.app.AppCompatActivity;
|
||||
import android.view.View;
|
||||
import android.widget.ArrayAdapter;
|
||||
import android.widget.AutoCompleteTextView;
|
||||
@ -14,7 +14,7 @@ import java.util.LinkedHashMap;
|
||||
|
||||
import io.github.wulkanowy.R;
|
||||
|
||||
public class MainActivity extends Activity {
|
||||
public class MainActivity extends AppCompatActivity {
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
|
@ -1,11 +1,11 @@
|
||||
package io.github.wulkanowy.activity.started;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.os.Bundle;
|
||||
import android.support.v7.app.AppCompatActivity;
|
||||
|
||||
import io.github.wulkanowy.R;
|
||||
|
||||
public class StartedActivity extends Activity {
|
||||
public class StartedActivity extends AppCompatActivity {
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
|
Loading…
Reference in New Issue
Block a user