Order files
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
|
||||
<application>
|
||||
<activity android:name="${relativePackage}.${activityClass}"
|
||||
<#if isNewProject>
|
||||
android:label="@string/app_name"
|
||||
<#else>
|
||||
android:label="@string/title_${activityToLayout(activityClass)}"
|
||||
</#if>
|
||||
<#if buildApi gte 16 && parentActivityClass != "">android:parentActivityName="${parentActivityClass}"</#if>>
|
||||
<#if parentActivityClass != "">
|
||||
<meta-data android:name="android.support.PARENT_ACTIVITY"
|
||||
android:value="${parentActivityClass}" />
|
||||
</#if>
|
||||
<#if isLauncher>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</#if>
|
||||
</activity>
|
||||
</application>
|
||||
|
||||
</manifest>
|
@@ -0,0 +1,7 @@
|
||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:id="@+id/container"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context="${relativePackage}.${activityClass}"
|
||||
tools:ignore="MergeRootFrame" />
|
@@ -0,0 +1,16 @@
|
||||
<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"
|
||||
android:paddingLeft="@dimen/activity_horizontal_margin"
|
||||
android:paddingRight="@dimen/activity_horizontal_margin"
|
||||
android:paddingTop="@dimen/activity_vertical_margin"
|
||||
android:paddingBottom="@dimen/activity_vertical_margin"
|
||||
tools:context="${relativePackage}.${activityClass}$PlaceholderFragment">
|
||||
|
||||
<TextView
|
||||
android:text="@string/hello_world"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
</RelativeLayout>
|
@@ -0,0 +1,9 @@
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android"<#if appCompat>
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"</#if>
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
tools:context="${relativePackage}.${activityClass}" >
|
||||
<item android:id="@+id/action_settings"
|
||||
android:title="@string/action_settings"
|
||||
android:orderInCategory="100"
|
||||
${(appCompat)?string('app','android')}:showAsAction="never" />
|
||||
</menu>
|
@@ -0,0 +1,6 @@
|
||||
<resources>
|
||||
<!-- Example customization of dimensions originally defined in res/values/dimens.xml
|
||||
(such as screen margins) for screens with more than 820dp of available width. This
|
||||
would include 7" and 10" devices in landscape (~960dp and ~1280dp respectively). -->
|
||||
<dimen name="activity_horizontal_margin">64dp</dimen>
|
||||
</resources>
|
@@ -0,0 +1,5 @@
|
||||
<resources>
|
||||
<!-- Default screen margins, per the Android Design guidelines. -->
|
||||
<dimen name="activity_horizontal_margin">16dp</dimen>
|
||||
<dimen name="activity_vertical_margin">16dp</dimen>
|
||||
</resources>
|
@@ -0,0 +1,7 @@
|
||||
<resources>
|
||||
<#if !isNewProject>
|
||||
<string name="title_${activityToLayout(activityClass)}">${escapeXmlString(activityTitle)}</string>
|
||||
</#if>
|
||||
<string name="hello_world">Hello world!</string>
|
||||
<string name="action_settings">Settings</string>
|
||||
</resources>
|
@@ -0,0 +1,32 @@
|
||||
package ${packageName};
|
||||
|
||||
import <#if appCompat>android.support.v7.app.ActionBarActivity<#else>android.app.Activity</#if>;
|
||||
import android.<#if appCompat>support.v7.</#if>app.ActionBar;
|
||||
import android.<#if appCompat>support.v4.</#if>app.Fragment;
|
||||
import android.os.Bundle;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.Menu;
|
||||
import android.view.MenuItem;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.os.Build;
|
||||
|
||||
<#if applicationPackage??>import ${applicationPackage}.R;</#if>
|
||||
|
||||
public class ${activityClass} extends ${appCompat?string('ActionBar','')}Activity {
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.${layoutName});
|
||||
if (savedInstanceState == null) {
|
||||
get${Support}FragmentManager().beginTransaction()
|
||||
.add(R.id.container, new PlaceholderFragment())
|
||||
.commit();
|
||||
}
|
||||
}
|
||||
|
||||
<#include "include_options_menu.java.ftl">
|
||||
|
||||
<#include "include_fragment.java.ftl">
|
||||
}
|
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* A placeholder fragment containing a simple view.
|
||||
*/
|
||||
public static class PlaceholderFragment extends Fragment {
|
||||
|
||||
public PlaceholderFragment() {
|
||||
}
|
||||
|
||||
@Override
|
||||
public View onCreateView(LayoutInflater inflater, ViewGroup container,
|
||||
Bundle savedInstanceState) {
|
||||
View rootView = inflater.inflate(R.layout.${fragmentLayoutName}, container, false);
|
||||
return rootView;
|
||||
}
|
||||
}
|
@@ -0,0 +1,19 @@
|
||||
|
||||
@Override
|
||||
public boolean onCreateOptionsMenu(Menu menu) {
|
||||
// Inflate the menu; this adds items to the action bar if it is present.
|
||||
getMenuInflater().inflate(R.menu.${menuName}, menu);
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onOptionsItemSelected(MenuItem item) {
|
||||
// Handle action bar item clicks here. The action bar will
|
||||
// automatically handle clicks on the Home/Up button, so long
|
||||
// as you specify a parent activity in AndroidManifest.xml.
|
||||
int id = item.getItemId();
|
||||
if (id == R.id.action_settings) {
|
||||
return true;
|
||||
}
|
||||
return super.onOptionsItemSelected(item);
|
||||
}
|
Reference in New Issue
Block a user