Remove v11 styles. Add Android TV banner. Disable title bar on themes.

This commit is contained in:
Cameron Gutman
2014-10-15 22:39:35 -07:00
parent 57c3d8af8b
commit 3e6f5ff11c
7 changed files with 60 additions and 59 deletions

View File

@@ -27,6 +27,7 @@ import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.Toast;
import android.widget.AdapterView.AdapterContextMenuInfo;
@@ -58,7 +59,10 @@ public class AppView extends Activity {
return;
}
setTitle("App List for "+getIntent().getStringExtra(NAME_EXTRA));
String labelText = "App List for "+getIntent().getStringExtra(NAME_EXTRA);
TextView label = (TextView) findViewById(R.id.appListText);
setTitle(labelText);
label.setText(labelText);
try {
ipAddress = InetAddress.getByAddress(address);