This repository has been archived by the owner on Apr 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Hostapd-wpe] Add initial configuration edit
#128 Signed-off-by: binkybear <[email protected]>
- Loading branch information
Showing
4 changed files
with
247 additions
and
252 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content"> | ||
|
||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:paddingLeft="16dp" | ||
android:paddingRight="16dp" | ||
android:orientation="vertical"> | ||
|
||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:text="@string/mana_hostapd_wpe" | ||
android:layout_gravity="center_horizontal|center" | ||
android:gravity="center" | ||
android:padding="4dp" /> | ||
|
||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:text="@string/iface" | ||
android:padding="4dp" /> | ||
|
||
<EditText | ||
android:id="@+id/wpe_ifc" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:ems="10"/> | ||
|
||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:text="@string/bssid" | ||
android:padding="4dp" /> | ||
|
||
<EditText | ||
android:id="@+id/wpe_bssid" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:ems="10"/> | ||
|
||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:text="@string/ssid" | ||
android:padding="4dp" /> | ||
|
||
<EditText | ||
android:id="@+id/wpe_ssid" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:ems="10"/> | ||
|
||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:text="@string/chanel" | ||
android:padding="4dp" /> | ||
|
||
<EditText | ||
android:id="@+id/wpe_channel" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:ems="10"/> | ||
|
||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:text="@string/hostapd_private_key" | ||
android:padding="4dp" /> | ||
|
||
<EditText | ||
android:id="@+id/wpe_private_key" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:ems="10"/> | ||
|
||
<Button | ||
android:id="@+id/wpe_updateButton" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="@string/update" /> | ||
</LinearLayout> | ||
</ScrollView> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.