R4SAS
4 years ago
3 changed files with 73 additions and 32 deletions
@ -1,59 +1,95 @@ |
|||||||
<?xml version="1.0" encoding="utf-8"?> |
<?xml version="1.0" encoding="utf-8"?> |
||||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" |
||||||
xmlns:app="http://schemas.android.com/apk/res-auto" |
|
||||||
xmlns:tools="http://schemas.android.com/tools" |
xmlns:tools="http://schemas.android.com/tools" |
||||||
android:id="@+id/activity_main" |
android:id="@+id/activity_main" |
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="match_parent" |
android:layout_height="match_parent" |
||||||
android:background="#9C27B0" |
android:background="#9C27B0" |
||||||
android:paddingLeft="@dimen/activity_horizontal_margin" |
android:padding="@dimen/activity_horizontal_margin" |
||||||
android:paddingTop="@dimen/activity_vertical_margin" |
|
||||||
android:paddingRight="@dimen/activity_horizontal_margin" |
|
||||||
android:paddingBottom="@dimen/activity_vertical_margin" |
|
||||||
tools:context="org.purplei2p.i2pd.I2PDActivity"> |
tools:context="org.purplei2p.i2pd.I2PDActivity"> |
||||||
|
|
||||||
|
<LinearLayout |
||||||
|
android:layout_width="match_parent" |
||||||
|
android:layout_height="match_parent" |
||||||
|
android:orientation="vertical"> |
||||||
|
|
||||||
|
<ImageView |
||||||
|
android:id="@+id/imageView" |
||||||
|
android:layout_width="match_parent" |
||||||
|
android:layout_height="140dp" |
||||||
|
android:src="@drawable/ic_logo" /> |
||||||
|
|
||||||
|
<TextView |
||||||
|
android:id="@+id/textViewDesc1" |
||||||
|
style="@android:style/Widget.Holo.Light.TextView.SpinnerItem" |
||||||
|
android:layout_width="match_parent" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:gravity="center" |
||||||
|
android:text="@string/app_description" |
||||||
|
android:textColor="#FFFFFF" |
||||||
|
android:textSize="24sp" |
||||||
|
android:textStyle="bold" /> |
||||||
|
|
||||||
|
<TextView |
||||||
|
android:id="@+id/textViewDesc2" |
||||||
|
style="@android:style/Widget.Holo.Light.TextView.SpinnerItem" |
||||||
|
android:layout_width="match_parent" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:gravity="center" |
||||||
|
android:text="@string/app_description2" |
||||||
|
android:textColor="#FFFFFF" |
||||||
|
android:textSize="24sp" |
||||||
|
android:textStyle="bold" /> |
||||||
|
|
||||||
|
<Space |
||||||
|
android:layout_width="match_parent" |
||||||
|
android:layout_height="@dimen/margin_medium" /> |
||||||
|
|
||||||
|
<LinearLayout |
||||||
|
android:layout_width="match_parent" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:orientation="vertical"> |
||||||
|
|
||||||
|
<RelativeLayout |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:layout_width="match_parent" |
||||||
|
android:layout_gravity="center"> |
||||||
|
|
||||||
<Button |
<Button |
||||||
android:id="@+id/enableButton" |
android:id="@+id/enableButton" |
||||||
style="@android:style/Widget.Button.Inset" |
style="@android:style/Widget.Button.Inset" |
||||||
android:layout_width="wrap_content" |
android:layout_width="@dimen/margin_huge" |
||||||
android:layout_height="wrap_content" |
android:layout_height="@dimen/margin_huge" |
||||||
android:layout_centerInParent="true" |
android:layout_centerInParent="true" |
||||||
android:background="@android:drawable/presence_offline" /> |
android:background="@android:drawable/presence_offline" |
||||||
|
android:longClickable="true" /> |
||||||
|
|
||||||
<Button |
<Button |
||||||
android:id="@+id/disableButton" |
android:id="@+id/disableButton" |
||||||
style="@android:style/Widget.Button.Inset" |
style="@android:style/Widget.Button.Inset" |
||||||
android:layout_width="wrap_content" |
android:layout_width="@dimen/margin_huge" |
||||||
android:layout_height="wrap_content" |
android:layout_height="@dimen/margin_huge" |
||||||
android:layout_centerInParent="true" |
android:layout_centerInParent="true" |
||||||
android:background="@android:drawable/presence_online" |
android:background="@android:drawable/presence_online" |
||||||
|
android:longClickable="true" |
||||||
android:visibility="invisible" /> |
android:visibility="invisible" /> |
||||||
|
|
||||||
<LinearLayout |
</RelativeLayout> |
||||||
android:layout_width="match_parent" |
|
||||||
android:layout_height="wrap_content" |
|
||||||
android:orientation="vertical"> |
|
||||||
|
|
||||||
<ImageView |
|
||||||
android:id="@+id/imageView" |
|
||||||
android:layout_width="match_parent" |
|
||||||
android:layout_height="140dp" |
|
||||||
android:src="@drawable/ic_logo" /> |
|
||||||
|
|
||||||
<Space |
<Space |
||||||
android:layout_width="match_parent" |
android:layout_width="wrap_content" |
||||||
android:layout_height="30dp" /> |
android:layout_height="@dimen/margin_medium" /> |
||||||
|
|
||||||
<TextView |
<TextView |
||||||
android:id="@+id/textView" |
android:id="@+id/textView" |
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:gravity="center_horizontal" /> |
android:gravity="center_horizontal" |
||||||
|
android:textColor="#DFDFDF" |
||||||
|
android:textSize="18sp" /> |
||||||
|
|
||||||
<Space |
</LinearLayout> |
||||||
android:layout_width="wrap_content" |
|
||||||
android:layout_height="match_parent" /> |
|
||||||
|
|
||||||
</LinearLayout> |
</LinearLayout> |
||||||
|
|
||||||
</RelativeLayout> |
</ScrollView> |
Loading…
Reference in new issue