mirror of
https://github.com/moparisthebest/Yaaic
synced 2024-11-22 08:52:18 -05:00
Small changes (Manifest, "about" layout)
This commit is contained in:
parent
57e9ba721f
commit
98e24bb8a2
@ -21,8 +21,7 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="org.yaaic"
|
||||
android:versionCode="1"
|
||||
android:versionName="0.1">
|
||||
android:versionCode="1" android:versionName="@string/app_version">
|
||||
<application android:icon="@drawable/icon" android:label="@string/app_name">
|
||||
<activity
|
||||
android:name=".view.ServersActivity"
|
||||
|
@ -30,7 +30,8 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
|
||||
android:layout_height="wrap_content"
|
||||
android:text="Yaaic"
|
||||
android:textSize="16px"
|
||||
android:gravity="center_horizontal" />
|
||||
android:gravity="center_horizontal"
|
||||
android:textColor="#FF6CB600" />
|
||||
<LinearLayout
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
@ -41,6 +42,10 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/app_full_name"
|
||||
android:textSize="10px" />
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text=" - " />
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
@ -58,6 +63,8 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/app_homepage"
|
||||
android:linksClickable="true"
|
||||
android:autoLink="web"
|
||||
android:textColorLink="#FF6CB600"
|
||||
android:textSize="16px"
|
||||
android:gravity="center_horizontal" />
|
||||
<TextView
|
||||
|
@ -24,4 +24,8 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
|
||||
android:id="@+id/add"
|
||||
android:title="@string/add_server_menu"
|
||||
android:icon="@android:drawable/ic_menu_add" />
|
||||
<item
|
||||
android:id="@+id/about"
|
||||
android:title="@string/about_menu"
|
||||
android:icon="@android:drawable/ic_menu_help" />
|
||||
</menu>
|
@ -24,6 +24,7 @@ import org.yaaic.R;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.os.Bundle;
|
||||
import android.view.Window;
|
||||
|
||||
/**
|
||||
* About activity
|
||||
@ -39,6 +40,9 @@ public class AboutActivity extends Activity
|
||||
public void onCreate(Bundle savedInstanceState)
|
||||
{
|
||||
super.onCreate(savedInstanceState);
|
||||
|
||||
requestWindowFeature(Window.FEATURE_NO_TITLE);
|
||||
|
||||
setContentView(R.layout.about);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user