aboutsummaryrefslogtreecommitdiff
path: root/lib/lua/src/lstate.c
Commit message (Collapse)AuthorAge
* Update embedded jsoncpp from unk version to 0.10.6 + move libs to lib/ ↵Loïc Blot2017-04-02
instead of src/ (#5473) * Update embedded jsoncpp from unk version to 0.10.6 0.10.6 is last release without c++11 * Make jsoncpp more compliant with its amalgamate Jsoncpp cpp file should be upper, make the library like it does in amalgamate * Reorganization: move minetest embedded libs outside of source tree to /lib * Fix a dead grep in LINT
24' href='#n24'>24 25 26 27 28 29 30 31 32 33
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
	xmlns:tools="http://schemas.android.com/tools"
	android:id="@+id/activity_main"
	android:layout_width="match_parent"
	android:layout_height="match_parent"
	android:background="@drawable/bg">

	<ProgressBar
		android:id="@+id/progressBar"
		style="@style/CustomProgressBar"
		android:layout_width="match_parent"
		android:layout_height="30dp"
		android:layout_centerInParent="true"
		android:layout_marginLeft="90dp"
		android:layout_marginRight="90dp"
		android:indeterminate="false"
		android:max="100"
		android:visibility="gone"
		tools:visibility="visible" />

	<TextView
		android:id="@+id/textView"
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"
		android:layout_below="@id/progressBar"
		android:layout_centerInParent="true"
		android:background="@android:color/transparent"
		android:text="@string/loading"
		android:textColor="#FEFEFE"
		android:visibility="gone"
		tools:visibility="visible" />

</RelativeLayout>