Skip to content
This repository has been archived by the owner on Jun 5, 2018. It is now read-only.

Commit

Permalink
Issues project #511
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Shatunov committed Nov 2, 2013
1 parent b0037bd commit 6ee21a2
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 0 deletions.
24 changes: 24 additions & 0 deletions issues/res/layout/i511_main.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:padding="20dp"
android:text="Roboto Regular"
android:textSize="30sp" />

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="roboto-light"
android:gravity="center"
android:padding="20dp"
android:text="Roboto Light"
android:textSize="30sp" />

</LinearLayout>
Binary file added issues/res/raw/roboto_light.ttf
Binary file not shown.
15 changes: 15 additions & 0 deletions issues/src/org/holoeverywhere/issues/i511/MainActivity.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package org.holoeverywhere.issues.i511;

import android.os.Bundle;

import org.holoeverywhere.app.Activity;
import org.holoeverywhere.issues.R;


public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.i511_main);
}
}

0 comments on commit 6ee21a2

Please sign in to comment.